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

1 2 3 4 5 6 7 8 910

  /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,
  /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 + "\")");
  /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/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/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/icu4c/tools/toolutil/
pkg_icu.cpp 27 const char *suffix; member in struct:__anon8976
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/regex-re2/re2/testing/
required_prefix_test.cc 15 const char* suffix; member in struct:re2::PrefixTest
58 CHECK_EQ(s->ToString(), string(t.suffix))
  /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/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/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/smack/src/org/jivesoftware/smackx/pubsub/packet/
PubSubNamespace.java 57 String suffix = ns.substring(ns.lastIndexOf('#')+1); local
58 return valueOf(suffix.toUpperCase());
  /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/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/guava/guava-testlib/src/com/google/common/collect/testing/google/
ListGenerators.java 79 String[] suffix = {"f", "g"}; local
80 String[] all = new String[elements.length + suffix.length];
82 System.arraycopy(suffix, 0, all, elements.length, suffix.length);
104 String[] suffix = {"h", "i"}; local
109 System.arraycopy(suffix, 0, all, 2 + elements.length, 2);
  /external/libvpx/libvpx/third_party/googletest/src/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/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);

Completed in 1430 milliseconds

1 2 3 4 5 6 7 8 910