Searched defs:suffix (Results 1 - 25 of 132) sorted by relevance

123456

/external/icu4c/i18n/
H A Desctrn.h24 * 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/proguard/src/proguard/util/
H A DExtensionMatcher.java53 * Returns whether the given string ends with the given suffix, ignoring its
56 private static boolean endsWithIgnoreCase(String string, String suffix) argument
59 int suffixLength = suffix.length();
61 return string.regionMatches(true, stringLength - suffixLength, suffix, 0, suffixLength);
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_GetLocal.java90 public static File createTempFile(String suffix) throws IOException { argument
91 return File.createTempFile("hyts_", suffix, null);
/external/easymock/src/org/easymock/internal/matchers/
H A DEndsWith.java26 private final String suffix; field in class:EndsWith
28 public EndsWith(String suffix) { argument
29 this.suffix = suffix;
33 return (actual instanceof String) && ((String) actual).endsWith(suffix);
37 buffer.append("endsWith(\"" + suffix + "\")");
/external/proguard/src/proguard/
H A DDataEntryReaderFactory.java145 * Returns whether the given string ends with the given suffix, ignoring its
148 private static boolean endsWithIgnoreCase(String string, String suffix) argument
151 int suffixLength = suffix.length();
153 return string.regionMatches(true, stringLength - suffixLength, suffix, 0, suffixLength);
H A DDataEntryWriterFactory.java154 * Returns whether the given string ends with the given suffix, ignoring its
157 private static boolean endsWithIgnoreCase(String string, String suffix) argument
160 int suffixLength = suffix.length();
162 return string.regionMatches(true, stringLength - suffixLength, suffix, 0, suffixLength);
/external/webkit/Source/WebCore/inspector/front-end/
H A DTextEditorModel.js124 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/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DNFAContext.java161 /** 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 [2
207 protected boolean suffix(NFAContext other) { method in class:NFAContext
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DOutputCollector.java26 * 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/protobuf/gtest/test/
H A Dgtest_stress_test.cc55 String IdToKey(int id, const char* suffix) { argument
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;
67 ExpectKeyAndValueWereRecordedForId(const Vector<TestProperty>& properties, int id, const char* suffix) argument
/external/apache-harmony/support/src/test/java/tests/support/resource/
H A DSupport_Resources.java100 public static File createTempFile(String suffix) throws IOException { argument
101 return File.createTempFile("hyts_", suffix, null);
/external/chromium/chrome/browser/automation/
H A Dautomation_provider_json.cc22 std::string suffix = "\"}"; local
25 return prefix + no_quote_err + suffix;
/external/chromium/chrome/browser/download/
H A Ddrag_download_util.cc69 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/chromium/testing/gtest/test/
H A Dgtest_stress_test.cc65 String IdToKey(int id, const char* suffix) { argument
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;
77 ExpectKeyAndValueWereRecordedForId( const std::vector<TestProperty>& properties, int id, const char* suffix) argument
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DFixedSizeList.java99 * @param suffix {@code null-ok;} suffix for the end of the result
102 public String toString(String prefix, String separator, String suffix) { argument
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) { argument
117 return toString0(prefix, separator, suffix, true);
244 * @param suffix {@code null-ok;} suffix fo
248 toString0(String prefix, String separator, String suffix, boolean human) argument
[all...]
/external/gtest/test/
H A Dgtest_stress_test.cc65 String IdToKey(int id, const char* suffix) { argument
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;
77 ExpectKeyAndValueWereRecordedForId( const std::vector<TestProperty>& properties, int id, const char* suffix) argument
/external/icu4c/tools/toolutil/
H A Dpkg_icu.cpp27 const char *suffix; member in struct:__anon6755
39 const char *suffix; local
42 suffix=listFileSuffixes[i].suffix;
44 if((listNameEnd-listname)>length && 0==memcmp(listNameEnd-length, suffix, length)) {
/external/junit/src/org/junit/internal/runners/rules/
H A DRuleFieldValidator.java87 String suffix) {
89 + field.getName() + "' " + suffix;
86 addError(List<Throwable> errors, FrameworkField field, String suffix) argument
/external/linux-tools-perf/util/
H A Dpath.c132 * If path ends with suffix (complete path components), returns the
133 * part before suffix (sans trailing directory separators).
136 char *strip_path_suffix(const char *path, const char *suffix) argument
138 int path_len = strlen(path), suffix_len = strlen(suffix);
145 if (!is_dir_sep(suffix[suffix_len - 1]))
148 suffix_len = chomp_trailing_dir_sep(suffix, suffix_len);
150 else if (path[--path_len] != suffix[--suffix_len])
/external/skia/src/utils/
H A DSkOSFile.cpp12 static uint16_t* concat_to_16(const char src[], const char suffix[]) argument
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) argument
55 this->reset(path, suffix);
65 void SkOSFile::Iter::reset(const char path[], const char suffix[]) argument
76 fPath16 = concat_to_16(path, suffix);
149 Iter(const char path[], const char suffix[]) argument
160 reset(const char path[], const char suffix[]) argument
179 issuffixfor(const SkString& suffix, const char str[]) argument
[all...]
/external/tinyxml/
H A Dtinystr.h108 TiXmlString& operator += (const char * suffix) argument
110 return append(suffix, static_cast<size_type>( strlen(suffix) ));
120 TiXmlString& operator += (const TiXmlString & suffix) argument
122 return append(suffix.data(), suffix.length());
/external/llvm/lib/MC/
H A DMCWin64EH.cpp224 static const MCSection *getWin64EHTableSection(StringRef suffix, argument
226 if (suffix == "")
229 return context.getCOFFSection((".xdata"+suffix).str(),
235 static const MCSection *getWin64EHFuncTableSection(StringRef suffix, argument
237 if (suffix == "")
239 return context.getCOFFSection((".pdata"+suffix).str(),
/external/llvm/lib/Support/
H A DPath.cpp209 Path::appendSuffix(StringRef suffix) { argument
210 if (!suffix.empty()) {
212 path.append(suffix);
/external/opencv/cxcore/src/
H A Dcximage.cpp60 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, "
[all...]
/external/qemu/android/utils/
H A Dbufprint.c193 bufprint_config_file(char* buff, char* end, const char* suffix) argument
197 p = bufprint(p, end, PATH_SEP "%s", suffix);
234 bufprint_temp_file(char* buff, char* end, const char* suffix) argument
238 p = bufprint(p, end, PATH_SEP "%s", suffix);

Completed in 8616 milliseconds

123456