/third_party/node/lib/internal/policy/ |
H A D | manifest.js | 139 const suffix = target[2]; 142 [prefix, suffix],
|
/third_party/libphonenumber/cpp/src/phonenumbers/ |
H A D | stringutil.cc | 85 bool HasSuffixString(const string& s, const string& suffix) { in HasSuffixString() argument 86 return absl::EndsWith(s, suffix); in HasSuffixString()
|
/third_party/mesa3d/src/gallium/drivers/d3d12/ |
H A D | d3d12_format.c | 228 #define TYPELESS_TO(channels, suffix) \ in d3d12_get_default_pipe_format() 230 return PIPE_FORMAT_##channels##_##suffix in d3d12_get_default_pipe_format()
|
/third_party/node/deps/openssl/openssl/apps/include/ |
H A D | apps.h | 227 int save_serial(const char *serialfile, const char *suffix, 235 int save_index(const char *dbfile, const char *suffix, CA_DB *db);
|
/third_party/node/deps/openssl/openssl/util/perl/TLSProxy/ |
H A D | Message.pm | 486 my $suffix = substr($recdata, $self->startoffset + $old_length); 488 $rec->decrypt_data($prefix.($msgdata).($suffix));
|
/third_party/rust/crates/codespan/codespan-reporting/tests/ |
H A D | term.rs | 812 let suffix = r#" fn foo() {}"#; 816 format!("{}{}{}", prefix, abi, suffix),
|
/third_party/python/Lib/distutils/tests/ |
H A D | test_archive_util.py | 106 def _make_tarball(self, tmpdir, target_name, suffix, **kwargs): 118 tarball = base_name + suffix
|
/third_party/openssl/apps/include/ |
H A D | apps.h | 227 int save_serial(const char *serialfile, const char *suffix, 235 int save_index(const char *dbfile, const char *suffix, CA_DB *db);
|
/third_party/skia/third_party/externals/libjpeg-turbo/ |
H A D | wrgif.c | 56 * its prefix symbol's code concatenated with its suffix character. 59 * prefix code / suffix character combination. We do a variant of Knuth's 66 #define HASH_ENTRY(prefix, suffix) ((((hash_entry)(prefix)) << 8) | (suffix))
|
/third_party/openssl/util/perl/TLSProxy/ |
H A D | Message.pm | 486 my $suffix = substr($recdata, $self->startoffset + $old_length); 488 $rec->decrypt_data($prefix.($msgdata).($suffix));
|
/third_party/python/Lib/test/ |
H A D | test_dbm_dumb.py | 288 for suffix in ['.dir', '.dat', '.bak']: 289 self.addCleanup(os_helper.unlink, filename + suffix)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
H A D | Timer.cpp | 372 const char *suffix, double Value) { in printJSONValue() 375 OS << "\t\"time." << Name << '.' << R.Name << suffix << "\": " << Value; in printJSONValue() 371 printJSONValue(raw_ostream &OS, const PrintRecord &R, const char *suffix, double Value) printJSONValue() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/bloat/ |
H A D | bloat.py | 104 def __init__(self, suffix, replacement): 105 self.pattern = '^(.*)' + suffix + '(.*)$' 110 """Pre-compile suffix regular expressions."""
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | Timer.cpp | 401 const char *suffix, double Value) { in printJSONValue() 407 OS << "\t\"time." << Name << '.' << R.Name << suffix in printJSONValue() 400 printJSONValue(raw_ostream &OS, const PrintRecord &R, const char *suffix, double Value) printJSONValue() argument
|
/third_party/python/Python/ |
H A D | pyhash.c | 163 (prefix ^ suffix), since this slightly obfuscates the hash secret in _Py_HashBytes() 193 hash ^= (Py_uhash_t) _Py_HashSecret.djbx33a.suffix; in _Py_HashBytes() 282 x ^= (Py_uhash_t) _Py_HashSecret.fnv.suffix; in fnv()
|
/third_party/python/Lib/test/test_importlib/extension/ |
H A D | test_loader.py | 88 for suffix in self.machinery.EXTENSION_SUFFIXES: 89 path = os.path.join('some', 'path', 'pkg', '__init__' + suffix)
|
/third_party/skia/gm/ |
H A D | imagefiltersbase.cpp | 291 ImageFiltersTextBaseGM(const char suffix[]) : fSuffix(suffix) {} in ImageFiltersTextBaseGM() argument
|
H A D | image_pict.cpp | 231 ImageCacheratorGM(const char suffix[], FactoryFunc factory) : fFactory(factory) { in ImageCacheratorGM() argument 232 fName.printf("image-cacherator-from-%s", suffix); in ImageCacheratorGM()
|
/third_party/skia/ |
H A D | PRESUBMIT.py | 368 for suffix in SERVICE_ACCOUNT_SUFFIX: 369 if change.author_email.endswith(suffix):
|
/third_party/skia/bench/ |
H A D | TessellateBench.cpp | 327 PatchAttribs attribs, float matrixScale, const char* suffix) in TessPrepareBench() 332 fName.printf("tessellate_%s", suffix); in TessPrepareBench() 326 TessPrepareBench(MakePathStrokesFn makePathStrokesFn, MakeTessellatorFn makeTessellatorFn, PatchAttribs attribs, float matrixScale, const char* suffix) TessPrepareBench() argument
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/default_app/ |
H A D | default_app_mgr.cpp | 457 std::string suffix; in GetTypeFromWant() local 458 (void)MimeTypeMgr::GetUriSuffix(uri, suffix); in GetTypeFromWant() 459 return suffix; in GetTypeFromWant()
|
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/ |
H A D | rdb_security_manager.cpp | 584 std::string suffix(".db");
in RemoveSuffix() 585 auto pos = name.rfind(suffix);
in RemoveSuffix() 586 if (pos == std::string::npos || pos < name.length() - suffix.length()) {
in RemoveSuffix()
|
H A D | rdb_service_proxy.cpp | 204 std::string suffix(".db"); in RemoveSuffix() 205 auto pos = name.rfind(suffix); in RemoveSuffix() 206 if (pos == std::string::npos || pos < name.length() - suffix.length()) { in RemoveSuffix()
|
/kernel/linux/linux-5.10/scripts/kconfig/ |
H A D | confdata.c | 651 const char *suffix = ""; in header_print_symbol() local 657 suffix = "_MODULE"; in header_print_symbol() 661 CONFIG_, sym->name, suffix); in header_print_symbol()
|
/kernel/linux/linux-5.10/tools/perf/pmu-events/ |
H A D | jevents.c | 721 * replacing hyphens and stripping out .json suffix. in file_name_to_table_name() 948 const char *suffix; in is_json_file() local 953 suffix = name + strlen(name) - 5; in is_json_file() 955 if (strncmp(suffix, ".json", 5) == 0) in is_json_file() 1013 * Drop file name suffix. Replace hyphens with underscores. in process_one_file() 1050 pr_info("%s: Ignoring file without .json suffix %s\n", prog, in process_one_file()
|