/external/toybox/tests/ |
basename.test | 12 # Standard suffix behavior. 13 testing "basename suffix" "basename a/b/c/d.suffix .suffix" "d\n" "" "" 15 # A suffix cannot be the entire result. 16 testing "basename suffix=result" "basename .txt .txt" ".txt\n" "" "" 18 # Deal with suffix appearing in the filename 19 testing "basename reappearing suffix 1" "basename a.txt.txt .txt" "a.txt\n" "" "" 20 testing "basename reappearing suffix 2" "basename a.txt.old .txt" "a.txt.old\n" "" "" 22 # A suffix should be a real suffix, only a the end [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/data/ |
pfd_hi.xml | 73 <suffix> ????</suffix> 78 <suffix> ???</suffix> 82 <suffix> ?? ??</suffix> 86 <suffix> ?? ?? ????</suffix> 90 <suffix> ?? ?? from now</suffix> [all...] |
pfd_ja.xml | 93 <suffix>?</suffix> 98 <suffix>?</suffix> 102 <suffix>??</suffix> 107 <suffix>??</suffix> 112 <suffix>??</suffix> [all...] |
pfd_zh_Hant_HK.xml | 82 <suffix>??</suffix> 86 <suffix>??</suffix> 94 <suffix>??</suffix> 99 <suffix>??</suffix> 108 <suffix>??</suffix> [all...] |
pfd_en.xml | 93 <suffix> ago</suffix> 97 <suffix> from now</suffix> 106 <suffix> ago</suffix> 111 <suffix> from now</suffix> 120 <suffix> ago</suffix> [all...] |
pfd_zh_Hans.xml | 97 <suffix>??</suffix> 101 <suffix>??</suffix> 110 <suffix>??</suffix> 115 <suffix>??</suffix> 124 <suffix>??</suffix> [all...] |
pfd_zh_Hans_SG.xml | 95 <suffix>??</suffix> 99 <suffix>??</suffix> 108 <suffix>??</suffix> 113 <suffix>??</suffix> 122 <suffix>??</suffix> [all...] |
pfd_zh_Hant.xml | 95 <suffix>??</suffix> 99 <suffix>??</suffix> 108 <suffix>??</suffix> 113 <suffix>??</suffix> 122 <suffix>??</suffix> [all...] |
pfd_th.xml | 84 <suffix>???????</suffix> 97 <suffix>???????</suffix> 110 <suffix>???????</suffix> 115 <suffix>?????</suffix>
|
pfd_ko.xml | 64 <suffix>?</suffix> 75 <suffix>?</suffix> 86 <suffix>?</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/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/selinux/policycoreutils/mcstrans/share/examples/pipes/setrans.d/ |
pipes.conf | 3 Suffix=Pipes Only 4 Suffix=Pipes
|
/ndk/tests/build/stlport-src-suffix/ |
README | 1 This test is meant to test STLport at the presence of .arm and/or .neon suffix
|
/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/llvm/utils/llvm-lit/ |
CMakeLists.txt | 2 # llvm-lit needs suffix.py for multiprocess to find a main module. 3 set(suffix .py) 5 set(llvm_lit_path ${LLVM_RUNTIME_OUTPUT_INTDIR}/llvm-lit${suffix})
|
/external/clang/test/Parser/ |
objcxx11-user-defined-literal.mm | 3 id x = @"foo"_bar; // expected-error{{user-defined suffix cannot be used here}}
|
/external/skia/src/utils/ios/ |
SkStream_NSData.mm | 21 NSString* suffix = [NSString stringWithUTF8String:csuffix]; 22 NSString* path = [bundle pathForResource:name ofType:suffix]; 40 const char suffix[]) { 41 NSData* data = NSData_dataFromResource(name, suffix);
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/filefilter/ |
SuffixFileFilter.java | 26 * Filters files based on the suffix (what the filename ends with). 57 * Constructs a new Suffix file filter for a single extension. 59 * @param suffix the suffix to allow, must not be null 60 * @throws IllegalArgumentException if the suffix is null 62 public SuffixFileFilter(String suffix) { 63 this(suffix, IOCase.SENSITIVE); 67 * Constructs a new Suffix file filter for a single extension 70 * @param suffix the suffix to allow, must not be nul [all...] |
/external/jemalloc/ |
coverage.sh | 6 suffix=$2 15 mv "${f}" "${f}.${suffix}"
|
/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 "$"
|
/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')
|
/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/llvm/lib/TableGen/ |
TableGenBackend.cpp | 24 StringRef Suffix) { 26 assert((MAX_LINE_LEN - Prefix.str().size() - Suffix.size() > 0) && 29 const size_t e = MAX_LINE_LEN - Suffix.size(); 32 OS << Suffix << '\n'; 41 StringRef Suffix(" *|"); 43 size_t PSLen = Suffix.size() + Prefix.size(); 47 printLine(OS, Prefix + Desc.slice(Pos, PosE), ' ', Suffix); 50 printLine(OS, Prefix, ' ', Suffix); 52 Suffix); 53 printLine(OS, Prefix, ' ', Suffix); [all...] |