/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | ByteString.java | 337 * Tests if this bytestring ends with the specified suffix. Similar to {@link 340 * @param suffix the suffix. 341 * @return <code>true</code> if the byte sequence represented by the argument is a suffix of the 344 public final boolean endsWith(ByteString suffix) { in endsWith() argument 345 return size() >= suffix.size() && substring(size() - suffix.size()).equals(suffix); in endsWith()
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | icusvtst.cpp | 854 UnicodeString suffix = ""; variable 869 suffix = "like the Valley, you know? Let's go to the mall!"; 871 suffix = "time to hit those gnarly waves, Dude!!!"; 873 suffix = "all systems go. T-Minus 9, 8, 7..."; 875 suffix = "No Habla Englais"; 878 suffix = ICUResourceBundleFactory::getDisplayName(id, locale, result); 881 result = prefix + suffix;
|
H A D | numbertest_skeletons.cpp | 275 for (auto& suffix : suffixes) { in stemsRequiringOption() 276 UnicodeString skeletonString = UnicodeString(stem) + suffix; in stemsRequiringOption() 285 int32_t expectedOffset = u_strlen(stem) + ((suffix[0] == u'/') ? 1 : 0); in stemsRequiringOption()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/image/ |
H A D | vktImageLoadStoreTests.cpp | 2827 const char* suffix = tilingSuffix(s_tilings[tilingNdx]); in createImageStoreTests() local 2831 groupWithFormatByImageViewType->addChild( new StoreTest(testCtx, getFormatShortString(s_formats[formatNdx]) + suffix, "", texture, s_formats[formatNdx], s_tilings[tilingNdx])); in createImageStoreTests() 2833 groupWithFormatByImageViewType->addChild(new StoreTest(testCtx, getFormatShortString(s_formats[formatNdx]) + "_constant" + suffix, "", texture, s_formats[formatNdx], s_tilings[tilingNdx], StoreTest::FLAG_DECLARE_IMAGE_FORMAT_IN_SHADER | StoreTest::FLAG_STORE_CONSTANT_VALUE)); in createImageStoreTests() 2835 groupWithoutFormatByImageViewType->addChild(new StoreTest(testCtx, getFormatShortString(s_formats[formatNdx]) + suffix, "", texture, s_formats[formatNdx], s_tilings[tilingNdx], 0)); in createImageStoreTests() 2838 groupWithFormatByImageViewType->addChild(new StoreTest(testCtx, getFormatShortString(s_formats[formatNdx]) + "_single_layer" + suffix, "", in createImageStoreTests() 2845 groupWithFormatByImageViewType->addChild(new StoreTest(testCtx, getFormatShortString(s_formats[formatNdx]) + "_minalign" + suffix, "", texture, s_formats[formatNdx], s_tilings[tilingNdx], StoreTest::FLAG_MINALIGN | StoreTest::FLAG_DECLARE_IMAGE_FORMAT_IN_SHADER)); in createImageStoreTests() 2846 groupWithoutFormatByImageViewType->addChild(new StoreTest(testCtx, getFormatShortString(s_formats[formatNdx]) + "_minalign" + suffix, "", texture, s_formats[formatNdx], s_tilings[tilingNdx], StoreTest::FLAG_MINALIGN)); in createImageStoreTests() 2879 const char* suffix = tilingSuffix(s_tilings[tilingNdx]); in createImageLoadStoreTests() local 2883 groupWithFormatByImageViewType->addChild(new LoadStoreTest(testCtx, getFormatShortString(s_formats[formatNdx]) + suffix, "", texture, s_formats[formatNdx], s_formats[formatNdx], s_tilings[tilingNdx])); in createImageLoadStoreTests() 2884 groupWithoutFormatByImageViewType->addChild(new LoadStoreTest(testCtx, getFormatShortString(s_formats[formatNdx]) + suffix, "", textur in createImageLoadStoreTests() 2905 const char* suffix = tilingSuffix(s_tilings[tilingNdx]); createImageLoadStoreTests() local [all...] |
/third_party/benchmark/src/ |
H A D | sysinfo.cc | 267 std::string suffix; in GetCacheSizesFromKVFS() local 272 f >> suffix; in GetCacheSizesFromKVFS() local 275 "Invalid cache size format: failed to read size suffix"); in GetCacheSizesFromKVFS() 276 else if (f && suffix != "K") in GetCacheSizesFromKVFS() 277 PrintErrorAndDie("Invalid cache size format: Expected bytes ", suffix); in GetCacheSizesFromKVFS() 278 else if (suffix == "K") in GetCacheSizesFromKVFS()
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_opcodes.py | 593 reduce_expr, final_expr, suffix=""): 606 opcode(name + str(size) + suffix, output_size, output_type, 609 opcode(name + "3" + suffix, output_size, output_type, 612 opcode(name + "5" + suffix, output_size, output_type, 896 suffix="_replicated")
|
/third_party/mesa3d/src/amd/registers/ |
H A D | regdb.py | 718 suffix = '_' + chips[0] if chips else '' 725 remapped = enum_ref + suffix if enum_ref in self.__enums else enum_ref 728 remapped = enum_ref + suffix + str(i) 736 remapped = type_ref + suffix if type_ref in self.__register_types else type_ref 739 remapped = type_ref + suffix + str(i)
|
/third_party/node/tools/gyp/pylib/gyp/generator/ |
H A D | android.py | 41 "RULE_INPUT_EXT": "$(suffix $<)", 643 duplicate targets in different directories. We also add a suffix to 659 suffix = "_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp" 661 suffix = "_gyp" 668 return "".join([prefix, middle, suffix]) 1070 makefile_name = "GypAndroid" + options.suffix + ".mk" 1118 build_file, target + "." + toolset + options.suffix + ".mk"
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ |
H A D | android.py | 41 "RULE_INPUT_EXT": "$(suffix $<)", 643 duplicate targets in different directories. We also add a suffix to 659 suffix = "_$(TARGET_$(GYP_VAR_PREFIX)ARCH)_host_gyp" 661 suffix = "_gyp" 668 return "".join([prefix, middle, suffix]) 1070 makefile_name = "GypAndroid" + options.suffix + ".mk" 1118 build_file, target + "." + toolset + options.suffix + ".mk"
|
/third_party/skia/third_party/externals/brotli/csharp/org/brotli/dec/ |
H A D | Transform.cs | 15 private readonly byte[] suffix;
field in Org.Brotli.Dec.Transform 17 internal Transform(string prefix, int type, string suffix)
in Transform() argument 21 this.suffix = ReadUniBytes(suffix);
in Transform() 143 // Copy suffix.
in TransformDictionaryWord() 144 @string = transform.suffix;
in TransformDictionaryWord()
|
/third_party/googletest/googletest/include/gtest/internal/ |
H A D | gtest-string.h | 147 // Returns true if and only if the given string ends with the given suffix, 148 // ignoring case. Any string is considered to end with an empty suffix. 150 const std::string& suffix);
|
/third_party/gn/src/gn/ |
H A D | qt_creator_writer.h | 39 void GenerateFile(const base::FilePath::CharType* suffix,
|
/third_party/icu/icu4c/source/i18n/ |
H A D | numparse_validators.cpp | 22 if (result.prefix.isBogus() || result.suffix.isBogus()) { in postProcess() 23 // We saw a prefix or a suffix but not both. Fail the parse. in postProcess()
|
H A D | collationdatabuilder.cpp | 50 * Context strings sort by prefix length, then by prefix, then by contraction suffix. 70 * then the prefix string, then the contraction suffix. 705 UnicodeString suffix(s, cLength); in addCE32() 707 context.append(prefix).append(suffix); in addCE32() 708 unsafeBackwardSet.addAll(suffix); in addCE32() 955 ce32 = CollationData::readCE32(p); // Default if no suffix match. in copyFromBaseCE32() 993 ce32 = CollationData::readCE32(p); // Default if no suffix match. in copyContractionsFromBaseCE32() 1485 // After the list head, the prefix or suffix can be empty, but not both. in buildContext() 1499 // If a new suffix has been inserted before what used to be in buildContext() 1510 // One prefix without contraction suffix in buildContext() [all...] |
/third_party/node/deps/googletest/include/gtest/internal/ |
H A D | gtest-string.h | 147 // Returns true if and only if the given string ends with the given suffix, 148 // ignoring case. Any string is considered to end with an empty suffix. 150 const std::string& suffix);
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | numparse_validators.cpp | 22 if (result.prefix.isBogus() || result.suffix.isBogus()) { in postProcess() 23 // We saw a prefix or a suffix but not both. Fail the parse. in postProcess()
|
H A D | collationdatabuilder.cpp | 50 * Context strings sort by prefix length, then by prefix, then by contraction suffix. 70 * then the prefix string, then the contraction suffix. 705 UnicodeString suffix(s, cLength); in addCE32() 707 context.append(prefix).append(suffix); in addCE32() 708 unsafeBackwardSet.addAll(suffix); in addCE32() 955 ce32 = CollationData::readCE32(p); // Default if no suffix match. in copyFromBaseCE32() 993 ce32 = CollationData::readCE32(p); // Default if no suffix match. in copyContractionsFromBaseCE32() 1485 // After the list head, the prefix or suffix can be empty, but not both. in buildContext() 1499 // If a new suffix has been inserted before what used to be in buildContext() 1510 // One prefix without contraction suffix in buildContext() [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | numparse_validators.cpp | 22 if (result.prefix.isBogus() || result.suffix.isBogus()) { in postProcess() 23 // We saw a prefix or a suffix but not both. Fail the parse. in postProcess()
|
/third_party/skia/third_party/externals/freetype/src/lzw/ |
H A D | ftzopen.h | 69 * - First of all, the `prefix' and `suffix' arrays contain the suffix 73 * suffix_of(code) == state->suffix[code-256] 75 * Each prefix is a 16-bit code, and each suffix an 8-bit byte. 81 * state->suffix == (FT_Byte*)(state->prefix + state->prefix_size) 83 * Of course, state->prefix_size is the number of prefix/suffix slots 87 * and `suffix' arrays. This means that the corresponding `next free 98 * prefix/suffix table. 136 FT_Byte* suffix; /* suffix member [all...] |
/third_party/eudev/src/shared/ |
H A D | util.h | 135 char *strappend(const char *s, const char *suffix); 136 char *strnappend(const char *s, const char *suffix, size_t length); 151 bool dirent_is_file_with_suffix(const struct dirent *de, const char *suffix) _pure_;
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/ |
H A D | LocaleDistance.java | 593 String suffix = ""; in testOnlyPrintDistanceTable() 597 suffix = " skip script"; in testOnlyPrintDistanceTable() 599 System.out.println(mapping.getKey() + '=' + value + suffix); in testOnlyPrintDistanceTable()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/locale/ |
H A D | LocaleDistance.java | 598 String suffix = ""; in testOnlyPrintDistanceTable() 602 suffix = " skip script"; in testOnlyPrintDistanceTable() 604 System.out.println(mapping.getKey() + '=' + value + suffix); in testOnlyPrintDistanceTable()
|
/third_party/mbedtls/scripts/mbedtls_dev/ |
H A D | c_wrapper_generator.py | 21 def c_declare(prefix: str, name: str, suffix: str) -> str: 22 """Format a declaration of name with the given type prefix and suffix.""" 25 return prefix + name + suffix 108 By default, this adds a suffix. 148 return c_declare(arg.type, name, arg.suffix)
|
/third_party/mesa3d/src/gallium/tools/trace/ |
H A D | diff_state.py | 263 suffix = '' 266 suffix = '\\n"' 267 line = tag + prefix + text + suffix
|
/third_party/node/deps/openssl/openssl/apps/ |
H A D | rehash.c | 213 const char *suffix = suffixes[type]; in handle_symlink() local 214 if (OPENSSL_strncasecmp(suffix, &filename[i], strlen(suffix)) == 0) in handle_symlink()
|