/third_party/abseil-cpp/absl/strings/ |
D | ascii.cc | 171 auto stripped = StripAsciiWhitespace(*str); in RemoveExtraAsciiWhitespace() local 173 if (stripped.empty()) { in RemoveExtraAsciiWhitespace() 178 auto input_it = stripped.begin(); in RemoveExtraAsciiWhitespace() 179 auto input_end = stripped.end(); in RemoveExtraAsciiWhitespace()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
D | ascii.cc | 171 auto stripped = StripAsciiWhitespace(*str); in RemoveExtraAsciiWhitespace() local 173 if (stripped.empty()) { in RemoveExtraAsciiWhitespace() 178 auto input_it = stripped.begin(); in RemoveExtraAsciiWhitespace() 179 auto input_end = stripped.end(); in RemoveExtraAsciiWhitespace()
|
D | cord_ring_test.cc | 1044 CordRep* stripped = RemovePrefix(10, child); in TEST_P() local 1045 CordRepRing* result = NeedsUnref(CordRepRing::Append(ring, stripped)); in TEST_P() 1059 CordRep* stripped = RemovePrefix(21, child); in TEST_P() local 1060 CordRepRing* result = NeedsUnref(CordRepRing::Append(ring, stripped)); in TEST_P() 1074 CordRep* stripped = RemoveSuffix(8, child); in TEST_P() local 1075 CordRepRing* result = NeedsUnref(CordRepRing::Append(ring, stripped)); in TEST_P() 1089 CordRep* stripped = RemoveSuffix(15, child); in TEST_P() local 1090 CordRepRing* result = NeedsUnref(CordRepRing::Append(ring, stripped)); in TEST_P() 1104 CordRep* stripped = MakeSubstring(7, child->length - 27, child); in TEST_P() local 1105 CordRepRing* result = NeedsUnref(CordRepRing::Append(ring, stripped)); in TEST_P() [all …]
|
/third_party/mesa3d/src/gallium/auxiliary/util/ |
D | u_dump_defines.c | 40 const char *stripped; 43 stripped = name; 45 if(*stripped != *prefix) 48 ++stripped; 51 return stripped;
|
/third_party/grpc/tools/profiling/microbenchmarks/bm_diff/ |
D | bm_diff.py | 131 stripped = ".".join(filename.split(".")[:-2]) 137 if stripped in nonexistant_files: 138 nonexistant_files[stripped] += 1 140 nonexistant_files[stripped] = 1 144 if stripped in badjson_files: 145 badjson_files[stripped] += 1 147 badjson_files[stripped] = 1
|
/third_party/flutter/skia/infra/bots/recipe_modules/flavor/resources/ |
D | win_ssh_cmd.py | 29 stripped = line.strip() 30 if stripped == SENTINEL: 33 print stripped
|
/third_party/skia/infra/bots/recipe_modules/flavor/resources/ |
D | win_ssh_cmd.py | 33 stripped = line.strip() 34 if stripped == SENTINEL: 37 print(stripped)
|
/third_party/flutter/skia/third_party/externals/spirv-tools/utils/ |
D | generate_vim_syntax.py | 184 stripped = word.strip('\n,') 185 if stripped != "": 187 EmitAsEnumerant(stripped[2:])
|
D | check_copyright.py | 83 stripped = line.lstrip() 84 return stripped == '' or stripped.startswith('#!')
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/ |
D | generate_vim_syntax.py | 197 stripped = word.strip('\n,') 198 if stripped != "": 200 EmitAsEnumerant(stripped[2:])
|
D | check_copyright.py | 98 stripped = line.lstrip() 99 return stripped == '' or stripped.startswith('#!')
|
/third_party/skia/third_party/externals/spirv-tools/utils/ |
D | generate_vim_syntax.py | 197 stripped = word.strip('\n,') 198 if stripped != "": 200 EmitAsEnumerant(stripped[2:])
|
D | check_copyright.py | 98 stripped = line.lstrip() 99 return stripped == '' or stripped.startswith('#!')
|
/third_party/spirv-tools/utils/ |
D | generate_vim_syntax.py | 197 stripped = word.strip('\n,') 198 if stripped != "": 200 EmitAsEnumerant(stripped[2:])
|
D | check_copyright.py | 95 stripped = line.lstrip() 96 return stripped == '' or stripped.startswith('#!')
|
/third_party/ninja/src/ |
D | util_test.cc | 403 string stripped = StripAnsiEscapeCodes("foo\33"); in TEST() local 404 EXPECT_EQ("foo", stripped); in TEST() 406 stripped = StripAnsiEscapeCodes("foo\33["); in TEST() 407 EXPECT_EQ("foo", stripped); in TEST() 414 string stripped = StripAnsiEscapeCodes(input); in TEST() local 416 stripped); in TEST()
|
/third_party/boost/tools/build/src/util/ |
D | utility.py | 114 stripped = __re_grist_content.match (value) 115 if not stripped: 118 return stripped.group (1)
|
/third_party/flutter/skia/third_party/externals/icu/flutter/ |
D | README.md | 5 (see `../ios`) with additional data stripped out to reduce size: 7 * All resources mentioned in `flutter-removed-resources.txt` are stripped out.
|
/third_party/python/Lib/ |
D | copyreg.py | 144 stripped = c.__name__.lstrip('_') 145 if stripped: 146 names.append('_%s%s' % (stripped, name))
|
/third_party/typescript/tests/baselines/reference/ |
D | moduleResolutionWithExtensions.types | 9 // '.js' extension: stripped and replaced with '.ts' 26 // '.js' extension: stripped and replaced with '.d.ts'
|
D | moduleResolutionWithExtensions.symbols | 9 // '.js' extension: stripped and replaced with '.ts' 26 // '.js' extension: stripped and replaced with '.d.ts'
|
/third_party/node/deps/npm/test/tap/ |
D | legacy-no-auth-leak.js | 52 var stripped = stdout.replace(matchResult, '$1') 53 var result = JSON.parse(stripped)
|
/third_party/gettext/gettext-tools/examples/hello-c++-kde/admin/ |
D | depcomp | 169 stripped=`echo "$object" | sed -e 's,^.*/,,' -e 's/\(.*\)\..*$/\1/'` 170 tmpdepfile="$stripped.u" 171 outname="$stripped.o"
|
/third_party/abseil-cpp/absl/flags/ |
D | parse.cc | 190 absl::string_view stripped = absl::StripLeadingAsciiWhitespace(line); in ReadFromFlagfile() local 192 if (stripped.empty() || stripped[0] == '#') { in ReadFromFlagfile() 197 if (stripped[0] == '-') { in ReadFromFlagfile() 198 if (stripped == "--") { in ReadFromFlagfile() 206 args_.push_back(std::string(stripped)); in ReadFromFlagfile()
|
/third_party/nghttp2/doc/_exts/sphinxcontrib/ |
D | rubydomain.py | 506 stripped = ignore 509 stripped = '' 513 modname, stripped = stripped, '' 525 entries.append([stripped + package, 1, '', '', '', '', '']) 532 entries.append([stripped + modname, subtype, docname, 533 'module-' + stripped + modname, platforms,
|