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

1 2 3 4 5 6 7 8 91011>>

  /external/mockito/src/main/java/org/mockito/internal/matchers/
EndsWith.java 14 private final String suffix; field in class:EndsWith
16 public EndsWith(String suffix) {
17 this.suffix = suffix;
21 return actual != null && actual.endsWith(suffix);
25 return "endsWith(\"" + suffix + "\")";
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/tokens/
TagTuple.java 20 private final String suffix; field in class:TagTuple
22 public TagTuple(String handle, String suffix) {
23 if (suffix == null) {
24 throw new NullPointerException("Suffix must be provided.");
27 this.suffix = suffix;
35 return 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 && *suffix) {
27 long bl = strlen(base), sl = strlen(suffix);
30 if (bl > sl && !strcmp(s, suffix)) *s = 0;
  /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 + "\")");
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/aarch64/
lse-atomic.s 24 .irp suffix, , a, l, al, b, h, ab, lb, alb, ah, lh, alh
25 \op\suffix w0, w1, [x2]
26 \op\suffix w2, w3, [sp]
28 .irp suffix, , a, l, al
29 \op\suffix x0, x1, [x2]
30 \op\suffix x2, x3, [sp]
35 .irp suffix, , l, b, h, lb, lh
36 \op\suffix w0, [x2]
37 \op\suffix w2, [sp]
39 .irp suffix, ,
    [all...]
illegal-lse.s 25 .irp suffix, , a, l, al, b, h, ab, lb, alb, ah, lh, alh
26 \op\suffix w0, x1, [x2]
27 \op\suffix w2, w3, [w4]
29 .irp suffix, , a, l, al
30 \op\suffix w0, x1, [x2]
31 \op\suffix x2, x3, [w4]
36 .irp suffix, , l, b, h, lb, lh
37 \op\suffix x0, [x2]
38 \op\suffix w2, [w3]
40 .irp suffix, ,
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
neon-suffix-bad.d 1 # name: Bad suffix for non-Neon mnemonic
3 # error-output: neon-suffix-bad.l
armv1.l 2 [^:]*:26: Warning: s suffix on comparison instruction is deprecated
3 [^:]*:29: Warning: s suffix on comparison instruction is deprecated
4 [^:]*:32: Warning: s suffix on comparison instruction is deprecated
5 [^:]*:35: Warning: s suffix on comparison instruction is deprecated
thumb32.l 2 [^;]*:450: Warning: s suffix on comparison instruction is deprecated
3 [^;]*:450: Warning: s suffix on comparison instruction is deprecated
4 [^;]*:450: Warning: s suffix on comparison instruction is deprecated
5 [^;]*:450: Warning: s suffix on comparison instruction is deprecated
6 [^;]*:451: Warning: s suffix on comparison instruction is deprecated
7 [^;]*:451: Warning: s suffix on comparison instruction is deprecated
8 [^;]*:451: Warning: s suffix on comparison instruction is deprecated
9 [^;]*:451: Warning: s suffix on comparison instruction is deprecated
10 [^;]*:452: Warning: s suffix on comparison instruction is deprecated
11 [^;]*:452: Warning: s suffix on comparison instruction is deprecate
    [all...]
neon-suffix-bad.l 2 [^:]*:3: Error: invalid neon suffix for non neon instruction
3 [^:]*:4: Error: invalid neon suffix for non neon instruction
4 [^:]*:5: Error: invalid neon suffix for non neon instruction
6 [^:]*:9: Error: invalid neon suffix for non neon instruction
7 [^:]*:10: Error: invalid neon suffix for non neon instruction
8 [^:]*:11: Error: invalid neon suffix for non neon instruction
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
StringEndsWith.java 22 * @param suffix
25 public static Matcher<String> endsWith(String suffix) {
26 return new StringEndsWith(false, suffix);
35 * @param suffix
38 public static Matcher<String> endsWithIgnoringCase(String suffix) {
39 return new StringEndsWith(true, suffix);
  /external/chromium-trace/catapult/common/py_utils/py_utils/
tempfile_ext.py 12 def NamedTemporaryDirectory(suffix='', prefix='tmp', dir=None):
21 d = tempfile.mkdtemp(suffix=suffix, prefix=prefix, dir=dir)
  /external/libcxx/test/std/re/re.results/re.results.acc/
suffix.pass.cpp 14 // const_reference suffix() const;
27 assert(m.suffix().first == s+9);
28 assert(m.suffix().second == s+11);
29 assert(m.suffix().matched == true);
  /prebuilts/ndk/r11/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);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/re/re.results/re.results.acc/
suffix.pass.cpp 14 // const_reference suffix() const;
27 assert(m.suffix().first == s+9);
28 assert(m.suffix().second == s+11);
29 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...]
  /art/runtime/entrypoints/quick/
quick_alloc_entrypoints.cc 69 #define GENERATE_ENTRYPOINTS_FOR_ALLOCATOR_INST(suffix, suffix2, instrumented_bool, allocator_type) \
70 extern "C" mirror::Object* artAllocObjectFromCodeWithChecks##suffix##suffix2( \
75 extern "C" mirror::Object* artAllocObjectFromCodeResolved##suffix##suffix2( \
80 extern "C" mirror::Object* artAllocObjectFromCodeInitialized##suffix##suffix2( \
85 extern "C" mirror::Array* artAllocArrayFromCodeResolved##suffix##suffix2( \
92 extern "C" mirror::String* artAllocStringFromBytesFromCode##suffix##suffix2( \
102 extern "C" mirror::String* artAllocStringFromCharsFromCode##suffix##suffix2( \
110 extern "C" mirror::String* artAllocStringFromStringFromCode##suffix##suffix2( /* NOLINT */ \
119 #define GENERATE_ENTRYPOINTS_FOR_ALLOCATOR(suffix, allocator_type) \
120 GENERATE_ENTRYPOINTS_FOR_ALLOCATOR_INST(suffix, Instrumented, true, allocator_type)
    [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);
  /libcore/ojluni/src/main/java/sun/security/x509/
X509AttributeName.java 40 private String suffix = null; field in class:X509AttributeName
54 suffix = name.substring(i + 1);
66 * Return the suffix of the name.
69 return (suffix);
  /external/jemalloc/
coverage.sh 6 suffix=$2
15 mv "${f}" "${f}.${suffix}"
  /test/vts/drivers/hal/common/utils/
StringUtil.cpp 26 bool endsWith(const string& s, const string& suffix) {
27 return s.size() >= suffix.size() && s.rfind(suffix) == (s.size() - suffix.size());
  /art/runtime/interpreter/mterp/mips64/
fcvtFooter.S 17 SET_VREG$suffix $valreg, a1
  /external/doclava/src/com/google/doclava/
ContainerInfo.java 22 public default boolean qualifiedNameMatches(String prefix, String suffix) {
24 return (qualifiedName.startsWith(prefix) && qualifiedName.endsWith(suffix));
  /external/junit/src/main/java/org/junit/internal/runners/rules/
ValidationError.java 8 public ValidationError(FrameworkMember<?> member, Class<? extends Annotation> annotation, String suffix) {
9 super(String.format("The @%s '%s' %s", annotation.getSimpleName(), member.getName(), suffix));

Completed in 1089 milliseconds

1 2 3 4 5 6 7 8 91011>>