/aosp_15_r20/external/bazelbuild-rules_cc/cc/private/toolchain/ |
H A D | unix_cc_configure.bzl | 22 "escape_string", 55 return escape_string(path[len(repo_root):]) 56 return escape_string(path) 67 k: escape_string(_find_tool(repository_ctx, k, overriden_tools)) 87 p = escape_string(str(repository_ctx.path(p))) # Normalize the path 359 cc_toolchain_identifier = escape_string(get_env_var( 373 "%{cc}": escape_string(str(cc)), 374 "%{env}": escape_string(get_env(repository_ctx)), 403 bin_search_flag = ["-B" + escape_string(str(cc_path.dirname))] 431 "%{abi_libc_version}": escape_string(get_env_var( [all …]
|
H A D | windows_cc_configure.bzl | 22 "escape_string", 71 tool_path_prefix = escape_string(msys_root) + prefix 93 return escape_string(systemroot) 316 env_map[key] = escape_string(value.replace("\\", "\\\\")) if escape else value 536 escaped_paths = escape_string(env["PATH"]) 537 escaped_include_paths = escape_string(env["INCLUDE"]) 538 escaped_lib_paths = escape_string(env["LIB"]) 539 escaped_tmp_dir = escape_string(_get_temp_env(repository_ctx).replace("\\", "\\\\"))
|
H A D | lib_cc_configure.bzl | 40 def escape_string(arg):
|
/aosp_15_r20/external/rust/android-crates-io/crates/clap_complete/src/shells/ |
D | fish.rs | 30 fn escape_string(string: &str, escape_comma: bool) -> String { in escape_string() function 40 escape_string(&help.to_string().replace('\n', " "), false) 100 template.push_str(format!(" -l {}", escape_string(long, false)).as_str()); 125 template.push_str(format!(" -l {}", escape_string(long, false)).as_str()); 177 escape_string(value.get_name(), true).as_str(), in value_completion()
|
D | powershell.rs | 61 fn escape_string(string: &str) -> String { in escape_string() function 67 Some(help) => escape_string(&help.to_string().replace('\n', " ")), in escape_help()
|
D | elvish.rs | 56 fn escape_string(string: &str) -> String { in escape_string() function 62 Some(help) => escape_string(&help.to_string().replace('\n', " ")), in escape_help()
|
/aosp_15_r20/build/make/tools/warn/ |
H A D | html_writer.py | 393 def escape_string(line): function 402 return escape_string(line) 420 writer('"{}",'.format(escape_string(pattern['description']))) 578 writer('const ' + name + ' = "' + escape_string(value) + '";')
|
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/fend-core-1.4.6/src/ |
H A D | json.rs | 4 pub fn escape_string(input: &str, out: &mut String) { in escape_string() function 34 escape_string(input, &mut out); in test_json_str()
|
H A D | inline_substitutions.rs | 24 crate::json::escape_string(self.get_contents(), out); in to_json()
|
/aosp_15_r20/external/tensorflow/third_party/gpus/ |
H A D | cuda_configure.bzl | 31 "escape_string", 123 escaped_tmp_dir = escape_string( 161 escaped_paths = escape_string(env["PATH"]) 162 escaped_include_paths = escape_string(env["INCLUDE"]) 163 escaped_lib_paths = escape_string(env["LIB"]) 164 escaped_tmp_dir = escape_string(
|
/aosp_15_r20/external/python/cpython2/Lib/test/ |
D | test_urllib.py | 667 escape_string = ''.join(escape_list) 669 result = urllib.unquote(escape_string) 673 result = urllib.unquote(escape_string)
|
/aosp_15_r20/external/coreboot/util/kconfig/ |
H A D | confdata.c | 707 bool escape_string) in __print_symbol() argument 724 if (sym->type == S_STRING && escape_string) { in __print_symbol()
|
/aosp_15_r20/external/curl/lib/ |
H A D | mime.c | 289 static char *escape_string(struct Curl_easy *data, in escape_string() function 1833 name = escape_string(data, part->name, strategy); in Curl_mime_prepare_headers() 1838 filename = escape_string(data, part->filename, strategy); in Curl_mime_prepare_headers()
|
/aosp_15_r20/external/fmtlib/test/ |
H A D | xchar-test.cc | 354 TEST(xchar_test, escape_string) { in TEST() argument
|
/aosp_15_r20/external/python/cpython3/Lib/test/ |
D | test_urllib.py | 1101 escape_string = ''.join(escape_list) 1103 result = urllib.parse.unquote(escape_string)
|
/aosp_15_r20/external/pytorch/torch/_inductor/codegen/ |
H A D | cpp_wrapper_cpu.py | 792 def escape_string(x): function
|