HomeSort by relevance Sort by last modified time
    Searched refs:suffix (Results 1 - 25 of 1142) 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/toybox/toys/posix/
basename.c 14 usage: basename string [suffix]
16 Return non-directory portion of a pathname removing suffix
23 char *base = basename(*toys.optargs), *suffix = toys.optargs[1]; local
25 // chop off the suffix if provided
26 if (suffix) {
27 char *s = base + strlen(base) - strlen(suffix);
28 if (s > base && !strcmp(s, suffix)) *s = 0;
  /external/strace/tests/
uid.awk 3 regexp = "^getuid" suffix "\\(\\)[[:space:]]+= " r_uint "$"
18 regexp = "^setuid" suffix "\\(" uid "\\)[[:space:]]+= 0$"
21 regexp = "^getresuid" suffix "\\(\\[" uid "\\], \\[" uid "\\], \\[" uid "\\]\\)[[:space:]]+= 0$"
24 regexp = "^setreuid" suffix "\\(-1, -1\\)[[:space:]]+= 0$"
27 regexp = "^setresuid" suffix "\\(" uid ", -1, -1\\)[[:space:]]+= 0$"
30 regexp = "^fchown" suffix "\\(1, -1, -1\\)[[:space:]]+= 0$"
33 regexp = "^getgroups" suffix "\\(0, NULL\\)[[:space:]]+= " r_uint "$"
43 regexp = "^getgroups" suffix "\\(" ngroups ", \\[" list "\\]\\)[[:space:]]+= " ngroups "$"
  /external/libcxx/test/std/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/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 30 #define GENERATE_ENTRYPOINTS_FOR_ALLOCATOR_INST(suffix, suffix2, instrumented_bool, allocator_type) \
31 extern "C" mirror::Object* artAllocObjectFromCode ##suffix##suffix2( \
58 extern "C" mirror::Object* artAllocObjectFromCodeResolved##suffix##suffix2( \
85 extern "C" mirror::Object* artAllocObjectFromCodeInitialized##suffix##suffix2( \
110 extern "C" mirror::Object* artAllocObjectFromCodeWithAccessCheck##suffix##suffix2( \
116 extern "C" mirror::Array* artAllocArrayFromCode##suffix##suffix2( \
123 extern "C" mirror::Array* artAllocArrayFromCodeResolved##suffix##suffix2( \
130 extern "C" mirror::Array* artAllocArrayFromCodeWithAccessCheck##suffix##suffix2( \
137 extern "C" mirror::Array* artCheckAndAllocArrayFromCode##suffix##suffix2( \
147 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/jemalloc/
coverage.sh 6 suffix=$2
15 mv "${f}" "${f}.${suffix}"
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
StouCommandHandler.java 51 String suffix = Long.toString(System.currentTimeMillis()); local
52 return baseName + 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/fio/compiler/
compiler.h 43 #define __compiletime_assert(condition, msg, prefix, suffix) \
46 extern void prefix ## suffix(void) __compiletime_error(msg); \
48 prefix ## suffix(); \
52 #define _compiletime_assert(condition, msg, prefix, suffix) \
53 __compiletime_assert(condition, msg, prefix, suffix)
  /packages/inputmethods/LatinIME/native/jni/src/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
check-symbols.sh 19 for suffix in so dylib; do
20 so=.libs/libharfbuzz.$suffix
28 if test $suffix = dylib; then prefix="_$prefix"; fi
  /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;
  /external/libcxx/test/std/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));
  /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));

Completed in 1487 milliseconds

1 2 3 4 5 6 7 8 91011>>