/external/iptables/extensions/ |
libip6t_owner.c | 19 "OWNER match v%s options:\n" 20 "[!] --uid-owner userid Match local uid\n" 21 "[!] --gid-owner groupid Match local gid\n" 22 "[!] --pid-owner processid Match local pid\n" 23 "[!] --sid-owner sessionid Match local sid\n" 24 "[!] --cmd-owner name Match local command name\n" 29 "OWNER match v%s options:\n" 30 "[!] --uid-owner userid Match local uid\n" 31 "[!] --gid-owner groupid Match local gid\n" 32 "[!] --pid-owner processid Match local pid\n [all...] |
libipt_owner.c | 19 "OWNER match v%s options:\n" 20 "[!] --uid-owner userid Match local uid\n" 21 "[!] --gid-owner groupid Match local gid\n" 22 "[!] --pid-owner processid Match local pid\n" 23 "[!] --sid-owner sessionid Match local sid\n" 24 "[!] --cmd-owner name Match local command name\n" 30 "OWNER match v%s options:\n" 31 "[!] --uid-owner userid Match local uid\n" 32 "[!] --gid-owner groupid Match local gid\n" 33 "[!] --pid-owner processid Match local pid\n [all...] |
/device/htc/passion/recovery/ |
Android.mk | 12 # should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk
|
/external/icu4c/test/perf/strsrchperf/ |
strsrchperf.h | 119 int32_t match; local 121 match = usearch_first(srch, status); 122 while (match != USEARCH_DONE) { 123 match = usearch_next(srch, status); 128 int32_t match; local 130 match = usearch_last(srch, status); 131 while (match != USEARCH_DONE) { 132 match = usearch_previous(srch, status);
|
/external/oprofile/ |
opimport_pull | 104 match = pattern.search(line) 105 leading_dir = match.group(1) 106 middle_part = match.group(2) 107 file_name = match.group(3)
|
/external/webkit/JavaScriptCore/tests/mozilla/js1_2/String/ |
match.js | 23 Filename: match.js 24 Description: 'This tests the new String object method: match' 33 var TITLE = 'String:match'; 35 writeHeaderToLog('Executing script: match.js'); 44 testcases[count++] = new TestCase( SECTION, "aString.match(/is.*test/) ", String(["is is a test"]), String(aString.match(/is.*test/))); 45 testcases[count++] = new TestCase( SECTION, "aString.match(/s.*s/) ", String(["s is a test s"]), String(aString.match(/s.*s/)));
|
/bionic/libc/kernel/common/linux/ |
attribute_container.h | 25 int (*match)(struct attribute_container *, struct device *); member in struct:attribute_container
|
/external/apache-http/src/org/apache/http/cookie/ |
CookieSpec.java | 97 boolean match(Cookie cookie, CookieOrigin origin); method in interface:CookieSpec
|
/external/apache-http/src/org/apache/http/impl/cookie/ |
AbstractCookieAttributeHandler.java | 45 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:AbstractCookieAttributeHandler 46 // Always match
|
/external/icu4c/test/cintltst/ |
ucsdetst.c | 125 const UCharsetMatch *match; local 137 match = ucsdet_detect(csd, &status); 139 if (match == NULL) { 144 dLength = ucsdet_getUChars(match, detected, sLength, &status); 171 const UCharsetMatch *match; local 176 match = ucsdet_detect(csd, &status); 178 if (match == NULL) { 183 name = ucsdet_getName(match, &status); 184 conf = ucsdet_getConfidence(match, &status); 196 match = ucsdet_detect(csd, &status) 234 const UCharsetMatch *match; local 287 const UCharsetMatch *match; local 392 const UCharsetMatch *match; local 477 const UCharsetMatch *match; local 555 const UCharsetMatch *match; local [all...] |
/ndk/build/platforms/android-3/arch-arm/usr/include/linux/ |
attribute_container.h | 25 int (*match)(struct attribute_container *, struct device *); member in struct:attribute_container
|
/ndk/build/platforms/android-4/arch-arm/usr/include/linux/ |
attribute_container.h | 25 int (*match)(struct attribute_container *, struct device *); member in struct:attribute_container
|
/ndk/build/platforms/android-5/arch-arm/usr/include/linux/ |
attribute_container.h | 25 int (*match)(struct attribute_container *, struct device *); member in struct:attribute_container
|
/ndk/build/platforms/android-5/arch-x86/usr/include/linux/ |
attribute_container.h | 25 int (*match)(struct attribute_container *, struct device *); member in struct:attribute_container
|
/ndk/build/platforms/android-8/arch-arm/usr/include/linux/ |
attribute_container.h | 25 int (*match)(struct attribute_container *, struct device *); member in struct:attribute_container
|
/ndk/build/platforms/android-8/arch-x86/usr/include/linux/ |
attribute_container.h | 25 int (*match)(struct attribute_container *, struct device *); member in struct:attribute_container
|
/external/skia/src/animator/ |
SkDisplayList.h | 46 int findGroup(SkDrawable* match, SkTDDrawableArray** list, 60 static int SearchForMatch(SkDrawable* match, SkTDDrawableArray** list, 62 static bool SearchGroupForMatch(SkDrawable* draw, SkDrawable* match,
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma_3/RegExp/ |
regress-123437.js | 63 actualmatch = string.match(pattern); 70 actualmatch = string.match(pattern); 77 actualmatch = string.match(pattern);
|
regress-76683.js | 50 actualmatch = string.match(pattern); 56 actualmatch = string.match(pattern); 63 actualmatch = string.match(pattern);
|
/external/webkit/JavaScriptCore/tests/mozilla/js1_2/regexp/ |
control_characters.js | 42 // '?O? ?:i??'.match(new RegExp('.+')) 43 testcases[count++] = new TestCase ( SECTION, "'?O? ?:i??'.match(new RegExp('.+'))", 44 String(['?O? ?:i??']), String('?O? ?:i??'.match(new RegExp('.+')))); 46 // string1.match(new RegExp(string1)) 48 testcases[count++] = new TestCase ( SECTION, "string1 = " + string1 + " string1.match(string1)", 49 String([string1]), String(string1.match(string1))); 54 testcases[count++] = new TestCase ( SECTION, "string1 = " + string1 + " string1.match(string1)", 55 String([string1]), String(string1.match(string1)));
|
/frameworks/base/core/java/android/text/method/ |
DialerKeyListener.java | 65 int match = super.lookup(event, content); local 67 if (match != 0) { 68 return match;
|
/frameworks/base/core/java/android/util/ |
DebugUtils.java | 58 * @param object any object to match against the ANDROID_OBJECT_FILTER 64 boolean match = false; 88 match |= (value != null ? 101 return match;
|
/packages/providers/DrmProvider/src/com/android/providers/drm/ |
DrmProvider.java | 145 switch (URI_MATCHER.match(uri)) { 188 switch (URI_MATCHER.match(url)) { 233 int match = URI_MATCHER.match(uri); local 241 switch (match) { 281 private void getTableAndWhere(Uri uri, int match, String userWhere, 284 switch (match) { 349 int match = URI_MATCHER.match(uri); local 353 getTableAndWhere(uri, match, userWhere, sGetTableAndWhereParam) 375 int match = URI_MATCHER.match(uri); local [all...] |
/external/iproute2/include/ |
iptables.h | 31 struct iptables_match *match; member in struct:iptables_rule_match 41 /* Revision of match (0 by default). */ 46 /* Size of match data. */ 49 /* Size of match data relevent for userspace comparison purposes */ 55 /* Initialize the match. */ 63 struct ipt_entry_match **match); 68 /* Prints out the match iff non-NULL: put space at end */ 70 const struct ipt_entry_match *match, int numeric); 72 /* Saves the match info in parsable form to stdout. */ 74 const struct ipt_entry_match *match); [all...] |
/external/iptables/include/ |
ip6tables.h | 37 struct ip6tables_match *match; member in struct:ip6tables_rule_match 51 /* Revision of match (0 by default). */ 56 /* Size of match data. */ 59 /* Size of match data relevent for userspace comparison purposes */ 65 /* Initialize the match. */ 73 struct ip6t_entry_match **match); 78 /* Prints out the match iff non-NULL: put space at end */ 80 const struct ip6t_entry_match *match, int numeric); 84 const struct ip6t_entry_match *match); 170 extern struct ip6tables_match *find_match(const char *name, enum ip6t_tryload, struct ip6tables_rule_match **match); [all...] |