Searched refs:suffix (Results 26 - 50 of 319) sorted by relevance

1234567891011>>

/external/protobuf/src/google/protobuf/stubs/
H A Dstrutil.h96 // Return true if str ends in suffix.
98 // Given a string and a putative suffix, returns the string minus the
99 // suffix string if the suffix matches, otherwise the original
103 const string& suffix) {
104 return str.size() >= suffix.size() &&
105 str.compare(str.size() - suffix.size(), suffix.size(), suffix) == 0;
108 inline string StripSuffixString(const string& str, const string& suffix) { argument
102 HasSuffixString(const string& str, const string& suffix) argument
[all...]
/external/skia/include/core/
H A DSkOSFile.h47 Iter(const char path[], const char suffix[] = NULL);
50 void reset(const char path[], const char suffix[] = NULL);
/external/webkit/Source/WebCore/platform/win/
H A DSoftLinking.h35 #define SOFT_LINK_LIBRARY_HELPER(lib, suffix) \
38 static HMODULE library = LoadLibraryW(L###lib 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/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/i18n/
H A Desctrn.cpp95 this->suffix = _suffix;
108 suffix(o.suffix),
151 buf.append(supplementalHandler->suffix);
162 buf.append(suffix);
/external/chromium/chrome/browser/history/
H A Dtext_database.cc102 // potentially be the wrong thing to do. Instead, we just look for a suffix.
106 const FilePath::StringType suffix(
109 if (suffix.length() != kIDStringLength ||
110 suffix[4] != FILE_PATH_LITERAL('-')) {
115 base::StringToInt(suffix.begin(), suffix.begin() + 4, &year);
116 base::StringToInt(suffix.begin() + 5, suffix.begin() + 7, &month);
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
H A DMessages.java53 * 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();
362 suffix += "_" + country;
364 return suffix;
/external/proguard/src/proguard/
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/platform/image-decoders/gif/
H A DGIFImageReader.h118 unsigned char* suffix; /* LZW decoding tables */ member in struct:GIFFrameReader
142 suffix = stack = 0;
149 delete []suffix;
/external/guava/guava-tests/test/com/google/common/primitives/
H A DByteArrayAsListTest.java92 Byte[] suffix = {Byte.MIN_VALUE, Byte.MAX_VALUE};
93 Byte[] all = concat(elements, suffix);
109 Byte[] suffix = {(byte) 86, (byte) 99};
110 Byte[] all = concat(concat(prefix, elements), suffix);
H A DCharArrayAsListTest.java92 Character[] suffix = {Character.MIN_VALUE, Character.MAX_VALUE};
93 Character[] all = concat(elements, suffix);
109 Character[] suffix = {(char) 86, (char) 99};
110 Character[] all = concat(concat(prefix, elements), suffix);
H A DDoubleArrayAsListTest.java92 Double[] suffix = {Double.MIN_VALUE, Double.MAX_VALUE};
93 Double[] all = concat(elements, suffix);
109 Double[] suffix = {(double) 86, (double) 99};
110 Double[] all = concat(concat(prefix, elements), suffix);
H A DFloatArrayAsListTest.java92 Float[] suffix = {Float.MIN_VALUE, Float.MAX_VALUE};
93 Float[] all = concat(elements, suffix);
109 Float[] suffix = {(float) 86, (float) 99};
110 Float[] all = concat(concat(prefix, elements), suffix);
H A DIntArrayAsListTest.java93 Integer[] suffix = {Integer.MIN_VALUE, Integer.MAX_VALUE};
94 Integer[] all = concat(elements, suffix);
110 Integer[] suffix = {(int) 86, (int) 99};
111 Integer[] all = concat(concat(prefix, elements), suffix);
H A DLongArrayAsListTest.java92 Long[] suffix = {Long.MIN_VALUE, Long.MAX_VALUE};
93 Long[] all = concat(elements, suffix);
109 Long[] suffix = {(long) 86, (long) 99};
110 Long[] all = concat(concat(prefix, elements), suffix);
H A DShortArrayAsListTest.java92 Short[] suffix = {Short.MIN_VALUE, Short.MAX_VALUE};
93 Short[] all = concat(elements, suffix);
109 Short[] suffix = {(short) 86, (short) 99};
110 Short[] all = concat(concat(prefix, elements), suffix);
/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);
/external/webkit/Tools/Scripts/webkitpy/common/
H A Dprettypatch.py44 diff_file = tempfile.NamedTemporaryFile(suffix=".html")
/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/chromium/chrome/browser/automation/
H A Dautomation_provider_json.cc22 std::string suffix = "\"}"; local
25 return prefix + no_quote_err + suffix;
/external/chromium/sdch/open-vcdiff/src/gtest/internal/
H A Dgtest-string.h201 // Returns true iff this String ends with the given suffix. *Any*
202 // String is considered to end with a NULL or empty suffix.
203 bool EndsWith(const char* suffix) const;
205 // Returns true iff this String ends with the given suffix, not considering
206 // case. Any String is considered to end with a NULL or empty suffix.
207 bool EndsWithCaseInsensitive(const char* suffix) const;
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
H A Dsimplefileflags.py59 suffix = filename[filename.rfind('.'):]
60 return suffix in suffixes
/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/webkit/Source/WebKit/qt/WebCoreSupport/
H A DQtPlatformPlugin.cpp51 const QLatin1String suffix("/webkit/");
55 const QDir dir(paths[i] + suffix);

Completed in 7572 milliseconds

1234567891011>>