/third_party/cJSON/ |
H A D | cJSON_Utils.c | 1113 static void compose_patch(cJSON * const patches, const unsigned char * const operation, const unsigned char * const path, const unsigned char *suffix, const cJSON * const value) in compose_patch() argument 1129 if (suffix == NULL) in compose_patch() 1135 size_t suffix_length = pointer_encoded_length(suffix); in compose_patch() 1140 encode_string_as_pointer(full_path + path_length + 1, suffix); in compose_patch()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | NFRule.java | 1286 String suffix = ruleText.substring(pluralRuleSuffix); in findText() 1288 && str.regionMatches(start + matchLen, suffix, 0, suffix.length())) in findText() 1290 return new int[]{start - prefix.length(), matchLen + prefix.length() + suffix.length()}; in findText()
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | localematchertest.cpp | 469 const UnicodeString &prefix, UnicodeString &suffix) { in getSuffixAfterPrefix() 471 suffix.setTo(s, prefix.length(), limit - prefix.length()); in getSuffixAfterPrefix() 479 const UnicodeString &prefix, CharString &suffix, in getInvariantSuffixAfterPrefix() 483 toInvariant(u_suffix, suffix, errorCode); in getInvariantSuffixAfterPrefix() 468 getSuffixAfterPrefix(const UnicodeString &s, int32_t limit, const UnicodeString &prefix, UnicodeString &suffix) getSuffixAfterPrefix() argument 478 getInvariantSuffixAfterPrefix(const UnicodeString &s, int32_t limit, const UnicodeString &prefix, CharString &suffix, ErrorCode &errorCode) getInvariantSuffixAfterPrefix() argument
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | NFRule.java | 1283 String suffix = ruleText.substring(pluralRuleSuffix); in findText() 1285 && str.regionMatches(start + matchLen, suffix, 0, suffix.length())) in findText() 1287 return new int[]{start - prefix.length(), matchLen + prefix.length() + suffix.length()}; in findText()
|
/third_party/node/deps/v8/src/wasm/ |
H A D | value-type.h | 650 #define DEF_ENUM(type, suffix, ...) k##type##Load##suffix, 726 #define DEF_ENUM(type, suffix, ...) k##type##Store##suffix,
|
/third_party/mesa3d/src/panfrost/lib/genxml/ |
H A D | gen_pack.py | 627 suffix = "" 631 suffix = " + {}".format(field.modifier[1]) 633 suffix = " << {}".format(field.modifier[1]) 637 decoded = '{}{}({}){}'.format(prefix, convert, ', '.join(args), suffix)
|
/third_party/node/deps/openssl/openssl/crypto/pem/ |
H A D | pem_lib.c | 32 int ossl_pem_check_suffix(const char *pem_str, const char *suffix); 1011 * "RSA PRIVATE KEY" and suffix = "PRIVATE KEY" the return value is 3 for the 1015 int ossl_pem_check_suffix(const char *pem_str, const char *suffix) in ossl_pem_check_suffix() argument 1018 int suffix_len = strlen(suffix); in ossl_pem_check_suffix() 1023 if (strcmp(p, suffix)) in ossl_pem_check_suffix()
|
/third_party/openssl/crypto/pem/ |
H A D | pem_lib.c | 32 int ossl_pem_check_suffix(const char *pem_str, const char *suffix); 1011 * "RSA PRIVATE KEY" and suffix = "PRIVATE KEY" the return value is 3 for the 1015 int ossl_pem_check_suffix(const char *pem_str, const char *suffix) in ossl_pem_check_suffix() argument 1018 int suffix_len = strlen(suffix); in ossl_pem_check_suffix() 1023 if (strcmp(p, suffix)) in ossl_pem_check_suffix()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/rasterization/ |
H A D | vktRasterizationDepthBiasControlTests.cpp | 751 const char* suffix; in createDepthBiasControlTests() member 762 const char* suffix; in createDepthBiasControlTests() member 843 const std::string testName = std::string(setMechanismCase.name) + clampValueCase.suffix + secondaryCmdBufferCase.suffix; in createDepthBiasControlTests()
|
/third_party/skia/third_party/externals/spirv-tools/test/val/ |
H A D | val_arithmetics_test.cpp | 162 const std::string suffix = in GenerateCode() local 167 return prefix + main_body + suffix; in GenerateCode() 1222 const std::string suffix = in GenerateCoopMatCode() local 1227 return prefix + extra_types + func_begin + main_body + suffix; in GenerateCoopMatCode()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/val/ |
H A D | val_arithmetics_test.cpp | 162 const std::string suffix = in GenerateCode() local 167 return prefix + main_body + suffix; in GenerateCode() 1222 const std::string suffix = in GenerateCoopMatCode() local 1227 return prefix + extra_types + func_begin + main_body + suffix; in GenerateCoopMatCode()
|
/third_party/python/Objects/clinic/ |
H A D | unicodeobject.c.h | 791 "removesuffix($self, suffix, /)\n" 794 "Return a str with the given suffix string removed if present.\n" 796 "If the string ends with the suffix string and that suffix is not empty,\n" 797 "return string[:-len(suffix)]. Otherwise, return a copy of the original\n" 804 unicode_removesuffix_impl(PyObject *self, PyObject *suffix); 810 PyObject *suffix; in unicode_removesuffix() local 819 suffix = arg; in unicode_removesuffix() 820 return_value = unicode_removesuffix_impl(self, suffix); in unicode_removesuffix()
|
/third_party/python/Lib/test/ |
H A D | test_getpath.py | 929 def hassuffix(self, path, suffix): 930 return path.casefold().endswith(suffix.casefold()) 1103 def hassuffix(self, path, suffix): 1104 return path.endswith(suffix)
|
/third_party/vulkan-loader/loader/ |
H A D | settings.c | 207 VkResult check_if_settings_path_exists(const struct loader_instance* inst, char* base, char* suffix, char** settings_file_path) { in check_if_settings_path_exists() argument 208 if (NULL == base || NULL == suffix) { in check_if_settings_path_exists() 212 size_t suffix_len = strlen(suffix); in check_if_settings_path_exists() 219 loader_strncat(*settings_file_path, path_len, suffix, suffix_len); in check_if_settings_path_exists()
|
/base/update/sys_installer/services/module_update/util/include/ |
H A D | module_utils.h | 29 bool CheckFileSuffix(const std::string &file, const std::string &suffix);
|
/kernel/linux/linux-5.10/arch/sh/boot/compressed/ |
H A D | Makefile | 73 $(obj)/piggy.o: $(obj)/vmlinux.scr $(obj)/vmlinux.bin.$(suffix-y) FORCE
|
/third_party/ffmpeg/libavcodec/ |
H A D | cbs_sei.h | 118 // Valid in a suffix SEI NAL unit (never for H.264). 119 uint8_t suffix; member
|
/third_party/icu/icu4c/source/i18n/ |
H A D | numparse_types.h | 121 * The pattern string corresponding to the suffix that got consumed. 123 UnicodeString suffix; member in numparse::impl::ParsedNumber
|
/third_party/mbedtls/scripts/mbedtls_dev/ |
H A D | c_build_helper.py | 45 suffix='.c')
|
H A D | c_parsing_helper.py | 30 r'\s*(?P<suffix>\[[^][]*\])?\Z', 47 self.suffix = m.group('suffix') if m.group('suffix') else '' #type: str
|
/third_party/node/deps/npm/node_modules/node-gyp/bin/ |
H A D | node-gyp.js | 25 prog.devDir = envPaths('node-gyp', { suffix: '' }).cache
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | numparse_types.h | 121 * The pattern string corresponding to the suffix that got consumed. 123 UnicodeString suffix; member in numparse::impl::ParsedNumber
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | numparse_types.h | 121 * The pattern string corresponding to the suffix that got consumed. 123 UnicodeString suffix; member in numparse::impl::ParsedNumber
|
/third_party/skia/third_party/externals/tint/src/writer/ |
H A D | text_generator.h | 122 /// @param suffix the suffix to remove 123 /// @return returns str without the provided trailing suffix string. If str 124 /// doesn't end with suffix, str is returned unchanged. 125 std::string TrimSuffix(std::string str, const std::string& suffix);
|
/third_party/python/PC/layout/support/ |
H A D | filesets.py | 59 return os.path.normcase(f.suffix)
|