HomeSort by relevance Sort by last modified time
    Searched refs:suffix (Results 1 - 25 of 1169) 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)
  /external/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);
  /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
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/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...]
  /art/runtime/entrypoints/quick/
quick_alloc_entrypoints.cc 28 #define GENERATE_ENTRYPOINTS_FOR_ALLOCATOR_INST(suffix, suffix2, instrumented_bool, allocator_type) \
29 extern "C" mirror::Object* artAllocObjectFromCode ##suffix##suffix2( \
36 extern "C" mirror::Object* artAllocObjectFromCodeResolved##suffix##suffix2( \
43 extern "C" mirror::Object* artAllocObjectFromCodeInitialized##suffix##suffix2( \
50 extern "C" mirror::Object* artAllocObjectFromCodeWithAccessCheck##suffix##suffix2( \
57 extern "C" mirror::Array* artAllocArrayFromCode##suffix##suffix2( \
65 extern "C" mirror::Array* artAllocArrayFromCodeResolved##suffix##suffix2( \
73 extern "C" mirror::Array* artAllocArrayFromCodeWithAccessCheck##suffix##suffix2( \
81 extern "C" mirror::Array* artCheckAndAllocArrayFromCode##suffix##suffix2( \
92 extern "C" mirror::Array* artCheckAndAllocArrayFromCodeWithAccessCheck##suffix##suffix2(
    [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/WebKit/Source/build/scripts/
media_feature_symbol.py 6 def mediaFeatureSymbol(entry, suffix):
21 newName = newName + suffix
25 def getMediaFeatureSymbolWithSuffix(suffix):
27 return mediaFeatureSymbol(entry, suffix)
  /external/jemalloc/
coverage.sh 6 suffix=$2
15 mv "${f}" "${f}.${suffix}"
  /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/skia/include/utils/ios/
SkStream_NSData.h 25 NSData* NSData_dataFromResource(const char name[], const char suffix[]);
35 const char suffix[]);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
NamedCounter.java 28 public NamedCounter(String prefix, String suffix) {
30 mSuffix = 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);
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/webkit/browser/appcache/
appcache_histograms.cc 38 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.empty())
    [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/media/video/capture/
video_capture_device.cc 16 const std::string suffix = " (" + model_id + ")"; local
17 if (EndsWith(device_name_, suffix, true)) // |true| means case-sensitive.
19 return device_name_ + suffix;
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/utils/
file_utils.h 34 static int getFilePathWithSuffixBufSize(const char *const filePath, const char *const suffix);
36 static void getFilePathWithSuffix(const char *const filePath, const char *const suffix,
44 // Returns whether the filePath have the suffix.
45 static bool getFilePathWithoutSuffix(const char *const filePath, const char *const suffix,
  /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')

Completed in 722 milliseconds

1 2 3 4 5 6 7 8 91011>>