HomeSort by relevance Sort by last modified time
    Searched refs:match (Results 426 - 450 of 736) sorted by null

<<11121314151617181920>>

  /dalvik/libcore/luni/src/main/java/java/io/
FilePermission.java 245 int match = impliesMask(p); local
246 return match != 0 && match == ((FilePermission) p).mask;
263 // Can't match any bits?
278 // Scan the length of p checking all match possibilities
  /external/webkit/WebKitTools/wx/build/
build_utils.py 161 match = re.search('^\* (.*)', branches, re.MULTILINE)
162 if match:
163 return ".%s" % match.group(1)
  /frameworks/base/libs/rs/
rsElement.cpp 90 // Look for an existing match.
98 // Match
114 // Look for an existing match.
118 bool match = true; local
123 match = false;
127 if (match) {
  /ndk/build/platforms/android-3/arch-arm/usr/include/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 *));
  /ndk/build/platforms/android-4/arch-arm/usr/include/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 *));
  /ndk/build/platforms/android-5/arch-arm/usr/include/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 *));
  /ndk/build/platforms/android-5/arch-x86/usr/include/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 *));
  /ndk/build/platforms/android-8/arch-arm/usr/include/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 *));
  /ndk/build/platforms/android-8/arch-x86/usr/include/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 *));
  /system/core/libcutils/
config_utils.c 41 cnode *node, *match = NULL; local
46 match = node;
48 return match;
  /external/iptables/
ip6tables.c 127 { "match", 1, 0, 'm' },
375 " --match -m match\n"
376 " extended match (may load extension)\n"
384 /*"[!] --fragment -f match second or further fragments only\n"*/
400 matchp->match->help();
759 /* First match of this type: */
782 maybe they specified target as match. */
787 "Couldn't load match `%s'\n",
791 "Couldn't load match `%s':%s\n"
1316 struct ip6tables_match *match = find_match(m->u.user.name, TRY_LOAD, NULL); local
    [all...]
iptables.c 127 { "match", 1, 0, 'm' },
466 " --match -m match\n"
467 " extended match (may load extension)\n"
475 "[!] --fragment -f match second or further fragments only\n"
491 matchp->match->help();
742 /* First match of this type: */
765 maybe they specified target as match. */
770 "Couldn't load match `%s'\n",
774 "Couldn't load match `%s':%s\n"
1382 struct iptables_match *match = find_match(m->u.user.name, TRY_LOAD, NULL); local
    [all...]
  /external/libxml2/
pattern.c 333 * @comp: the compiled match expression
338 * Add a step to an XSLT Compiled Match
369 * @comp: the compiled match expression
397 * @comp: the compiled match expression
948 * This is a namespace match
1069 * This is a namespace match
1136 * This is a namespace match
1856 int ret = 0, err = 0, final = 0, tmp, i, m, match, stepNr, desc; local
    [all...]
  /external/webkit/SunSpider/tests/parse-only/
