Searched refs:suffix (Results 1 - 25 of 3828) sorted by relevance

1234567891011>>

/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/chromium_org/third_party/WebKit/Source/build/scripts/
H A Dmedia_feature_symbol.py6 def mediaFeatureSymbol(entry, suffix):
21 newName = newName + suffix
25 def getMediaFeatureSymbolWithSuffix(suffix):
27 return mediaFeatureSymbol(entry, suffix)
/external/libcxx/test/re/re.results/re.results.acc/
H A Dsuffix.pass.cpp14 // const_reference suffix() const;
26 assert(m.suffix().first == s+9);
27 assert(m.suffix().second == s+11);
28 assert(m.suffix().matched == true);
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dgen-fma-test.py3 def emit(opcode,suffix,width,order,optype):
6 d['suffix']=suffix
14 elif suffix == 'pd':
16 elif suffix == 'sd':
18 elif suffix == 'ss':
29 print "v%(opcode)s%(order)s%(suffix)s %(op1)s, %(op2)s, %(op3)s" % (d)
32 print "v%(opcode)s%(order)s%(suffix)s %(op1)s, %(op2)s, %(op3)s" % (d)
36 for (suffix,width) in combos:
39 emit(opcode,suffix,widt
[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/chromium_org/tools/gyp/test/win/
H A Dgyptest-link-debug-info.py22 suffix = '.exe.pdb' if test.format == 'ninja' else '.pdb'
23 test.built_file_must_not_exist('test_debug_off%s' % suffix, chdir=CHDIR)
24 test.built_file_must_exist('test_debug_on%s' % suffix, chdir=CHDIR)
/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/jemalloc/
H A Dcoverage.sh6 suffix=$2
15 mv "${f}" "${f}.${suffix}"
/external/chromium-trace/trace-viewer/src/tracing/analysis/
H A Dgeneric_object_view.js43 label, object, indent, depth, maxDepth, suffix) {
46 label, indent, '<recursion limit reached>', suffix);
51 this.appendSimpleText_(label, indent, 'undefined', suffix);
56 this.appendSimpleText_(label, indent, 'null', suffix);
63 this.appendSimpleText_(label, indent, '"' + object + '"', suffix);
65 this.appendSimpleText_(label, indent, object, suffix);
73 this.appendElementWithLabel_(label, indent, link, suffix);
80 this.appendElementWithLabel_(label, indent, link, suffix);
86 label, object, indent, depth, maxDepth, suffix);
91 label, object, indent, depth, maxDepth, suffix);
[all...]
/external/chromium_org/third_party/skia/include/utils/ios/
H A DSkStream_NSData.h25 NSData* NSData_dataFromResource(const char name[], const char suffix[]);
35 const char suffix[]);
/external/skia/include/utils/ios/
H A DSkStream_NSData.h25 NSData* NSData_dataFromResource(const char name[], const char suffix[]);
35 const char suffix[]);
/external/chromium_org/sync/internal_api/public/base/
H A Dunique_position.h37 // practice, however, most ordinals should be not much longer than the suffix.
46 static bool IsValidSuffix(const std::string& suffix);
49 // Returns a valid, but mostly random suffix.
60 // Creates a position with the given suffix. Ordering among positions created
63 static UniquePosition FromInt64(int64 i, const std::string& suffix);
66 static UniquePosition InitialPosition(const std::string& suffix);
71 const std::string& suffix);
73 const std::string& suffix);
76 const std::string& suffix);
93 // Returns the suffix
[all...]
/external/chromium_org/content/browser/appcache/
H A Dappcache_histograms.cc38 const std::string suffix = OriginToCustomHistogramSuffix(origin_url); local
39 if (!suffix.empty()) {
41 "appcache.UpdateJobResult" + suffix,
66 const std::string suffix = OriginToCustomHistogramSuffix(origin_url); local
67 if (!suffix.empty()) {
69 label + suffix,
79 const std::string suffix = OriginToCustomHistogramSuffix(origin_url); local
83 if (!suffix.empty()) {
85 label + suffix,
92 if (!suffix
[all...]
/external/smack/src/org/xbill/DNS/
H A DA6Record.java19 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
36 A6Record(Name name, int dclass, long ttl, int prefixBits, InetAddress suffix, Name prefix) argument
[all...]
/external/chromium_org/cloud_print/gcp20/prototype/
H A Dcommand_line_reader.cc62 std::string suffix = ".local";
63 if (domain_name == suffix) {
64 LOG(ERROR) << "Domain name cannot be only \"" << suffix << "\"";
68 if (domain_name.size() < suffix.size() ||
69 domain_name.substr(domain_name.size() - suffix.size()) != suffix) {
70 LOG(ERROR) << "Domain name should end with \"" << suffix << "\"";
/external/harfbuzz_ng/src/
H A Dcheck-libstdc++.sh18 for suffix in so dylib; do
19 so=.libs/libharfbuzz.$suffix
/external/chromium_org/tools/gyp/test/configurations/x64/
H A Dgyptest-x86.py24 for machine, suffix in [('14C machine (x86)', ''),
27 '/headers', test.built_file_path('configurations%s.exe' % suffix))
/external/qemu/android/utils/
H A Dbufprint.h66 ** to concat-ing the config path + path separator + 'suffix'
71 ** temporary directory. equivalent to concat-ing the temp path + path separator + 'suffix'
76 extern char* bufprint_config_file(char* buffer, char* buffend, const char* suffix);
78 extern char* bufprint_temp_file (char* buffer, char* buffend, const char* suffix);
/external/apache-xml/src/main/java/org/apache/xml/utils/res/
H A DXResourceBundle.java60 String suffix = getResourceSuffix(locale);
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();
108 suffix += "_" + country;
111 suffix += "_" + country + "_" + variant;
113 return suffix;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/
H A DRequestJSONView.js79 var suffix = text.substring(end);
83 return new WebInspector.ParsedJSON(JSON.parse(text), prefix, suffix);
110 var title = this._parsedJSON.prefix + obj.description + this._parsedJSON.suffix;
123 WebInspector.ParsedJSON = function(data, prefix, suffix)
127 this.suffix = suffix;
/external/libcxx/test/re/re.alg/re.alg.search/
H A Dgrep.pass.cpp35 assert(!m.suffix().matched);
36 assert(m.suffix().first == m[0].second);
37 assert(m.suffix().second == s + std::char_traits<char>::length(s));
51 assert(m.suffix().matched);
52 assert(m.suffix().first == m[0].second);
53 assert(m.suffix().second == s + std::char_traits<char>::length(s));
/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/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/libcxx/test/re/re.alg/re.alg.match/
H A Degrep.pass.cpp35 assert(!m.suffix().matched);
36 assert(m.suffix().first == m[0].second);
37 assert(m.suffix().second == s + std::char_traits<char>::length(s));
58 assert(!m.suffix().matched);
59 assert(m.suffix().first == m[0].second);
60 assert(m.suffix().second == s + std::char_traits<char>::length(s));
74 assert(!m.suffix().matched);
75 assert(m.suffix().first == m[0].second);
76 assert(m.suffix().second == s + std::char_traits<char>::length(s));

Completed in 5909 milliseconds

1234567891011>>