/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 + "\")");
|
/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/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/src/utils/ |
SkOSFile.cpp | 5 static uint16_t* concat_to_16(const char src[], const char suffix[]) 8 size_t len2 = 3 + (suffix ? strlen(suffix) : 0); 18 if (suffix) 20 while (*suffix) 21 dst[i++] = *suffix++; 46 SkOSFile::Iter::Iter(const char path[], const char suffix[]) : fHandle(0), fPath16(NULL) 48 this->reset(path, suffix); 58 void SkOSFile::Iter::reset(const char path[], const char suffix[]) 69 fPath16 = concat_to_16(path, suffix); [all...] |
/packages/apps/Email/emailcommon/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,
|
SimpleTempStorage.java | 79 String suffix) throws IOException {
84 if (suffix == null) {
85 suffix = ".tmp";
94 f = new File(parent.getAbsolutePath(), prefix + n + suffix);
142 public TempFile createTempFile(String prefix, String suffix)
145 return SimpleTempStorage.this.createTempFile(this, prefix, suffix);
151 public TempFile createTempFile(String prefix, String suffix,
155 return SimpleTempStorage.this.createTempFile(this, prefix, 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;
|
/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));
|
/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/bluetooth/glib/gmodule/ |
gmodule-os2.c | 134 gchar *suffix = strrchr(module_name, '.'); local 136 if (suffix && (stricmp (suffix, ".dll") == 0)) 140 else if (suffix && (stricmp (suffix, ".dll") == 0))
|
/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,
|
/frameworks/base/opengl/tools/glgen/src/ |
GenerateGLES.java | 87 for(String suffix: new String[] {"GLES10", "GLES10Ext", 92 + suffix + ".spec")); 93 String gl11Filename = "android/opengl/" + suffix + ".java"; 94 String gl11cFilename = "android_opengl_" + suffix + ".cpp"; 101 copy("stubs/gles11/" + suffix + "Header.java-if", gl11Stream); 102 copy("stubs/gles11/" + suffix + "cHeader.cpp", gl11cStream); 104 "android/opengl/" + suffix, 108 + suffix);
|
/external/icu4c/tools/genbidi/ |
genbidi.h | 35 writeUCDFilename(char *basename, const char *filename, const char *suffix);
|
/dalvik/dexgen/src/com/android/dexgen/util/ |
FixedSizeList.java | 99 * @param suffix {@code null-ok;} suffix for the end of the result 102 public String toString(String prefix, String separator, String suffix) { 103 return toString0(prefix, separator, suffix, false); 113 * @param suffix {@code null-ok;} suffix for the end of the result 116 public String toHuman(String prefix, String separator, String suffix) { 117 return toString0(prefix, separator, suffix, true); 244 * @param suffix {@code null-ok;} suffix for the end of the resul [all...] |
/dalvik/dx/src/com/android/dx/util/ |
FixedSizeList.java | 99 * @param suffix {@code null-ok;} suffix for the end of the result 102 public String toString(String prefix, String separator, String suffix) { 103 return toString0(prefix, separator, suffix, false); 113 * @param suffix {@code null-ok;} suffix for the end of the result 116 public String toHuman(String prefix, String separator, String suffix) { 117 return toString0(prefix, separator, suffix, true); 244 * @param suffix {@code null-ok;} suffix for the end of the resul [all...] |
/external/gtest/test/ |
gtest_stress_test.cc | 57 String IdToKey(int id, const char* suffix) { 59 key << "key_" << id << "_" << suffix; local 71 const char* suffix) { 72 TestPropertyKeyIs matches_key(IdToKey(id, suffix).c_str()); 74 EXPECT_TRUE(node != NULL) << "expecting " << suffix << " node for id " << id;
|
/external/protobuf/gtest/test/ |
gtest_stress_test.cc | 55 String IdToKey(int id, const char* suffix) { 57 key << "key_" << id << "_" << suffix; local 69 const char* suffix) { 70 TestPropertyKeyIs matches_key(IdToKey(id, suffix).c_str()); 73 << "expecting " << suffix << " value for id " << id;
|
/frameworks/base/include/media/stagefright/foundation/ |
ADebug.h | 39 #define MAKE_COMPARATOR(suffix,op) \ 41 AString Compare_##suffix(const A &a, const B &b) { \ 58 #define CHECK_OP(x,y,suffix,op) \ 60 AString ___res = Compare_##suffix(x, y); \ 64 " CHECK_" #suffix "( " #x "," #y ") failed: "; \
|
/packages/apps/Email/emailcommon/src/org/apache/commons/io/filefilter/ |
SuffixFileFilter.java | 26 * Filters files based on the suffix (what the filename ends with).
57 * Constructs a new Suffix file filter for a single extension.
59 * @param suffix the suffix to allow, must not be null
60 * @throws IllegalArgumentException if the suffix is null
62 public SuffixFileFilter(String suffix) {
63 this(suffix, IOCase.SENSITIVE);
67 * Constructs a new Suffix file filter for a single extension
70 * @param suffix the suffix to allow, must not be null [all...] |
/packages/apps/Email/emailcommon/src/org/apache/commons/io/output/ |
DeferredFileOutputStream.java | 77 * The temporary file suffix.
79 private String suffix;
field in class:DeferredFileOutputStream 118 * @param suffix Suffix to use for the temporary file.
123 public DeferredFileOutputStream(int threshold, String prefix, String suffix, File directory)
130 this.suffix = suffix;
163 outputFile = File.createTempFile(prefix, suffix, directory);
213 * If constructor specifying a temporary file prefix/suffix is used
|
/external/bluetooth/bluez/tools/ |
dfutool.c | 113 static struct usb_dev_handle *open_device(char *device, struct dfu_suffix *suffix) 213 if (suffix) { 214 suffix->idVendor = cpu_to_le16(0x0000); 215 suffix->idProduct = cpu_to_le16(0x0000); 216 suffix->bcdDevice = cpu_to_le16(0x0000); 229 if (suffix) { 230 suffix->idVendor = cpu_to_le16(dfu_dev[sel]->descriptor.idVendor); 231 suffix->idProduct = cpu_to_le16(dfu_dev[sel]->descriptor.idProduct); 232 suffix->bcdDevice = cpu_to_le16(dfu_dev[sel]->descriptor.bcdDevice); 265 if (suffix && dev->descriptor.idVendor != le16_to_cpu(suffix->idVendor) 319 struct dfu_suffix *suffix; local 420 struct dfu_suffix suffix; local 593 struct dfu_suffix suffix; local [all...] |
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
math.h | 54 #define __MATHCALL(function,suffix, args) \ 55 __MATHDECL (_Mdouble_,function,suffix, args) 56 #define __MATHDECL(type, function,suffix, args) \ 57 __MATHDECL_1(type, function,suffix, args); \ 58 __MATHDECL_1(type, __CONCAT(__,function),suffix, args) 59 #define __MATHCALLX(function,suffix, args, attrib) \ 60 __MATHDECLX (_Mdouble_,function,suffix, args, attrib) 61 #define __MATHDECLX(type, function,suffix, args, attrib) \ 62 __MATHDECL_1(type, function,suffix, args) __attribute__ (attrib); \ 63 __MATHDECL_1(type, __CONCAT(__,function),suffix, args) __attribute__ (attrib [all...] |
/external/clang/utils/TestUtils/ |
pch-test.pl | 11 my $suffix = shift; 17 @files = `ls test/*/*.$suffix`;
|