/prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/netfilter/ |
xt_policy.h | 67 struct xt_policy_spec match; member in struct:xt_policy_elem
|
/prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/linux/netfilter/ |
xt_policy.h | 67 struct xt_policy_spec match; member in struct:xt_policy_elem
|
/prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/linux/netfilter/ |
xt_policy.h | 67 struct xt_policy_spec match; member in struct:xt_policy_elem
|
/prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/linux/netfilter/ |
xt_policy.h | 67 struct xt_policy_spec match; member in struct:xt_policy_elem
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/ |
fixer_base.py | 40 keep_line_order = False # For the bottom matcher: match with the 65 self.{pattern,PATTERN} in .match(). 80 def match(self, node): member in class:BaseFix 81 """Returns match for a given parse tree node. 90 return self.pattern.match(node, results) and results 97 results: a dict mapping symbolic names to part of the match.
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
re.py | 26 regular expressions; they simply match themselves. You can 35 Greedy means that it will match as many repetitions as possible. 44 "|" A|B, creates an RE that will match either A or B. 53 (?!...) Matches if ... doesn't match next. 61 resulting RE will match the second character. 72 With LOCALE, it will match the set [0-9_] plus characters defined 78 match Match a regular expression pattern to the beginning of a string. 84 finditer Return an iterator yielding a match object for each match 134 def match(pattern, string, flags=0): function [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/ |
fixer_base.py | 40 keep_line_order = False # For the bottom matcher: match with the 65 self.{pattern,PATTERN} in .match(). 80 def match(self, node): member in class:BaseFix 81 """Returns match for a given parse tree node. 90 return self.pattern.match(node, results) and results 97 results: a dict mapping symbolic names to part of the match.
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
re.py | 26 regular expressions; they simply match themselves. You can 35 Greedy means that it will match as many repetitions as possible. 44 "|" A|B, creates an RE that will match either A or B. 53 (?!...) Matches if ... doesn't match next. 61 resulting RE will match the second character. 72 With LOCALE, it will match the set [0-9_] plus characters defined 78 match Match a regular expression pattern to the beginning of a string. 84 finditer Return an iterator yielding a match object for each match 134 def match(pattern, string, flags=0): function [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/ |
policygen.py | 248 for match in ml.all(): 249 ifcall = call_interface(match.interface, ml.av) 250 s.append(' %s # [%d]' % (ifcall.to_string(), match.dist)) 337 raw_av = self.match(avs) 359 def match(self, avs): member in class:InterfaceGenerator
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/sepolgen/ |
policygen.py | 248 for match in ml.all(): 249 ifcall = call_interface(match.interface, ml.av) 250 s.append(' %s # [%d]' % (ifcall.to_string(), match.dist)) 337 raw_av = self.match(avs) 359 def match(self, avs): member in class:InterfaceGenerator
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/ |
MoveHandler.java | 211 List<Match> horizontalMatches = findClosest(edge, mHorizontalEdges); 216 List<Match> verticalMatches = findClosest(edge, mVerticalEdges); 220 // Match center 226 // Match baseline 249 Match match = pickBestMatch(mHorizontalSuggestions); local 250 if (match != null) { 251 if (mHorizontalDeps.contains(match.edge.node)) { 252 match.cycle = true; 262 snapHorizontal(match.with, match.edge.at, mBounds) [all...] |
ResizeHandler.java | 218 Match match = pickBestMatch(mHorizontalSuggestions); local 219 if (match != null 220 && (!mSnap || Math.abs(match.delta) < BaseLayoutRule.getMaxMatchDistance())) { 221 if (mHorizontalDeps.contains(match.edge.node)) { 222 match.cycle = true; 225 snapHorizontal(hEdge, match.edge.at, newBounds); 228 mCurrentTopMatch = match; 230 mCurrentBottomMatch = match; 234 mCurrentTopMatch = match; 242 Match match = pickBestMatch(mVerticalSuggestions); local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/ |
ValueCompleter.java | 117 for (String match : matches) { 118 proposals.add(new ContentProposal(match)); 154 String match; local 156 match = prepend + value; 158 match = value; 160 proposals.add(new ContentProposal(match));
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/ |
AndroidXmlCharacterMatcherTest.java | 119 IRegion match = matcher.match(document, caretPosBefore); local 120 assertNotNull(match); 125 int caretPosAfter = match.getOffset() - index;
|
/system/bt/btif/src/ |
btif_gatt_util.c | 55 int match = 0; local 64 ++match; 71 if (match == 12) 73 if (match == 14)
|
/system/core/libcutils/ |
config_utils.c | 41 cnode *node, *match = NULL; local 46 match = node; 48 return match;
|
/system/core/liblog/tests/ |
benchmark_main.cpp | 85 // see if any of our benchmarks match. 92 int match = regexec(&re, b->Name(), 0, NULL, 0); local 94 if (match != REG_NOMATCH) {
|
/external/jetty/src/java/org/eclipse/jetty/webapp/ |
WebInfConfiguration.java | 82 //match any of the container jars 113 containerJarNameMatcher.match(containerPattern, containerUris, false); 140 webInfJarNameMatcher.match(webInfPattern, uris, true); //null is inclusive, no pattern == all jars match
|
/art/compiler/dex/quick/ |
quick_compiler.cc | 660 bool match = use_match && (compiler_flip_match ^ local 662 if (!use_match || match) {
|
/bionic/libc/kernel/uapi/linux/netfilter/ |
x_tables.h | 39 struct xt_match * match; member in struct:xt_entry_match::__anon667::__anon669
|
/bionic/libc/upstream-freebsd/lib/libc/stdlib/ |
getopt_long.c | 189 * Returns -1 if short_too is set and the option does not match long_options. 200 int i, match, exact_match, second_partial_match; local 219 match = -1; 239 /* exact match */ 240 match = i; 246 * a partial match of a single character. 251 if (match == -1) /* first partial match */ 252 match = i; 255 long_options[match].has_arg | [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/ |
TestResultsProvider.java | 125 int match = URI_MATCHER.match(uri); local 126 switch (match) { 161 int match = URI_MATCHER.match(uri); local 162 switch (match) {
|
/developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/ |
SyncAdapter.java | 240 FeedParser.Entry match = entryMap.get(entryId); local 241 if (match != null) { 247 if ((match.title != null && !match.title.equals(title)) || 248 (match.link != null && !match.link.equals(link)) || 249 (match.published != published)) { 253 .withValue(FeedContract.Entry.COLUMN_NAME_TITLE, match.title) 254 .withValue(FeedContract.Entry.COLUMN_NAME_LINK, match.link) 255 .withValue(FeedContract.Entry.COLUMN_NAME_PUBLISHED, match.published [all...] |
/developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/provider/ |
FeedProvider.java | 74 final int match = sUriMatcher.match(uri); local 75 switch (match) { 96 int uriMatch = sUriMatcher.match(uri); 125 final int match = sUriMatcher.match(uri); local 127 switch (match) { 151 final int match = sUriMatcher.match(uri); local 153 switch (match) { 183 final int match = sUriMatcher.match(uri); local [all...] |
/developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/ |
SyncAdapter.java | 240 FeedParser.Entry match = entryMap.get(entryId); local 241 if (match != null) { 247 if ((match.title != null && !match.title.equals(title)) || 248 (match.link != null && !match.link.equals(link)) || 249 (match.published != published)) { 253 .withValue(FeedContract.Entry.COLUMN_NAME_TITLE, match.title) 254 .withValue(FeedContract.Entry.COLUMN_NAME_LINK, match.link) 255 .withValue(FeedContract.Entry.COLUMN_NAME_PUBLISHED, match.published [all...] |