HomeSort by relevance Sort by last modified time
    Searched defs:suffix (Results 1 - 25 of 122) sorted by null

1 2 3 4 5

  /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/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/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));
  /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/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/chromium/chrome/browser/automation/
automation_provider_json.cc 22 std::string suffix = "\"}"; local
25 return prefix + no_quote_err + suffix;
  /external/chromium/chrome/browser/download/
drag_download_util.cc 69 string16 suffix = ASCIIToUTF16("-") + base::IntToString16(seq); local
71 std::string suffix = std::string("-") + base::IntToString(seq);
73 new_file_path = file_path->InsertBeforeExtension(suffix);
  /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/icu4c/tools/toolutil/
pkg_icu.cpp 27 const char *suffix; member in struct:__anon6548
39 const char *suffix; local
42 suffix=listFileSuffixes[i].suffix;
44 if((listNameEnd-listname)>length && 0==memcmp(listNameEnd-length, suffix, length)) {
  /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;
  /external/webkit/Source/WebCore/inspector/front-end/
TextEditorModel.js 124 var suffix = this._lines[range.startLine].substring(range.startColumn);
129 this._setLine(range.startLine, prefix + newLines[0] + suffix);
135 this._setLine(range.startLine + newLines.length - 1, newLines[newLines.length - 1] + suffix);
164 var suffix = this._lines[range.endLine].substring(range.endColumn);
168 this._setLine(range.startLine, prefix + suffix);
204 var suffix = line.substring(column); variable
205 var suffixMatch = this._noPunctuationRegex.exec(suffix);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
Messages.java 53 * The name should not have any language suffix
86 * in a errorResourceClass with a language suffix.
105 /** The class name of the error message string table with no language suffix. */
115 * The class name is without a language suffix. If the value passed
299 * without language suffix.
352 * @return an String suffix which can be appended to a resource name
358 String suffix = "_" + locale.getLanguage(); local
362 suffix += "_" + country;
364 return suffix;
  /external/chromium/testing/gtest/test/
gtest_stress_test.cc 65 String IdToKey(int id, const char* suffix) {
67 key << "key_" << id << "_" << suffix; local
79 int id, const char* suffix) {
80 TestPropertyKeyIs matches_key(IdToKey(id, suffix).c_str());
84 << "expecting " << suffix << " value for id " << id;
  /external/opencv/cxcore/src/
cximage.cpp 60 const char* suffix = strrchr( filename, '.' ); local
61 return suffix &&
62 (strcmp( suffix, ".xml" ) == 0 ||
63 strcmp( suffix, ".Xml" ) == 0 ||
64 strcmp( suffix, ".XML" ) == 0 ||
65 strcmp( suffix, ".yml" ) == 0 ||
66 strcmp( suffix, ".Yml" ) == 0 ||
67 strcmp( suffix, ".YML" ) == 0 ||
68 strcmp( suffix, ".yaml" ) == 0 ||
69 strcmp( suffix, ".Yaml" ) == 0 |
    [all...]
  /libcore/support/src/test/java/tests/util/
ClassLoaderBuilder.java 126 String suffix = "!/" + manifestFile; local
131 if (manifestString.endsWith(suffix)) {
132 return manifestString.substring(0, manifestString.length() - suffix.length());
  /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
  /sdk/emulator/qtools/
post_trace.cpp 140 const char *suffix = ""; local
143 suffix = "M";
146 suffix = "K";
149 elapsed_secs, insn_per_sec, 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;
  /external/webkit/Source/WebCore/page/
FrameTree.cpp 164 // Suffix buffer has more than enough space for:
170 char suffix[40]; local
171 snprintf(suffix, sizeof(suffix), "/<!--frame%u-->-->", childCount());
173 name += suffix;
  /external/webkit/Source/WebCore/platform/image-decoders/gif/
GIFImageReader.cpp 249 unsigned char *suffix = gs->suffix; local
300 *rowp++ = suffix[code];
322 // Even though suffix[] only holds characters through suffix[avail - 1],
326 *stackp++ = suffix[code];
333 *stackp++ = firstchar = suffix[code];
338 suffix[avail] = firstchar;
476 if (!frame_reader->suffix)
477 frame_reader->suffix = new unsigned char[MAX_BITS]
    [all...]
  /frameworks/base/core/java/com/android/internal/net/
DomainNameValidator.java 208 // (b) OR thatHost is a '.'-suffix of thisHost: Z.Y.X matches X
251 String suffix = thatDomainToken.substring(starIndex + 1); local
253 return thisDomainToken.startsWith(prefix) && thisDomainToken.endsWith(suffix);
  /frameworks/base/media/libstagefright/codecs/avc/enc/src/
residual.cpp 158 int escape, numPrefix, sufmask, suffix, shift, sign, value, absvalue, vlcnum, level_two_or_higher; local
336 suffix = (value - 1) & sufmask;
339 status = BitstreamWriteBits(stream, numPrefix + vlcnum + 1, (1 << (shift + 1)) | (suffix << 1) | sign);
  /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...]
  /external/bluetooth/glib/gio/
gfilenamecompleter.c 424 char *suffix; local
433 suffix = NULL;
441 if (suffix == NULL)
442 suffix = g_strdup (possible_match + strlen (prefix));
445 lcp = longest_common_prefix (suffix,
447 g_free (suffix);
448 suffix = lcp;
450 if (*suffix == 0)
458 return suffix;

Completed in 732 milliseconds

1 2 3 4 5