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

1 2 3 4 5 6 7 8 91011>>

  /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 && (suffix = strend(base, suffix))) *suffix = 0;
  /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;
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/util/
string_utils.cpp 26 std::string suffix; local
28 suffix = "st";
30 suffix = "nd";
32 suffix = "rd";
34 suffix = "th";
36 return ToString(cardinal) + suffix;
  /external/swiftshader/third_party/subzero/crosstest/
test_strengthreduce.h 19 #define X(constant, suffix) \
20 uint32_t multiplyByConst##suffix(uint32_t val); \
21 int32_t multiplyByConst##suffix(int32_t val);
test_strengthreduce.cpp 22 #define X(constant, suffix) \
23 uint32_t multiplyByConst##suffix(uint32_t Val) { \
26 int32_t multiplyByConst##suffix(int32_t Val) { \
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/
x86-64-branch-4.l 2 .*:2: Error: invalid instruction suffix for `call'
3 .*:3: Error: invalid instruction suffix for `call'
5 .*:5: Error: invalid instruction suffix for `jmp'
6 .*:6: Error: invalid instruction suffix for `jmp'
8 .*:10: Error: invalid instruction suffix for `call'
9 .*:11: Error: invalid instruction suffix for `call'
10 .*:12: Error: invalid instruction suffix for `call'
12 .*:14: Error: invalid instruction suffix for `jmp'
13 .*:15: Error: invalid instruction suffix for `jmp'
14 .*:16: Error: invalid instruction suffix for `jmp
    [all...]
  /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.27/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.27/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: s suffix on comparison instruction is deprecated
3 [^:]*:29: s suffix on comparison instruction is deprecated
4 [^:]*:32: s suffix on comparison instruction is deprecated
5 [^:]*:35: s suffix on comparison instruction is deprecated
thumb32.l 2 [^;]*:450: s suffix on comparison instruction is deprecated
3 [^;]*:450: s suffix on comparison instruction is deprecated
4 [^;]*:450: s suffix on comparison instruction is deprecated
5 [^;]*:450: s suffix on comparison instruction is deprecated
6 [^;]*:451: s suffix on comparison instruction is deprecated
7 [^;]*:451: s suffix on comparison instruction is deprecated
8 [^;]*:451: s suffix on comparison instruction is deprecated
9 [^;]*:451: s suffix on comparison instruction is deprecated
10 [^;]*:452: s suffix on comparison instruction is deprecated
11 [^;]*:452: 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):
26 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);
  /external/tensorflow/tensorflow/stream_executor/lib/
str_util.h 29 // Returns a copy of the input string 'str' with the given 'suffix'
30 // removed. If the suffix doesn't match, returns a copy of the original string.
31 inline string StripSuffixString(port::StringPiece str, port::StringPiece suffix) {
32 if (str.ends_with(suffix)) {
33 str.remove_suffix(suffix.size());
  /prebuilts/ndk/r16/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 70 #define GENERATE_ENTRYPOINTS_FOR_ALLOCATOR_INST(suffix, suffix2, instrumented_bool, allocator_type) \
71 extern "C" mirror::Object* artAllocObjectFromCodeWithChecks##suffix##suffix2( \
76 extern "C" mirror::Object* artAllocObjectFromCodeResolved##suffix##suffix2( \
81 extern "C" mirror::Object* artAllocObjectFromCodeInitialized##suffix##suffix2( \
86 extern "C" mirror::Array* artAllocArrayFromCodeResolved##suffix##suffix2( \
93 extern "C" mirror::String* artAllocStringFromBytesFromCode##suffix##suffix2( \
103 extern "C" mirror::String* artAllocStringFromCharsFromCode##suffix##suffix2( \
111 extern "C" mirror::String* artAllocStringFromStringFromCode##suffix##suffix2( /* NOLINT */ \
120 #define GENERATE_ENTRYPOINTS_FOR_ALLOCATOR(suffix, allocator_type) \
121 GENERATE_ENTRYPOINTS_FOR_ALLOCATOR_INST(suffix, Instrumented, true, allocator_type)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/number/
ConstantAffixModifier.java 9 * The canonical implementation of {@link Modifier}, containing a prefix and suffix string.
14 // TODO: Avoid making a new instance by default if prefix and suffix are empty
18 private final String suffix; field in class:ConstantAffixModifier
30 * @param suffix
31 * The suffix string.
38 public ConstantAffixModifier(String prefix, String suffix, Field field, boolean strong) {
40 // TODO: Consider returning a null modifier if both prefix and suffix are empty.
42 this.suffix = (suffix == null ? "" : suffix);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
ConstantAffixModifier.java 8 * The canonical implementation of {@link Modifier}, containing a prefix and suffix string.
12 // TODO: Avoid making a new instance by default if prefix and suffix are empty
16 private final String suffix; field in class:ConstantAffixModifier
28 * @param suffix
29 * The suffix string.
36 public ConstantAffixModifier(String prefix, String suffix, Field field, boolean strong) {
38 // TODO: Consider returning a null modifier if both prefix and suffix are empty.
40 this.suffix = (suffix == null ? "" : suffix);
    [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);

Completed in 1442 milliseconds

1 2 3 4 5 6 7 8 91011>>