Home
last modified time | relevance | path

Searched refs:replace_str (Results 1 – 15 of 15) sorted by relevance

/external/swiftshader/third_party/SPIRV-Tools/test/opt/
Dpass_utils.cpp59 const std::string replace_str) { in FindAndReplace() argument
68 process_str->replace(pos, find_str.length(), replace_str); in FindAndReplace()
69 pos += replace_str.length(); in FindAndReplace()
Dpass_utils.h50 const std::string replace_str);
/external/deqp-deps/SPIRV-Tools/test/opt/
Dpass_utils.cpp59 const std::string replace_str) { in FindAndReplace() argument
68 process_str->replace(pos, find_str.length(), replace_str); in FindAndReplace()
69 pos += replace_str.length(); in FindAndReplace()
Dpass_utils.h50 const std::string replace_str);
/external/angle/third_party/spirv-tools/src/test/opt/
Dpass_utils.cpp59 const std::string replace_str) { in FindAndReplace() argument
68 process_str->replace(pos, find_str.length(), replace_str); in FindAndReplace()
69 pos += replace_str.length(); in FindAndReplace()
Dpass_utils.h66 const std::string replace_str);
/external/compiler-rt/lib/asan/
Dasan_interceptors.cc496 if (flags()->replace_str) { in DEFINE_REAL()
517 if (flags()->replace_str) { in INTERCEPTOR()
544 if (flags()->replace_str) { in INTERCEPTOR()
559 if (flags()->replace_str) { in INTERCEPTOR()
575 if (flags()->replace_str) { in INTERCEPTOR()
600 if (flags()->replace_str) { in INTERCEPTOR()
614 if (!flags()->replace_str) { in INTERCEPTOR()
630 if (!flags()->replace_str) { in INTERCEPTOR()
651 if (!flags()->replace_str) { in INTERCEPTOR()
667 if (!flags()->replace_str) { in INTERCEPTOR()
[all …]
Dasan_flags.cc162 if (!f->replace_str && common_flags()->intercept_strlen) { in InitializeFlags()
166 if (!f->replace_str && common_flags()->intercept_strchr) { in InitializeFlags()
Dasan_flags.inc42 bool, replace_str, true,
/external/cronet/tot/third_party/boringssl/src/third_party/googletest/googletest/include/gtest/internal/
Dgtest-type-util.h74 static const char replace_str[] = ","; in CanonicalizeForStdLibVersioning() local
83 s.replace(pos, strlen(to_search), replace_str); in CanonicalizeForStdLibVersioning()
84 pos += strlen(replace_str); in CanonicalizeForStdLibVersioning()
/external/cronet/stable/third_party/boringssl/src/third_party/googletest/googletest/include/gtest/internal/
Dgtest-type-util.h74 static const char replace_str[] = ","; in CanonicalizeForStdLibVersioning() local
83 s.replace(pos, strlen(to_search), replace_str); in CanonicalizeForStdLibVersioning()
84 pos += strlen(replace_str); in CanonicalizeForStdLibVersioning()
/external/avb/libavb/
Davb_cmdline.c42 const char* replace_str[NUM_GUIDS] = {"$(ANDROID_SYSTEM_PARTUUID)", in avb_sub_cmdline() local
65 if (avb_strstr(cmdline, replace_str[n]) == NULL) { in avb_sub_cmdline()
89 ret = avb_replace(cmdline, replace_str[n], guid_buf); in avb_sub_cmdline()
91 char* new_ret = avb_replace(ret, replace_str[n], guid_buf); in avb_sub_cmdline()
/external/autotest/database/
Ddatabase_connection.py358 def make_regexp_translator(cls, search_re, replace_str): argument
364 return re.sub(search_re, replace_str, query)
/external/leveldb/benchmarks/
Ddb_bench_sqlite3.cc507 std::string replace_str = "REPLACE INTO test (key, value) VALUES (?, ?)"; in Write() local
518 status = sqlite3_prepare_v2(db_, replace_str.c_str(), -1, &replace_stmt, in Write()
/external/libtracefs/utest/
Dtracefs-utest.c467 static void replace_str(char *str, char *rep, char *with, int rep_len, int with_len) in replace_str() function
562 replace_str(string, SQL_REPLACE, replace, strlen(SQL_REPLACE), strlen(replace)); in test_sql()
592 replace_str(s, p, c, s - p, e - c); in test_sql()