/external/webkit/Source/WebKit/mac/Misc/ |
WebIconDatabase.mm | 344 NSString *suffix = [path pathExtension]; 347 if ([suffix _webkit_isCaseInsensitiveEqualToString:@"htm"] || [suffix _webkit_isCaseInsensitiveEqualToString:@"html"]) {
|
WebKitNSStringExtras.mm | 183 -(BOOL)_webkit_hasCaseInsensitiveSuffix:(NSString *)suffix 185 return hasCaseInsensitiveSuffix(self, suffix);
|
/bionic/libc/bionic/ |
malloc_debug_qemu.cpp | 40 * allocated by this code is guarded with "prefix" and "suffix" areas, so 99 /* Byte size of the suffix data. */ 243 /* Defines default size of allocation suffix. 244 * Note that we make suffix area quite large in order to increase chances of 554 volatile char* suffix = (volatile char*)mallocdesc_user_ptr(desc) + local 556 /* We're causing AV by reading from the prefix and suffix areas of the 561 ch = *suffix; 673 * bytes (plus prefix, and suffix guards), and report allocation to the 776 /* For the suffix we will use whatever bytes remain from the prefix 778 * default suffix size. * [all...] |
/external/easymock/src/org/easymock/ |
EasyMock.java | [all...] |
/external/gtest/test/ |
Android.mk | 42 # libraries, typically the host libs have a _host suffix in their
|
/external/llvm/utils/ |
GenLibDeps.pl | 288 my $suffix = substr($key,length($key)-1,1); 290 if ($suffix eq "a") {
|
/external/skia/src/gpu/gl/mac/ |
GrGLCreateNativeInterface_mac.cpp | 23 #define GET_PROC_SUFFIX(name, suffix) (interface->f ## name = ((GrGL ## name ## Proc) GetProcAddress("gl" #name #suffix))) 169 // ARB extension doesn't use the ARB suffix on the function name 190 // ARB extension doesn't use the ARB suffix on the function names 268 // ARB extension doesn't use the ARB suffix on the function name
|
/external/smack/asmack-master/ |
build.bash | 250 -Djar.suffix="${asmack_suffix}" \ 267 ant -Djar.suffix="${custom}" $JINGLE_ARGS
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
single_test_runner.py | 85 for suffix in ('.txt', '.checksum', '.png', '.wav'): 86 expected_filename = self._port.expected_filename(self._filename, suffix)
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/ |
test.py | 193 def add_file(files, test, suffix, contents): 196 path = LAYOUT_TEST_DIR + '/' + dirname + '/' + base + suffix
|
base.py | 263 def expected_baselines(self, filename, suffix, all_baselines=False): 268 suffix: file suffix of the expected results, including dot; e.g. 292 baseline_filename = testname + '-expected' + suffix 317 def expected_filename(self, filename, suffix): 327 suffix: file suffix of the expected results, including dot; e.g. '.txt' 337 filename, suffix)[0] [all...] |
/external/icu4c/test/cintltst/ |
cnumtst.c | 132 UChar suffix[5]; local 634 unum_getTextAttribute(cur_def, UNUM_NEGATIVE_SUFFIX, suffix, resultlength, &status); 639 if(u_strcmp(suffix,temp)!=0) 640 log_err("Fail:Error in setTextAttribute or getTextAttribute in setting and getting suffix\n"); 642 log_verbose("Pass: setting and getting suffix works fine\n"); 681 u_uastrcpy(suffix, "+"); 682 unum_setTextAttribute(def, UNUM_NEGATIVE_SUFFIX, suffix, u_strlen(suffix) , &status); 693 if(u_strcmp(suffix, temp)!=0) 694 log_err("ERROR: get and setTextAttributes with negative suffix failed\n") [all...] |
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/ |
CodeGenTreeWalker.g | 142 String suffix = getSTSuffix(elementAST, ast_suffix, label); 144 name += suffix; 148 if ( ( grammar.buildAST() || suffix.length() > 0 ) && label == null && 181 String suffix = getSTSuffix( elementAST, ast_suffix, label ); 185 if ( ( grammar.buildAST() || suffix.length() > 0 ) && label == null && 194 if ( tryUnchecked && templates.isDefined( name + "Unchecked" + suffix ) ) 195 elementST = templates.getInstanceOf( name + "Unchecked" + suffix ); 197 elementST = templates.getInstanceOf( name + suffix ); 226 /** Return a non-empty template name suffix if the token is to be 260 //JSystem.@out.println("suffix = "+STsuffix) [all...] |
/external/clang/tools/scan-view/ |
ScanView.py | 689 suffix = '/'.join(components) 695 if os.path.exists(posixpath.join('/', suffix)): 696 path = posixpath.join('/', suffix) 698 path = posixpath.join(self.server.root, suffix)
|
/external/icu4c/tools/genren/ |
genren.pl | 51 /^-S/ && (($U_ICU_VERSION_SUFFIX = shift(@ARGV)), next); # pick the suffix 256 -S - suffix (defaults to _MAJOR_MINOR of current ICU version)
|
/external/llvm/include/llvm/Support/ |
PathV1.h | 148 /// Return the suffix commonly used on file names that contain an 150 /// @returns The executable file suffix for the current platform. 151 /// @brief Return the executable file suffix. 154 /// Return the suffix commonly used on file names that contain a shared 158 /// @returns The dynamic link library suffix for the current platform. 159 /// @brief Return the dynamic link library suffix. 259 /// This function strips off the path and suffix of the file or directory 267 /// This function strips off the suffix of the path beginning with the 274 /// returns just the suffix. For example /a/foo.bar would cause 276 /// @returns StringRef containing the suffix of the pat [all...] |
/external/openssl/crypto/pem/ |
pem_lib.c | 83 int pem_check_suffix(const char *pem_str, const char *suffix); 840 * If for example the pem_str == "RSA PRIVATE KEY" and suffix = "PRIVATE KEY" 844 int pem_check_suffix(const char *pem_str, const char *suffix) 847 int suffix_len = strlen(suffix); 852 if (strcmp(p, suffix))
|
pem_pkey.c | 73 int pem_check_suffix(const char *pem_str, const char *suffix);
|
/external/skia/include/views/ |
SkWidget.h | 282 static SkListSource* CreateFromDir(const char path[], const char suffix[],
|
/external/skia/legacy/src/views/ |
SkListView.cpp | 26 SkDirListSource(const char path[], const char suffix[], const char target[]) 27 : fPath(path), fSuffix(suffix), fTarget(target) 106 SkListSource* SkListSource::CreateFromDir(const char path[], const char suffix[], const char target[]) 108 return new SkDirListSource(path, suffix, target);
|
/external/v8/test/mjsunit/ |
testcfg.py | 96 (fd_self_script, self_script) = tempfile.mkstemp(suffix=".js")
|
/external/webkit/Tools/Scripts/webkitpy/common/checkout/ |
api_unittest.py | 104 self.temp_dir = tempfile.mkdtemp(suffix="changelogs")
|
/external/webkit/Tools/Scripts/webkitpy/tool/bot/ |
queueengine_unittest.py | 202 self.temp_dir = tempfile.mkdtemp(suffix="work_queue_test_logs")
|
/hardware/qcom/audio/legacy/libalsa-intf/ |
alsa_mixer.c | 69 const char *suffix; member in struct:suf 83 while (p->suffix) { 84 size_t slen = strnlen(p->suffix, 44); 88 if (strncmp(name + l, p->suffix, slen) == 0 &&
|
/libcore/luni/src/main/java/java/lang/ |
String.java | 721 * specified string is a suffix. 723 * @param suffix 724 * the suffix to look for. 725 * @return {@code true} if the specified string is a suffix of this string, 728 * if {@code suffix} is {@code null}. 730 public boolean endsWith(String suffix) { 731 return regionMatches(count - suffix.count, suffix, 0, suffix.count); [all...] |