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

12345678910

/external/chromium_org/third_party/icu/source/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/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dprogram_parse_extra.c38 const char *suffix,
47 /* The first possible suffix element is the precision specifier from
51 switch (suffix[0]) {
54 suffix++;
58 suffix++;
62 suffix++;
69 /* The next possible suffix element is the condition code modifier selection
73 if (suffix[0] == 'C') {
75 suffix++;
80 /* The final possible suffix elemen
37 _mesa_parse_instruction_suffix(const struct asm_parser_state *state, const char *suffix, struct prog_instruction *inst) argument
[all...]
/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/mesa3d/src/mesa/program/
H A Dprogram_parse_extra.c38 const char *suffix,
47 /* The first possible suffix element is the precision specifier from
51 switch (suffix[0]) {
54 suffix++;
58 suffix++;
62 suffix++;
69 /* The next possible suffix element is the condition code modifier selection
73 if (suffix[0] == 'C') {
75 suffix++;
80 /* The final possible suffix elemen
37 _mesa_parse_instruction_suffix(const struct asm_parser_state *state, const char *suffix, struct prog_instruction *inst) argument
[all...]
/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/chromium_org/third_party/re2/re2/testing/
H A Drequired_prefix_test.cc15 const char* suffix; member in struct:re2::PrefixTest
58 CHECK_EQ(s->ToString(), string(t.suffix))
/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/mockito/src/org/mockito/internal/matchers/
H A DEndsWith.java17 private final String suffix; field in class:EndsWith
19 public EndsWith(String suffix) { argument
20 this.suffix = suffix;
24 return actual != null && ((String) actual).endsWith(suffix);
28 description.appendText("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/regex-re2/re2/testing/
H A Drequired_prefix_test.cc15 const char* suffix; member in struct:re2::PrefixTest
58 CHECK_EQ(s->ToString(), string(t.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/chromium_org/base/android/java/src/org/chromium/base/
H A DPathUtils.java26 * Sets the suffix that should be used for the directory where private data is to be stored
28 * @param suffix The private data directory suffix.
31 public static void setPrivateDataDirectorySuffix(String suffix) { argument
32 sDataDirectorySuffix = suffix;
38 * @param webappSuffix The suffix of the directory used for storing webapp-specific profile
/external/chromium_org/chrome/common/media_galleries/
H A Dpicasa_types.cc15 const std::string& suffix) {
17 std::string(kPicasaAlbumTableName) + "_" + suffix));
14 OpenPlatformFile(const base::FilePath& directory_path, const std::string& suffix) argument
/external/chromium_org/ui/base/text/
H A Dbytes_formatting.cc18 // Byte suffix string constants. These both must match the DataUnits enum.
40 const int* const suffix) {
59 result = l10n_util::GetStringFUTF16(suffix[units], result);
37 FormatBytesInternal(int64 bytes, DataUnits units, bool show_units, const int* const suffix) argument
/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/chromium_org/chrome/browser/extensions/
H A Devent_listener_map_unittest.cc40 const std::string& suffix) {
45 filter_dict->Set("hostSuffix", new StringValue(suffix));
39 CreateHostSuffixFilter( const std::string& suffix) argument
/external/chromium_org/content/browser/download/
H A Ddrag_download_util.cc73 string16 suffix = ASCIIToUTF16("-") + base::IntToString16(seq); local
75 std::string suffix = std::string("-") + base::IntToString(seq);
77 new_file_path = file_path->InsertBeforeExtension(suffix);
/external/chromium_org/content/browser/media/
H A Dwebrtc_internals_unittest.cc49 std::string suffix) {
54 return prefix + kstatic_part1 + id + kstatic_part2 + suffix;
47 ExpectedInfo(std::string prefix, std::string id, std::string suffix) argument

Completed in 502 milliseconds

12345678910