/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/chromium-trace/catapult/telemetry/telemetry/internal/util/ |
file_handle_unittest.py | 16 suffix='.txt', delete=False) 18 suffix='.html', delete=False).name
|
/external/clang/test/FixIt/ |
fixit-cxx11-compat.cpp | 9 const char *p = "foo"bar; // expected-warning {{will be treated as a reserved user-defined literal suffix}} 11 const char *q = "foo"_bar; // expected-warning {{will be treated as a user-defined literal suffix}}
|
/external/clang/test/Lexer/ |
cxx1y_binary_literal.cpp | 16 // FIXME: If we ever need to support a standard suffix starting with [a-f], 19 int k3 = 0b10010g; // expected-error {{invalid suffix 'g' on integer constant}}
|
ms-extensions.cpp | 5 return "foo"bar("bar")"baz"; /*expected-warning {{identifier after literal will be treated as a reserved user-defined literal suffix in C++11}} */
|
ms-extensions.c | 11 __int64 y = 0x42i64u; // expected-error {{invalid suffix}} 13 __int64 z = 9Li64; // expected-error {{invalid suffix}} 14 __int64 q = 10lli64; // expected-error {{invalid 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
|
/external/strace/tests/ |
uid.awk | 30 regexp = "^getx?uid" suffix "\\(\\)[[:space:]]+= " r_uint "$" 45 regexp = "^setuid" suffix "\\(" uid "\\)[[:space:]]+= 0$" 48 regexp = "^getresuid" suffix "\\(\\[" uid "\\], \\[" uid "\\], \\[" uid "\\]\\)[[:space:]]+= 0$" 51 regexp = "^setreuid" suffix "\\(-1, -1\\)[[:space:]]+= 0$" 54 regexp = "^setresuid" suffix "\\(" uid ", -1, -1\\)[[:space:]]+= 0$" 57 regexp = "^fchown" suffix "\\(1, -1, -1\\)[[:space:]]+= 0$" 60 regexp = "^getgroups" suffix "\\(0, NULL\\)[[:space:]]+= " r_uint "$" 70 regexp = "^getgroups" suffix "\\(" ngroups ", \\[" list "\\]\\)[[:space:]]+= " ngroups "$"
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/ |
NamedCounter.java | 28 public NamedCounter(String prefix, String suffix) { 30 mSuffix = suffix;
|
/frameworks/native/opengl/tools/glgen/src/ |
GenerateEGL.java | 87 for(String suffix: new String[] {"EGL14", "EGLExt"}) { 89 "specs/egl/" + suffix + ".spec")); 90 String egljFilename = "android/opengl/" + suffix + ".java"; 91 String eglcFilename = "android_opengl_" + suffix + ".cpp"; 96 copy("stubs/egl/" + suffix + "Header.java-if", egljStream); 97 copy("stubs/egl/" + suffix + "cHeader.cpp", eglcStream); 99 "android/opengl/" + suffix, 103 "register_android_opengl_jni_" + suffix);
|
GenerateGLES.java | 86 for(String suffix: new String[] {"GLES10", "GLES10Ext", 92 + suffix + ".spec")); 93 String gl11Filename = "android/opengl/" + suffix + ".java"; 94 String gl11cFilename = "android_opengl_" + suffix + ".cpp"; 99 copy("stubs/gles11/" + suffix + "Header.java-if", gl11Stream); 100 copy("stubs/gles11/" + suffix + "cHeader.cpp", gl11cStream); 103 "android/opengl/" + suffix, 107 + suffix);
|
/build/kati/testcase/ |
multi_pattern_rule.mk | 5 # foo.o should match the suffix rule below.
|
/external/bsdiff/ |
README.chromium | 10 files. By using suffix sorting and taking advantage of how executable files
|
/external/chromium-trace/catapult/devil/devil/android/ |
device_temp_file.py | 19 def __init__(self, adb, suffix='', prefix='temp_file', dir='/data/local/tmp'): 26 suffix: The suffix of the name of the temp file. 33 self.name = posixpath.join(dir, '%s-%s%s' % (prefix, random_hex, suffix))
|
/external/llvm/utils/llvm-lit/ |
Makefile | 14 # llvm-lit needs suffix.py for multiprocess to find a main module. 16 Suffix := .py 19 all:: $(ToolDir)/llvm-lit$(Suffix) 21 $(ToolDir)/llvm-lit$(Suffix): llvm-lit.in Makefile $(ToolDir)/.dir
|
/external/parameter-framework/ |
RemoteProcess.mk | 30 SUFFIX := _host 32 SUFFIX := 35 LOCAL_MODULE := remote-process$(SUFFIX) 46 LOCAL_SHARED_LIBRARIES := libremote-processor$(PFW_NETWORKING_SUFFIX)$(SUFFIX)
|
/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);
|
/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/icu/icu4c/source/test/cintltst/ |
nfsprep.c | 176 const char **suffix, int32_t *suffixLen, 185 *suffix = NULL; 190 *suffix = src + i; 198 if((findStringIndex(special_prefixes,UPRV_LENGTHOF(special_prefixes), *prefix, *prefixLen-1) != -1) && (*suffix != NULL)){ 211 const char *prefix = NULL, *suffix = NULL; local 231 getPrefixSuffix(src, srcLength, &prefix, &prefixLen, &suffix, &suffixLen, status); 245 /* prepare the suffix */ 246 if(suffix != NULL){ 247 sLen = nfs4_prepare(suffix, suffixLen, s, sCapacity, NFS4_MIXED_PREP_SUFFIX, parseError, status); 255 sLen = nfs4_prepare(suffix, suffixLen, s, sLen, NFS4_MIXED_PREP_SUFFIX, parseError, status) [all...] |
/external/libcxx/test/libcxx/ |
util.py | 14 def guardedTempFilename(suffix='', prefix='', dir=None): 17 handle, name = tempfile.mkstemp(suffix=suffix, prefix=prefix, dir=dir)
|
/external/libcxx/test/std/re/re.alg/re.alg.match/ |
awk.pass.cpp | 37 assert(!m.suffix().matched); 38 assert(m.suffix().first == m[0].second); 39 assert(m.suffix().second == s+1); 52 assert(!m.suffix().matched); 53 assert(m.suffix().first == m[0].second); 54 assert(m.suffix().second == s+2); 93 assert(!m.suffix().matched); 94 assert(m.suffix().first == m[0].second); 95 assert(m.suffix().second == s+4); 108 assert(!m.suffix().matched) [all...] |
/external/libcxx/test/std/re/re.alg/re.alg.search/ |
egrep.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)); 67 assert(!m.suffix().matched); 68 assert(m.suffix().first == m[0].second); 69 assert(m.suffix().second == s + std::char_traits<char>::length(s)); 83 assert(!m.suffix().matched) [all...] |
/external/strace/ |
strace-log-merge | 28 suffix=${file#"$logfile".} 29 [ "$suffix" -gt 0 ] 2> /dev/null || 31 pid=$(printf "%-5s" $suffix)
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/libcxx/ |
util.py | 14 def guardedTempFilename(suffix='', prefix='', dir=None): 17 handle, name = tempfile.mkstemp(suffix=suffix, prefix=prefix, dir=dir)
|