jquery-1.3.2.js 50 var match = quickExpr.exec( selector );
52 // Verify a match, and that no context was specified for #id
53 if ( match && (match[1] || !context) ) {
56 if ( match[1] )
57 selector = jQuery.clean( [ match[1] ], context );
61 var elem = document.getElementById( match[3] );
65 if ( elem && elem.id != match[3] )
362 var pos = jQuery.expr.match.POS.test( selector ) ? jQuery(selector) : null,
794 if ( name.match( /float/i )
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
IntentFilterTest.java 189 IntentFilter filter = new Match(null, new String[] { "category1" }, null, null, null, null);
199 filter = new Match(null, new String[] { "category1", "category2" }, null, null, null, null);
217 method = "match",
223 method = "match",
229 IntentFilter filter = new Match(null, null, new String[] { "which1/what1" }, null, null,
242 filter = new Match(null, null, new String[] { "which1/what1", "which2/what2" }, null, null,
257 filter = new Match(null, null, new String[] { "which1/*" }, null, null, null);
271 filter = new Match(null, null, new String[] { "*/*" }, null, null, null);
348 IntentFilter filter = new Match(null, null, null, new String[] { "scheme1" }, null, null);
355 filter = new Match(null, null, null, new String[] { "scheme1", "scheme2" }, null, null)
    [all...]
  /external/skia/src/animator/
SkDisplayType.cpp 537 SkDisplayTypes SkDisplayType::Find(SkAnimateMaker* maker, const SkMemberInfo* match) {
541 if (info == match)
562 const SkMemberInfo* match = GetMembers(maker, result, NULL); local
563 if (match == inherited)
570 SkDisplayTypes SkDisplayType::GetType(SkAnimateMaker* maker, const char match[], size_t len ) {
571 int index = SkStrSearch(&gTypeNames[0].fName, kTypeNamesSize, match,
577 SkDisplayTypes result = (*extraPtr)->getType(match, len);
  /frameworks/base/core/java/android/provider/
Telephony.java 1299 Matcher match = NAME_ADDR_EMAIL_PATTERN.matcher(address); local
1319 Matcher match = Patterns.EMAIL_ADDRESS.matcher(s); local
1334 Matcher match = Patterns.PHONE.matcher(number); local
    [all...]
  /dalvik/vm/compiler/codegen/arm/
RallocUtil.c 780 bool match = true; local
781 match = match && (infoLo != NULL);
782 match = match && (infoHi != NULL);
784 match = match && (FPREG(infoLo->reg) == FPREG(infoHi->reg));
786 if (match && FPREG(infoLo->reg)) {
787 match &= ((infoLo->reg & 0x1) == 0);
788 match &= ((infoHi->reg - infoLo->reg) == 1)
    [all...]
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaProvider.java 110 "match as ar",
1604 int match = URI_MATCHER.match(uri); local
1684 int match = URI_MATCHER.match(uri); local
2156 int match = URI_MATCHER.match(uri); local
2203 int match = URI_MATCHER.match(uri); local
    [all...]
  /external/v8/test/mjsunit/
regexp.js 40 assertEquals(s.match(re).length, 1);
41 assertEquals(s.match(re)[0], String.fromCharCode(0));
46 var result = s.match(re);
56 result = s.match(re);
66 result = s.match(re);
77 result = s.match(re);
220 assertEquals(3, "a\n\rb".match(re).length);
228 // Test that we match the KJS behavior with regard to undefined constructor
231 // KJS actually shows this as '//'. Here we match the Firefox behavior (ie,
  /external/webkit/WebCore/inspector/front-end/
DOMAgent.js 489 var match = resourceURL.match(WebInspector.URLRegExp);
490 if (!match)
493 if (!this.cookieDomainMatchesResourceDomain(cookie.domain, match[2]))
495 var resourcePort = match[3] ? match[3] : undefined;
496 var resourcePath = match[4] ? match[4] : '/';
499 && (!cookie.secure || match[1].toLowerCase() === 'https'));
506 return !!resourceDomain.match(new RegExp("^([^\\.]+\\.)?" + cookieDomain.substring(1).escapeForRegExp() + "$"), "i")
    [all...]
AuditRules.js 73 var match = resource.url.match(regexp);
74 if (!match)
76 var domain = match[2];
219 var match = domain.match(WebInspector.URLRegExp);
220 if (!match)
222 if (!match[2].search(WebInspector.AuditRules.IPAddressRegexp))
224 violationDomains.push(match[2]);
423 if (rule.type !== 1 || rule.selectorText.match(pseudoSelectorRegexp)
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
LegacyApiSupport.java 782 final int match = sUriMatcher.match(uri); local
947 int match = sUriMatcher.match(uri); local
1526 final int match = sUriMatcher.match(uri); local
1613 final int match = sUriMatcher.match(uri); local
2010 int match = sUriMatcher.match(uri); local
    [all...]
  /cts/tools/utils/
buildCts.py 46 for match in pattern.finditer(content):
47 result[match.group(1)] = match.group(2)
  /external/icu4c/test/intltest/
fldset.cpp 271 UBool match = TRUE; local
281 match = FALSE;
283 //fprintf(stderr, "match failed: %s#%d=%d != %d\n",udbg_enumName(UDBG_UCalendarDateFields,i),i,cal->get((UCalendarDateFields)i,status), get((UCalendarDateFields)i));;
287 return match;

Completed in 1980 milliseconds

<<11121314151617181920>>