/external/doclava/src/com/google/doclava/parser/ |
JavaLexer.java | 248 match('0'); 287 match('0'); 399 match("0x"); 407 match("0X"); 508 match('.'); 558 match('.'); 746 match('.'); [all...] |
/external/iproute2/examples/diffserv/ |
Edge32-ca-u32 | 58 match ip tos 0x88 0xfc \ 62 match ip tos 0x88 0xfc \ 71 match ip tos 0x88 0xfc \ 75 match ip tos 0x88 0xfc \ 83 match ip tos 0x88 0xfc \ 87 match ip tos 0x88 0xfc \ 98 match ip tos 0x90 0xfc \ 102 match ip tos 0x90 0xfc \ 110 match ip tos 0x90 0xfc \ 114 match ip tos 0x90 0xfc [all...] |
/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...] |
/libcore/luni/src/test/java/tests/security/cert/ |
X509CertSelectorTest.java | 530 assertTrue("Any certificate should match in the case of null " 532 selector.match(cert1) && selector.match(cert2)); 642 assertTrue("The certificate should match the selection criteria.", 643 selector.match(cert_1)); 648 selector.match(cert_1)); [all...] |
X509CRLSelector2Test.java | 62 * specified issuers match the selector, and if not specified issuer does 63 * not match the selector. 73 assertTrue("The CRL should match the selection criteria.", selector 74 .match(crl1)); 75 assertFalse("The CRL should not match the selection criteria.", 76 selector.match(crl2)); 78 assertTrue("The CRL should match the selection criteria.", selector 79 .match(crl2)); 84 * issuers match the selector, and if not specified issuer does not match [all...] |
/packages/experimental/SELinux/CTS/src/ |
SELinux_CTS.py | 400 match = re.search(r'^attribute\s+(.+);', line) 401 if match: 402 declared_attribute = match.group(1) 409 match = re.search(r'^class\s([^\s]+)\s(.*$)', line) 410 if match: 411 declared_class = match.group(1) 418 file_obj.seek(-(len(match.group(2)) + 1), 1) 436 match = re.search(r'^common\s([^\s]+)(.*$)', line) 437 if match: 438 declared_common_class = match.group(1 [all...] |
/external/chromium_org/components/autofill/core/browser/ |
form_field.cc | 70 AutofillField** match) { 71 return ParseFieldSpecifics(scanner, pattern, MATCH_DEFAULT, match); 78 AutofillField** match) { 87 return MatchAndAdvance(scanner, pattern, match_type, match); 92 AutofillField** match) { 96 match); 114 AutofillField** match) { 116 if (FormField::Match(field, pattern, match_type)) { 117 if (match) 118 *match = field [all...] |
/external/chromium_org/components/query_parser/ |
snippet_unittest.cc | 88 // For testing, we'll compute the match positions manually instead of using 97 // to be more generic depending on how we deal with 'folding for match' 126 Snippet::MatchPositions::const_iterator match; local 128 for (match = snippet.matches().begin(); 129 match != snippet.matches().end(); ++match) { 130 star_snippet += snippet.text().substr(pos, match->first - pos); 132 star_snippet += snippet.text().substr(match->first, 133 match->second - match->first) [all...] |
/external/chromium_org/third_party/closure_linter/closure_linter/ |
scopeutil_test.py | 84 match = scopeutil.MatchAlias(statement) 85 self.assertEquals(expected_match, match) 164 match = scopeutil.MatchAlias(context) 165 if match: 166 matches.add(match) 182 match = scopeutil.MatchAlias(context) 183 if match: 184 unused_alias, symbol = match 186 matches.add(match)
|
/external/iptables/extensions/ |
libip6t_mh.c | 66 "mh match options:\n" 67 "[!] --mh-type type[:type] match mh type\n"); 82 unsigned int match = limit; local 88 if (match == limit || len == namelen) 89 match = i; 93 if (match != limit) { 94 return mh_names[match].type; 175 static void mh_print(const void *ip, const struct xt_entry_match *match, 178 const struct ip6t_mh *mhinfo = (struct ip6t_mh *)match->data; 189 static void mh_save(const void *ip, const struct xt_entry_match *match) [all...] |
/external/valgrind/main/none/tests/s390x/ |
dfptest.c | 21 int match; \ 27 : "=d" (match) : "f" (f), "a" (num) : "cc"); \ 28 match; \ 33 int match; \ 39 : "=d" (match) : "f" (f), "a" (num) : "cc"); \ 40 match; \ 45 int match; \ 51 : "=d" (match) : "f" (f), "a" (num) : "cc"); \ 52 match; \
|
/frameworks/base/core/java/android/animation/ |
StateListAnimator.java | 78 * @param specs The drawable state specs to match against 79 * @param animator The animator to run when the specs match 163 Tuple match = null; local 168 match = tuple; 172 if (match == mLastMatch) { 178 mLastMatch = match; 179 if (match != null) { 180 start(match); 184 private void start(Tuple match) { 185 match.mAnimator.setTarget(getTarget()) [all...] |
/frameworks/base/core/tests/coretests/src/android/app/activity/ |
LocalProvider.java | 89 int match = sURLMatcher.match(url); local 90 switch (match) { 118 int match = sURLMatcher.match(url); local 119 switch (match) { 133 int match = sURLMatcher.match(url); local 135 switch (match) {
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
tst-regex2.c | 126 puts ("\nregexec without REG_NOSUB did not find the correct match"); 144 int match; local 147 match = re_search (&rpbuf, string, len, 0, len, 149 if (match < 0) 155 if (match + 11 > len 156 || string + match >= strchr (string, 'R') 157 || strncmp (string + match, 162 puts ("\nre_search did not find the correct match"); 174 if (regs.start[0] != match || regs.end[0] != match + 11 [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/ |
SimpleCLexer.java | 55 match(';'); 75 match('('); 95 match(','); 115 match(')'); 135 match('{'); 155 match('}'); 175 match("for"); 196 match("int"); 217 match("char"); 238 match("void"); [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/ |
SimpleCLexer.java | 55 match(';'); 75 match('('); 95 match(','); 115 match(')'); 135 match('{'); 155 match('}'); 175 match("for"); 196 match("int"); 217 match("char"); 238 match("void"); [all...] |
/external/valgrind/main/tests/ |
s390x_features.c | 20 // cpu model, if specified, does not match the machine 203 unsigned long long match; local 210 match = (facilities & FAC_BIT(1)) && (facilities & FAC_BIT(2)); 212 match = facilities & FAC_BIT(0); 214 match = facilities & FAC_BIT(7); 216 match = (facilities & FAC_BIT(18)) && (facilities & FAC_BIT(19)); 218 match = facilities & FAC_BIT(21); 220 match = facilities & FAC_BIT(25); 222 match = facilities & FAC_BIT(34); 224 match = facilities & FAC_BIT(35) [all...] |
/frameworks/base/tools/aapt/tests/ |
ResourceFilter_test.cpp | 37 EXPECT_TRUE(filter.match(config)); 42 EXPECT_TRUE(filter.match(config)); 52 EXPECT_TRUE(filter.match(config)); 63 EXPECT_TRUE(filter.match(config)); 75 EXPECT_TRUE(filter.match(config)); 86 EXPECT_TRUE(filter.match(config)); 97 EXPECT_FALSE(filter.match(config)); 110 EXPECT_FALSE(filter.match(config)); 123 EXPECT_TRUE(filter.match(config)); 134 EXPECT_TRUE(filter.match(config)) [all...] |
/external/chromium_org/v8/test/webkit/ |
regexp-alternatives.js | 29 shouldBe('s1.match(/<((\\/([^>]+)>)|(([^>]+)>))/)', '["<p>","p>",undefined,undefined,"p>","p"]'); 30 shouldBe('s1.match(/<((ABC>)|(\\/([^>]+)>)|(([^>]+)>))/)', '["<p>","p>",undefined,undefined,undefined,"p>","p"]'); 31 shouldBe('s1.match(/<(a|\\/p|.+?)>/)', '["<p>","p"]'); 34 shouldBe('s1.match(/<((\\/([^>]+)>)|((([^>])+)>))/)', '["<p>","p>",undefined,undefined,"p>","p","p"]'); 35 shouldBe('s1.match(/<((ABC>)|(\\/([^>]+)>)|((([^>])+)>))/)', '["<p>","p>",undefined,undefined,undefined,"p>","p","p"]'); 36 shouldBe('s1.match(/<(a|\\/p|(.)+?)>/)', '["<p>","p","p"]'); 40 shouldBe('s2.match(/<((\\/([^>]+)>)|(([^>]+)>))\\5/)', '["<p>p","p>",undefined,undefined,"p>","p"]'); 41 shouldBe('s2.match(/<((ABC>)|(\\/([^>]+)>)|(([^>]+)>))\\6/)', '["<p>p","p>",undefined,undefined,undefined,"p>","p"]'); 42 shouldBe('s2.match(/<(a|\\/p|.+?)>\\1/)', '["<p>p","p"]');
|
/external/chromium_org/v8/tools/push-to-trunk/ |
git_recipes.py | 68 m = COMMIT_FOOTER_ENTRY_RE.match(line) 155 match = re.match(r"^## (.+)", line) 156 if match: return match.group(1) 242 if not result or not SHA1_RE.match(result): 246 match = ROLL_DEPS_GIT_SVN_ID_RE.match(line.strip()) 247 if match: 248 return match.group(1 [all...] |
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/ |
tokenizer.py | 116 match = matcher.regex.match(string, index) 118 if match: 125 # Add the match. 126 self.__AddToken(self._CreateToken(match.group(), matcher.type, line, 127 line_number, match.groupdict())) 129 # Change the mode to the correct one for after this match. 133 index = match.end() 139 # first character to the string of consecutive non match characters.
|
/external/chromium_org/chrome/browser/ui/omnibox/ |
omnibox_current_page_delegate_impl.cc | 69 const AutocompleteMatch& match, 75 size_t prefix_length = match.keyword.length() + 1; 79 base::UTF16ToUTF8(match.fill_into_edit.substr(prefix_length)), 102 const AutocompleteMatch& match) { 108 if (prerenderer && prerenderer->IsAllowed(match, web_contents)) { 117 match.destination_url,
|
/external/chromium_org/third_party/closure_linter/closure_linter/common/ |
tokenizer.py | 117 match = matcher.regex.match(string, index) 119 if match: 126 # Add the match. 127 self.__AddToken(self._CreateToken(match.group(), matcher.type, line, 128 line_number, match.groupdict())) 130 # Change the mode to the correct one for after this match. 134 index = match.end() 140 # first character to the string of consecutive non match characters.
|
/external/chromium_org/third_party/skia/tests/ |
ReadWriteAlphaTest.cpp | 70 // make sure the original & read back versions match 71 bool match = true; local 76 match = false; 81 REPORTER_ASSERT(reporter, match); 99 match = true; 104 match = false; 109 REPORTER_ASSERT(reporter, match);
|