HomeSort by relevance Sort by last modified time
    Searched refs:suffix (Results 1 - 25 of 883) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/easymock/src/org/easymock/internal/matchers/
EndsWith.java 26 private final String suffix; field in class:EndsWith
28 public EndsWith(String suffix) {
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/
EndsWith.java 17 private final String suffix; field in class:EndsWith
19 public EndsWith(String suffix) {
20 this.suffix = suffix;
24 return actual != null && ((String) actual).endsWith(suffix);
28 description.appendText("endsWith(\"" + suffix + "\")");
  /external/chromium_org/tools/gyp/test/win/
gyptest-link-debug-info.py 22 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)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.results/re.results.acc/
suffix.pass.cpp 14 // const_reference suffix() const;
26 assert(m.suffix().first == s+9);
27 assert(m.suffix().second == s+11);
28 assert(m.suffix().matched == true);
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
OutputCollector.java 24 * list and a suffix (generally consisting of adjunct data referred to
37 * {@code null-ok;} suffix for the output, or {@code null} if the suffix
40 private ArrayList<DalvInsn> suffix; field in class:OutputCollector
47 * suffix
53 this.suffix = new ArrayList<DalvInsn>(suffixInitialCapacity);
80 * Adds an instruction to the output suffix.
85 suffix.add(insn);
97 if (suffix == null) {
106 * Helper for {@link #getFinisher}, which appends the suffix t
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
OutputCollector.java 25 * list and a suffix (generally consisting of adjunct data referred to
38 * {@code null-ok;} suffix for the output, or {@code null} if the suffix
41 private ArrayList<DalvInsn> suffix; field in class:OutputCollector
49 * suffix
55 this.suffix = new ArrayList<DalvInsn>(suffixInitialCapacity);
82 * Adds an instruction to the output suffix.
87 suffix.add(insn);
99 if (suffix == null) {
108 * Helper for {@link #getFinisher}, which appends the suffix t
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
gen-fma-test.py 3 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,width,order,optype
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
OutputCollector.java 26 * 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/proguard/src/proguard/util/
ExtensionMatcher.java 53 * Returns whether the given string ends with the given suffix, ignoring its
56 private static boolean endsWithIgnoreCase(String string, String suffix)
59 int suffixLength = suffix.length();
61 return string.regionMatches(true, stringLength - suffixLength, suffix, 0, suffixLength);
  /external/chromium_org/third_party/skia/include/utils/ios/
SkStream_NSData.h 25 NSData* NSData_dataFromResource(const char name[], const char suffix[]);
35 const char suffix[]);
  /external/chromium_org/tools/gyp/test/configurations/x64/
gyptest-x86.py 24 for machine, suffix in [('14C machine (x86)', ''),
27 '/headers', test.built_file_path('configurations%s.exe' % suffix))
  /external/qemu/android/utils/
bufprint.h 62 ** 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/
SkStream_NSData.h 25 NSData* NSData_dataFromResource(const char name[], const char suffix[]);
35 const char suffix[]);
  /external/chromium_org/sync/internal_api/public/base/
unique_position.h 37 // 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|) < |str|
    [all...]
  /external/smack/src/org/xbill/DNS/
A6Record.java 19 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 = Address.getByAddress(s, Address.IPv6)
    [all...]
  /external/chromium_org/android_webview/tools/
gyp_webview 22 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/
check-libstdc++.sh 18 for suffix in so dylib; do
19 so=.libs/libharfbuzz.$suffix
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/macholib/
dylib.py 17 (?:_(?P<suffix>[^._]+))?
36 suffix='Suffix',
39 Note that SomeVersion and Suffix are optional and may be None
49 def d(location=None, name=None, shortname=None, version=None, suffix=None):
55 suffix=suffix
60 assert dylib_info('P/Foo_debug.dylib') == d('P', 'Foo_debug.dylib', 'Foo', suffix='debug')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/macholib/
dylib.py 17 (?:_(?P<suffix>[^._]+))?
36 suffix='Suffix',
39 Note that SomeVersion and Suffix are optional and may be None
49 def d(location=None, name=None, shortname=None, version=None, suffix=None):
55 suffix=suffix
60 assert dylib_info('P/Foo_debug.dylib') == d('P', 'Foo_debug.dylib', 'Foo', suffix='debug')
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/
TempPath.java 35 * The prefix will be empty and the suffix will be
45 * The prefix and suffix can be set by the user.
48 * @param suffix the suffix to use. <code>null</code> gives
52 TempFile createTempFile(String prefix, String suffix) throws IOException;
59 * The prefix and suffix can be set by the user.
62 * @param suffix the suffix to use. <code>null</code> gives
69 TempFile createTempFile(String prefix, String suffix,
  /external/apache-xml/src/main/java/org/apache/xml/utils/res/
XResourceBundle.java 60 String suffix = getResourceSuffix(locale); local
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(); local
108 suffix += "_" + country;
111 suffix += "_" + country + "_" + variant;
113 return suffix;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.alg/re.alg.search/
grep.pass.cpp 35 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/
program_parse_extra.c 38 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 element is the saturation selector fro
    [all...]
  /external/mesa3d/src/mesa/program/
program_parse_extra.c 38 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 element is the saturation selector fro
    [all...]
  /external/chromium_org/cloud_print/gcp20/prototype/
command_line_reader.cc 64 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 << "\"";

Completed in 2258 milliseconds

1 2 3 4 5 6 7 8 91011>>