/external/easymock/src/org/easymock/internal/matchers/ |
EndsWith.java | 26 private final String suffix;
field in class:EndsWith 28 public EndsWith(String suffix) {
29 this.suffix = suffix;
33 return (actual instanceof String) && ((String) actual).endsWith(suffix);
37 buffer.append("endsWith(\"" + suffix + "\")");
|
/external/mockito/src/org/mockito/internal/matchers/ |
EndsWith.java | 17 private final String suffix; field in class:EndsWith 19 public EndsWith(String suffix) { 20 this.suffix = suffix; 24 return actual != null && ((String) actual).endsWith(suffix); 28 description.appendText("endsWith(\"" + suffix + "\")");
|
/ndk/sources/cxx-stl/llvm-libc++/test/re/re.results/re.results.acc/ |
suffix.pass.cpp | 14 // const_reference suffix() const; 26 assert(m.suffix().first == s+9); 27 assert(m.suffix().second == s+11); 28 assert(m.suffix().matched == true);
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
OutputCollector.java | 24 * list and a suffix (generally consisting of adjunct data referred to 37 * {@code null-ok;} suffix for the output, or {@code null} if the suffix 40 private ArrayList<DalvInsn> suffix; field in class:OutputCollector 47 * suffix 53 this.suffix = new ArrayList<DalvInsn>(suffixInitialCapacity); 80 * Adds an instruction to the output suffix. 85 suffix.add(insn); 97 if (suffix == null) { 106 * Helper for {@link #getFinisher}, which appends the suffix t [all...] |
/dalvik/dx/src/com/android/dx/dex/code/ |
OutputCollector.java | 26 * list and a suffix (generally consisting of adjunct data referred to 39 * {@code null-ok;} suffix for the output, or {@code null} if the suffix 42 private ArrayList<DalvInsn> suffix; field in class:OutputCollector 50 * suffix 56 this.suffix = new ArrayList<DalvInsn>(suffixInitialCapacity); 83 * Adds an instruction to the output suffix. 88 suffix.add(insn); 100 if (suffix == null) { 109 * Helper for {@link #getFinisher}, which appends the suffix t [all...] |
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
OutputCollector.java | 26 * list and a suffix (generally consisting of adjunct data referred to 39 * {@code null-ok;} suffix for the output, or {@code null} if the suffix 42 private ArrayList<DalvInsn> suffix; field in class:OutputCollector 50 * suffix 56 this.suffix = new ArrayList<DalvInsn>(suffixInitialCapacity); 83 * Adds an instruction to the output suffix. 88 suffix.add(insn); 100 if (suffix == null) { 109 * Helper for {@link #getFinisher}, which appends the suffix t [all...] |
/external/proguard/src/proguard/util/ |
ExtensionMatcher.java | 53 * Returns whether the given string ends with the given suffix, ignoring its 56 private static boolean endsWithIgnoreCase(String string, String suffix) 59 int suffixLength = suffix.length(); 61 return string.regionMatches(true, stringLength - suffixLength, suffix, 0, suffixLength);
|
/external/qemu/android/utils/ |
bufprint.h | 62 ** to concat-ing the config path + path separator + 'suffix' 67 ** temporary directory. equivalent to concat-ing the temp path + path separator + 'suffix' 72 extern char* bufprint_config_file(char* buffer, char* buffend, const char* suffix); 74 extern char* bufprint_temp_file (char* buffer, char* buffend, const char* suffix);
|
/external/skia/include/utils/ios/ |
SkStream_NSData.h | 25 NSData* NSData_dataFromResource(const char name[], const char suffix[]); 35 const char suffix[]);
|
/external/skia/legacy/include/utils/ios/ |
SkStream_NSData.h | 25 NSData* NSData_dataFromResource(const char name[], const char suffix[]); 35 const char suffix[]);
|
/external/smack/src/org/xbill/DNS/ |
A6Record.java | 19 private InetAddress suffix; field in class:A6Record 32 * @param suffix The address suffix 37 InetAddress suffix, Name prefix) 41 if (suffix != null && Address.familyOf(suffix) != Address.IPv6) 43 this.suffix = suffix; 56 suffix = InetAddress.getByAddress(bytes); 70 suffix = Address.getByAddress(s, Address.IPv6) [all...] |
/external/skia/legacy/src/utils/ |
SkOSFile.cpp | 12 static uint16_t* concat_to_16(const char src[], const char suffix[]) 15 size_t len2 = 3 + (suffix ? strlen(suffix) : 0); 25 if (suffix) 27 while (*suffix) 28 dst[i++] = *suffix++; 53 SkOSFile::Iter::Iter(const char path[], const char suffix[]) : fHandle(0), fPath16(NULL) 55 this->reset(path, suffix); 65 void SkOSFile::Iter::reset(const char path[], const char suffix[]) 76 fPath16 = concat_to_16(path, suffix); [all...] |
/external/skia/src/utils/ |
SkOSFile.cpp | 12 static uint16_t* concat_to_16(const char src[], const char suffix[]) 15 size_t len2 = 3 + (suffix ? strlen(suffix) : 0); 25 if (suffix) 27 while (*suffix) 28 dst[i++] = *suffix++; 53 SkOSFile::Iter::Iter(const char path[], const char suffix[]) : fHandle(0), fPath16(NULL) 55 this->reset(path, suffix); 65 void SkOSFile::Iter::reset(const char path[], const char suffix[]) 76 fPath16 = concat_to_16(path, suffix); [all...] |
/external/harfbuzz_ng/src/ |
check-libstdc++.sh | 18 for suffix in so dylib; do 19 so=.libs/libharfbuzz.$suffix
|
/packages/apps/Email/src/org/apache/james/mime4j/util/ |
TempPath.java | 35 * The prefix will be empty and the suffix will be
45 * The prefix and suffix can be set by the user.
48 * @param suffix the suffix to use. <code>null</code> gives
52 TempFile createTempFile(String prefix, String suffix) throws IOException;
59 * The prefix and suffix can be set by the user.
62 * @param suffix the suffix to use. <code>null</code> gives
69 TempFile createTempFile(String prefix, String suffix,
|
/external/apache-xml/src/main/java/org/apache/xml/utils/res/ |
XResourceBundle.java | 60 String suffix = getResourceSuffix(locale); local 62 //System.out.println("resource " + className + suffix); 67 String resourceName = className + suffix; 97 * @return an String suffix which canbe appended to a resource name 105 String suffix = "_" + locale.getLanguage(); local 108 suffix += "_" + country; 111 suffix += "_" + country + "_" + variant; 113 return suffix;
|
/ndk/sources/cxx-stl/llvm-libc++/test/re/re.alg/re.alg.search/ |
grep.pass.cpp | 35 assert(!m.suffix().matched); 36 assert(m.suffix().first == m[0].second); 37 assert(m.suffix().second == s + std::char_traits<char>::length(s)); 51 assert(m.suffix().matched); 52 assert(m.suffix().first == m[0].second); 53 assert(m.suffix().second == s + std::char_traits<char>::length(s));
|
egrep.pass.cpp | 35 assert(!m.suffix().matched); 36 assert(m.suffix().first == m[0].second); 37 assert(m.suffix().second == s + std::char_traits<char>::length(s)); 51 assert(m.suffix().matched); 52 assert(m.suffix().first == m[0].second); 53 assert(m.suffix().second == s + std::char_traits<char>::length(s)); 67 assert(!m.suffix().matched); 68 assert(m.suffix().first == m[0].second); 69 assert(m.suffix().second == s + std::char_traits<char>::length(s)); 83 assert(!m.suffix().matched) [all...] |
/frameworks/base/core/java/android/text/format/ |
Formatter.java | 53 int suffix = com.android.internal.R.string.byteShort; local 55 suffix = com.android.internal.R.string.kilobyteShort; 59 suffix = com.android.internal.R.string.megabyteShort; 63 suffix = com.android.internal.R.string.gigabyteShort; 67 suffix = com.android.internal.R.string.terabyteShort; 71 suffix = com.android.internal.R.string.petabyteShort; 94 value, context.getString(suffix));
|
/ndk/sources/cxx-stl/llvm-libc++/test/re/re.alg/re.alg.match/ |
egrep.pass.cpp | 35 assert(!m.suffix().matched); 36 assert(m.suffix().first == m[0].second); 37 assert(m.suffix().second == s + std::char_traits<char>::length(s)); 58 assert(!m.suffix().matched); 59 assert(m.suffix().first == m[0].second); 60 assert(m.suffix().second == s + std::char_traits<char>::length(s)); 74 assert(!m.suffix().matched); 75 assert(m.suffix().first == m[0].second); 76 assert(m.suffix().second == s + std::char_traits<char>::length(s));
|
awk.pass.cpp | 36 assert(!m.suffix().matched); 37 assert(m.suffix().first == m[0].second); 38 assert(m.suffix().second == s+1); 51 assert(!m.suffix().matched); 52 assert(m.suffix().first == m[0].second); 53 assert(m.suffix().second == s+2); 92 assert(!m.suffix().matched); 93 assert(m.suffix().first == m[0].second); 94 assert(m.suffix().second == s+4); 107 assert(!m.suffix().matched) [all...] |
grep.pass.cpp | 35 assert(!m.suffix().matched); 36 assert(m.suffix().first == m[0].second); 37 assert(m.suffix().second == s + std::char_traits<char>::length(s));
|
extended.pass.cpp | 35 assert(!m.suffix().matched); 36 assert(m.suffix().first == m[0].second); 37 assert(m.suffix().second == s+1); 50 assert(!m.suffix().matched); 51 assert(m.suffix().first == m[0].second); 52 assert(m.suffix().second == s+2); 91 assert(!m.suffix().matched); 92 assert(m.suffix().first == m[0].second); 93 assert(m.suffix().second == s+4); 106 assert(!m.suffix().matched) [all...] |
/development/tools/findunused/ |
findunusedtranslations | 29 $suffix = $3; 32 $pattern1 = "$prefix/values$1$2-??$3/$suffix"; 33 $pattern2 = "$prefix/values$1$2-??-r??$3/$suffix"; 35 $pattern1 = "$prefix/values-??$values/$suffix"; 36 $pattern2 = "$prefix/values-??-r??$values/$suffix";
|
/external/icu4c/i18n/ |
esctrn.h | 24 * Escape forms have a prefix and suffix, either of which may be 56 UnicodeString suffix; member in class:EscapeTransliterator 80 * prefix, suffix, radix, and minDigits of this object are used 98 const UnicodeString& prefix, const UnicodeString& suffix,
|