Searched refs:suffix (Results 1 - 25 of 597) 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/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/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/qemu/android/utils/
H A Dbufprint.h62 ** to concat-ing the config path + path separator + 'suffix'
67 ** temporary directory. equivalent to concat-ing the temp path + path separator + 'suffix'
72 extern char* bufprint_config_file(char* buffer, char* buffend, const char* suffix);
74 extern char* bufprint_temp_file (char* buffer, char* buffend, 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);
56 // Creates a position with the given suffix. Ordering among positions created
59 static UniquePosition FromInt64(int64 i, const std::string& suffix);
62 static UniquePosition InitialPosition(const std::string& suffix);
67 const std::string& suffix);
69 const std::string& suffix);
72 const std::string& suffix);
89 // Returns the suffix.
102 // Returns a string X such that (X ++ |suffix|) < |st
[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.cc64 std::string suffix = ".local";
65 if (domain_name == suffix) {
66 LOG(ERROR) << "Domain name cannot be only \"" << suffix << "\"";
70 if (domain_name.size() < suffix.size() ||
71 domain_name.substr(domain_name.size() - suffix.size()) != suffix) {
72 LOG(ERROR) << "Domain name should end with \"" << suffix << "\"";
/external/chromium_org/android_webview/tools/
H A Dgyp_webview22 android_gyp --suffix .linux-arm )
26 android_gyp --suffix .linux-x86 )
30 android_gyp --suffix .linux-mips )
34 android_gyp --suffix .darwin-arm )
38 android_gyp --suffix .darwin-x86 )
42 android_gyp --suffix .darwin-mips )
/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/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/
H A DRequestJSONView.js70 var suffix = text.substring(end);
74 return new WebInspector.ParsedJSON(JSON.parse(text), prefix, suffix);
98 var title = this._parsedJSON.prefix + obj.description + this._parsedJSON.suffix;
111 WebInspector.ParsedJSON = function(data, prefix, suffix)
115 this.suffix = 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/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/chromium_org/third_party/skia/src/utils/ios/
H A DSkStream_NSData.mm21 NSString* suffix = [NSString stringWithUTF8String:csuffix];
22 NSString* path = [bundle pathForResource:name ofType:suffix];
40 const char suffix[]) {
41 NSData* data = NSData_dataFromResource(name, suffix);
/external/clang/utils/TestUtils/
H A Dpch-test.pl11 my $suffix = shift;
17 @files = `ls test/*/*.$suffix`;
/external/skia/src/utils/ios/
H A DSkStream_NSData.mm21 NSString* suffix = [NSString stringWithUTF8String:csuffix];
22 NSString* path = [bundle pathForResource:name ofType:suffix];
40 const char suffix[]) {
41 NSData* data = NSData_dataFromResource(name, suffix);
/external/smack/src/org/jivesoftware/smackx/pubsub/packet/
H A DPubSubNamespace.java57 String suffix = ns.substring(ns.lastIndexOf('#')+1);
58 return valueOf(suffix.toUpperCase());
/external/chromium_org/third_party/skia/src/utils/
H A DSkOSFile.cpp33 static uint16_t* concat_to_16(const char src[], const char suffix[]) argument
36 size_t len2 = 3 + (suffix ? strlen(suffix) : 0);
46 if (suffix)
48 while (*suffix)
49 dst[i++] = *suffix++;
74 SkOSFile::Iter::Iter(const char path[], const char suffix[]) : fHandle(0), fPath16(NULL) argument
76 this->reset(path, suffix);
86 void SkOSFile::Iter::reset(const char path[], const char suffix[]) argument
97 fPath16 = concat_to_16(path, suffix);
170 Iter(const char path[], const char suffix[]) argument
181 reset(const char path[], const char suffix[]) argument
200 issuffixfor(const SkString& suffix, const char str[]) argument
[all...]

Completed in 2479 milliseconds

1234567891011>>