/external/guava/guava-tests/test/com/google/common/primitives/ |
ShortArrayAsListTest.java | 94 Short[] suffix = {Short.MIN_VALUE, Short.MAX_VALUE}; local 95 Short[] all = concat(elements, suffix); 111 Short[] suffix = {(short) 86, (short) 99}; local 112 Short[] all = concat(concat(prefix, elements), suffix);
|
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/ |
gtest-string.h | 142 // Returns true iff the given string ends with the given suffix, ignoring 143 // case. Any string is considered to end with an empty suffix. 145 const std::string& str, const std::string& suffix);
|
/external/mesa3d/src/gallium/tests/unit/ |
u_format_test.c | 59 const char *suffix) 69 printf("%s", suffix); 78 const char *suffix) 91 printf("%s", suffix); 100 const char *suffix) 113 printf("%s", suffix); 122 const char *suffix) 134 printf("%s", suffix); 143 const char *suffix) 156 printf("%s", suffix); [all...] |
/external/mesa3d/src/gtest/include/gtest/internal/ |
gtest-string.h | 142 // Returns true iff the given string ends with the given suffix, ignoring 143 // case. Any string is considered to end with an empty suffix. 145 const std::string& str, const std::string& suffix);
|
/external/skia/src/core/ |
SkBitmapProcState_procs.h | 10 // identifiers have a _neon suffix. 83 #define MAKENAME(suffix) NAME_WRAP(S32_opaque_D32 ## suffix) 94 #define MAKENAME(suffix) NAME_WRAP(S32_alpha_D32 ## suffix)
|
/external/v8/testing/gtest/include/gtest/internal/ |
gtest-string.h | 142 // Returns true iff the given string ends with the given suffix, ignoring 143 // case. Any string is considered to end with an empty suffix. 145 const std::string& str, const std::string& suffix);
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/ |
gtest-string.h | 142 // Returns true iff the given string ends with the given suffix, ignoring 143 // case. Any string is considered to end with an empty suffix. 145 const std::string& str, const std::string& suffix);
|
/packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/ |
dict_file_writing_utils.h | 38 static bool flushBufferToFileWithSuffix(const char *const basePath, const char *const suffix,
|
/prebuilts/go/darwin-x86/src/runtime/ |
mapspeed_test.go | 128 for suffix := 'A'; suffix <= 'G'; suffix++ { 129 m[strings.Repeat("X", 1<<20-1)+fmt.Sprint(suffix)] = true 170 for suffix := 'A'; suffix <= 'G'; suffix++ { 171 m[fmt.Sprint(suffix)] = true
|
/prebuilts/go/linux-x86/src/runtime/ |
mapspeed_test.go | 128 for suffix := 'A'; suffix <= 'G'; suffix++ { 129 m[strings.Repeat("X", 1<<20-1)+fmt.Sprint(suffix)] = true 170 for suffix := 'A'; suffix <= 'G'; suffix++ { 171 m[fmt.Sprint(suffix)] = true
|
/prebuilts/ndk/r11/sources/third_party/googletest/googletest/include/gtest/internal/ |
gtest-string.h | 142 // Returns true iff the given string ends with the given suffix, ignoring 143 // case. Any string is considered to end with an empty suffix. 145 const std::string& str, const std::string& suffix);
|
/prebuilts/ndk/r13/sources/third_party/googletest/googletest/include/gtest/internal/ |
gtest-string.h | 142 // Returns true iff the given string ends with the given suffix, ignoring 143 // case. Any string is considered to end with an empty suffix. 145 const std::string& str, const std::string& suffix);
|
/system/tools/aidl/ |
options.cpp | 158 // we should never get here since we validated the suffix. 254 bool EndsWith(const string& str, const string& suffix) { 255 if (str.length() < suffix.length()) { 258 return std::equal(str.crbegin(), str.crbegin() + suffix.length(), 259 suffix.crbegin());
|
/system/update_engine/ |
boot_control_android.cc | 83 // to mask the suffix). 90 // |partition_name| and suffix corresponding to |slot|, e.g. 110 string suffix; 111 auto store_suffix_cb = [&suffix](hidl_string cb_suffix) { 112 suffix = cb_suffix.c_str(); 117 LOG(ERROR) << "boot_control impl returned no suffix for slot " 122 base::FilePath path = misc_device.DirName().Append(partition_name + suffix);
|
/build/make/core/ |
multi_prebuilt.mk | 49 # name will be the filename with the suffix removed. 74 $(eval LOCAL_BUILT_MODULE_STEM := $(LOCAL_MODULE)$(suffix $(LOCAL_SRC_FILES))) \ 79 $(eval LOCAL_MODULE_SUFFIX := $(suffix $(LOCAL_SRC_FILES))) \
|
/cts/hostsidetests/edi/src/android/edi/cts/ |
LibraryDeviceInfo.java | 58 private void collectFileDetails(HostInfoStore store, String path, String suffix) 68 if (!file.isDirectory() && name.endsWith(suffix)) {
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_dbm.py | 13 for suffix in ['', '.pag', '.dir', '.db']:
14 test_support.unlink(self.filename + suffix)
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/ |
NFAContext.java | 161 /** Two contexts conflict() if they are equals() or one is a stack suffix 172 * Two contexts conflict if they are the same or if one is a suffix 184 return this.suffix(other); // || this.equals(other); 187 /** [$] suffix any context 188 * [21 $] suffix [21 12 $] 189 * [21 12 $] suffix [21 $] 190 * [21 18 $] suffix [21 18 12 9 $] 191 * [21 18 12 9 $] suffix [21 18 $] 192 * [21 12 $] not suffix [21 9 $] 194 * Example "[21 $] suffix [21 12 $]" means: rule r invoked current rul 207 protected boolean suffix(NFAContext other) { method in class:NFAContext [all...] |
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/ |
Writables.java | 27 * prefix & suffix if there's at least one element. 30 String prefix, String suffix, 40 appendable.append(suffix);
|
/external/python/cpython2/Lib/test/ |
test_dbm.py | 13 for suffix in ['', '.pag', '.dir', '.db']: 14 test_support.unlink(self.filename + suffix)
|
/external/skia/gm/ |
imagesource2.cpp | 19 ImageSourceGM(const char* suffix, SkFilterQuality filter) : fSuffix(suffix), fFilter(filter) {
|
/frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/ |
AString.h | 86 bool endsWith(const char *suffix) const; 88 bool endsWithIgnoreCase(const char *suffix) const;
|
/frameworks/base/core/tests/coretests/src/android/app/ |
SuggestionProvider.java | 71 for (String suffix : suffixes) { 72 addRow(cursor, query + suffix);
|
/frameworks/opt/setupwizard/tools/gradle/ |
docs.gradle | 15 def suffix = variant.name.capitalize() 17 def javadocTask = project.tasks.create(name: "javadoc${suffix}", type: Javadoc) {
|
/frameworks/support/room/runtime/src/main/java/android/arch/persistence/room/ |
Room.java | 74 static <T, C> T getGeneratedImplementation(Class<C> klass, String suffix) { 80 final String implName = postPackageName.replace('.', '_') + suffix;
|