/external/icu4c/layout/ |
ContextualSubstSubtables.cpp | 54 le_int32 match = 0; local 57 match = glyphCount -1; 68 if (glyph != SWAPW(glyphArray[match])) { 73 match += direction; 85 le_int32 match = 0; local 88 match = glyphCount - 1; 99 le_int32 matchClass = SWAPW(classArray[match]); 112 match += direction;
|
/external/v8/src/ |
hashmap.cc | 44 HashMap::HashMap(MatchFun match, 48 match_ = match;
|
/external/v8/test/mjsunit/ |
string-replace.js | 131 assertEquals(1, ctr, "replace('x',func) num-match"); 141 assertEquals(1, ctr, "replace(/x/,func) num-match"); 151 assertEquals(4, ctr, "replace(/x/g,func) num-match"); 163 assertEquals(3, ctr, "replace(/x/g,func) num-match");
|
/external/webkit/JavaScriptCore/tests/mozilla/js1_5/Object/ |
regress-90596-001.js | 230 var arr = text.match(/^\((.*)\)$/); 232 // defend against a null match... 245 var arr = text.match(/^\{(.*)\}$/); 247 // defend against a null match...
|
regress-90596-002.js | 230 var arr = text.match(/^\((.*)\)$/); 232 // defend against a null match... 245 var arr = text.match(/^\{(.*)\}$/); 247 // defend against a null match...
|
/external/webkit/WebCore/inspector/front-end/ |
DatabaseQueryView.js | 149 if (query.match(/^create /i) || query.match(/^drop table /i))
|
SourceFrame.js | 222 var match = regexObject.exec(line); 223 if (match) { 224 ranges.push(new WebInspector.TextRange(i, offset + match.index, i, offset + match.index + match[0].length)); 225 offset += match.index + 1; 226 line = line.substring(match.index + 1); 228 } while (match)
|
CookieItemsView.js | 125 var match = resource.documentURL.match(WebInspector.URLRegExp); 126 if (match && match[2] === this._cookieDomain)
|
/external/zlib/contrib/masmx86/ |
gvmat32.asm | 53 ; IPos cur_match; /* current match */
156 ; initialize or check the variables used in match.asm.
357 ; if we are here, we know that *(match+best_len-1) == scan_end
359 ; if (match != scan_start) goto rcontlab
361 ; calculate the good chain_length, and we'll compare scan and match string
416 ; we go in normalbeg2 because *(ushf*)(match+best_len-1) == scan_end
422 jne contloop3 ; if *(ushf*)match != scan_start, continue
425 ; if we are here, we know that *(match+best_len-1) == scan_end
426 ; and (match == scan_start)
430 add edi,eax ; edi = window + cur_match = match
[all...] |
/frameworks/base/services/java/com/android/server/ |
IntentResolver.java | 228 // the filters that match that MIME type. 237 // completely match or wildcards whose base type matches. 243 // We can match anything with our base type. 264 // the filters that match its scheme (we will further refine matches 319 protected R newResult(F filter, int match) { 480 int match; local 491 match = filter.match( 493 if (match >= 0) { 494 if (debug) Slog.v(TAG, " Filter matched! match=0x" [all...] |
/system/core/fastboot/ |
usbtest.c | 129 ifc_match_func match; member in struct:__anon12996 193 usb = usb_open(tests[i].match);
|
/dalvik/libcore/security/src/test/java/tests/security/cert/ |
CertStore2Test.java | 325 public boolean match(CRL crl) { method in class:CertStore2Test.MyCRLSelector 335 public boolean match(CRL crl) { method in class:CertStore2Test.MyOtherCRLSelector 347 public boolean match(Certificate cert) { method in class:CertStore2Test.MyCertSelector 358 public boolean match(Certificate crl) { method in class:CertStore2Test.MyOtherCertSelector
|
/dalvik/vm/mterp/ |
gen-mterp.py | 161 match = opcode_re.match(line) 162 if not match: 164 opcodes.append("OP_" + match.group(1))
|
/external/apache-http/src/org/apache/http/impl/cookie/ |
BasicDomainHandler.java | 69 // have DNS names. Since they have no dots, to domain-match the 81 // domain must match host 101 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:BasicDomainHandler
|
RFC2109DomainHandler.java | 79 + "\" does not match the host \"" 111 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:RFC2109DomainHandler
|
/external/clearsilver/scripts/ |
ChangeLog.py | 46 m = old_re.match (line) 53 m = new_re.match (line) 60 m = del_re.match (line) 112 m = info_re.match (lines[x])
|
/external/libffi/testsuite/lib/ |
libffi-dg.exp | 32 # To get all \n in dg-output test strings to match printf output 189 if { [string match "*-*-darwin*" $target_triplet] } { 202 # search_for -- looks for a string match in a file 207 if [string match "*$pattern*" $cur_line] then {
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Function/ |
regress-58274.js | 162 var arr = s.match(re);
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Statements/ |
regress-121744.js | 164 * The result of an unsuccessful regexp match is the null value 169 for (var i in 'bbb'.match(/aaa/))
|
/external/webkit/WebKitTools/simplejson/ |
encoder.py | 53 def replace(match): 54 return ESCAPE_DCT[match.group(0)] 58 def replace(match): 59 s = match.group(0)
|
/frameworks/base/core/tests/coretests/src/android/net/ |
UriMatcherTest.java | 87 int result = mURLMatcher.match(Uri.parse(uri));
|
/hardware/libhardware_legacy/wifi/ |
wifi.c | 466 char *match = strchr(buf, '>'); local 467 if (match != NULL) { 468 nread -= (match+1-buf); 469 memmove(buf, match+1, nread+1);
|
/external/webkit/SunSpider/tests/parse-only/ |
prototype-1.6.0.3.js | 19 MobileSafari: !!navigator.userAgent.match(/Apple.*Mobile.*Safari/) 205 var names = this.toString().match(/^[\s\(]*function[^(]*\(([^\)]*)\)/)[1] 286 RegExp.prototype.match = RegExp.prototype.test; 344 var result = '', source = this, match; 348 if (match = source.match(pattern)) { 349 result += source.slice(0, match.index); 350 result += String.interpret(replacement(match)); 351 source = source.slice(match.index + match[0].length) [all...] |
/bionic/libc/kernel/common/linux/ |
device.h | 48 int (*match)(struct device * dev, struct device_driver * drv); member in struct:bus_type 59 void *data, int (*match)(struct device *, void *)); 97 int (*match)(struct device *, void *));
|
/dalvik/dexopt/ |
OptMain.c | 251 const char* match = strstr(bcp, inputFileName); local 252 if (match != NULL) { 254 * TODO: we have a partial string match, but that doesn't mean 257 * should re-do the strstr starting at (match+1). 264 int matchOffset = match - bcp; 340 LOGE("DexOpt: build rev does not match VM: %d vs %d\n",
|