HomeSort by relevance Sort by last modified time
    Searched refs:match (Results 201 - 225 of 1303) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
regress-165353.js 61 actualmatch = string.match(pattern);
67 actualmatch = string.match(pattern);
73 actualmatch = string.match(pattern);
81 actualmatch = string.match(pattern);
88 actualmatch = string.match(pattern);
  /frameworks/base/tools/aapt/
ResourceFilter.cpp 51 // if it's a locale with a region, also match an unmodified locale of the
73 ResourceFilter::match(int axis, uint32_t value) const function in class:ResourceFilter
89 ResourceFilter::match(int axis, const ResTable_config& config) const function in class:ResourceFilter
91 return match(axis, AaptGroupEntry::getConfigValueForAxis(config, axis));
95 ResourceFilter::match(const ResTable_config& config) const function in class:ResourceFilter
98 if (!match(i, AaptGroupEntry::getConfigValueForAxis(config, i))) {
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/
PhoneNumberMatcher.java 74 * Pattern to check that brackets match. Opening brackets should be closed within a phone number.
82 * else (such as a neighbouring zip-code). If white-space is found, continues to match all
173 /** The last successful match, null unless in {@link State#READY}. */
223 // Check the state and find the next match as a side-effect if necessary.
237 * that represents a phone number. Returns the next match, null if none was found.
240 * @return the phone number match found, null if none can be found
253 PhoneNumberMatch match = extractMatch(candidate, start); local
254 if (match != null) {
255 return match;
266 * Trims away any characters after the first match of {@code pattern} in {@code candidate}
315 PhoneNumberMatch match = parseAndVerify(rawString, offset); local
343 PhoneNumberMatch match = parseAndVerify(firstGroupOnly.toString(), offset); local
    [all...]
  /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 193 List<Match> horizontalMatches = findClosest(edge, mHorizontalEdges);
198 List<Match> verticalMatches = findClosest(edge, mVerticalEdges);
202 // Match center
208 // Match baseline
231 Match match = pickBestMatch(mHorizontalSuggestions); local
232 if (match != null) {
233 if (mHorizontalDeps.contains(match.edge.node)) {
234 match.cycle = true;
244 snapHorizontal(match.with, match.edge.at, mBounds)
    [all...]
ResizeHandler.java 201 Match match = pickBestMatch(mHorizontalSuggestions); local
202 if (match != null
203 && (!mSnap || Math.abs(match.delta) < BaseLayoutRule.getMaxMatchDistance())) {
204 if (mHorizontalDeps.contains(match.edge.node)) {
205 match.cycle = true;
208 snapHorizontal(hEdge, match.edge.at, newBounds);
211 mCurrentTopMatch = match;
213 mCurrentBottomMatch = match;
217 mCurrentTopMatch = match;
225 Match match = pickBestMatch(mVerticalSuggestions); local
    [all...]
  /libcore/luni/src/test/java/tests/security/cert/
X509CertSelectorTest.java 564 assertTrue("Any certificate should match in the case of null "
566 .match(cert1)
567 && selector.match(cert2));
675 assertTrue("The certificate should match the selection criteria.",
676 selector.match(cert_1));
680 + "of internal object.", 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...]
  /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...]
libxt_multiport.c 25 "multiport match options:\n"
28 " match source port(s)\n"
31 " match destination port(s)\n"
33 " match both source and destination port(s)\n"
40 "multiport match options:\n"
43 " match source port(s)\n"
46 " match destination port(s)\n"
48 " match both source and destination port(s)\n");
281 __multiport_print(const struct xt_entry_match *match, int numeric,
285 = (const struct xt_multiport *)match->data
    [all...]
libxt_connlimit.c 23 "connlimit match options:\n"
24 " --connlimit-upto n match if the number of existing connections is 0..n\n"
25 " --connlimit-above n match if the number of existing connections is >n\n"
49 static void connlimit_init(struct xt_entry_match *match)
51 struct xt_connlimit_info *info = (void *)match->data;
60 const unsigned int revision = (*cb->match)->u.user.revision;
129 const struct xt_entry_match *match, int numeric)
131 const struct xt_connlimit_info *info = (const void *)match->data;
140 const struct xt_entry_match *match, int numeric)
142 const struct xt_connlimit_info *info = (const void *)match->data
    [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/chromium/chrome/browser/bookmarks/
bookmark_index.cc 19 // Used when finding the set of bookmarks that match a query. Each match
22 struct BookmarkIndex::Match {
27 // when we match only one term, and is filled in when we get more than one
45 BookmarkIndex::Match::nodes_begin() const {
49 BookmarkIndex::NodeSet::const_iterator BookmarkIndex::Match::nodes_end() const {
93 // We use a QueryParser to fill in match positions for us. It's not the most
127 const Match& match,
130 for (NodeSet::const_iterator i = match.nodes_begin()
171 Match match; local
183 Match match; local
206 Match* match = &((*matches)[i]); local
225 const Match& match = current_matches[i]; local
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
Color.js 302 var match = this.value.match(simple);
303 if (match) {
306 if (match[1]) { // hex
307 var hex = match[1].toUpperCase();
315 } else if (match[2]) { // rgb
317 var rgb = match[2].split(/\s*,\s*/);
320 } else if (match[3]) { // nickname
321 var nickname = match[3].toLowerCase();
327 } else if (match[4]) { // hs
    [all...]
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit.cc 103 // Weird edge case to match other browsers: if the edit is empty, revert to
131 AutocompleteMatch match; local
132 GetInfoForCurrentText(&match, NULL);
133 return match;
248 AutocompleteMatch match; local
249 GetInfoForCurrentText(&match, NULL);
250 *url = match.destination_url;
288 // match. This would make the autocompleted text disappear, leaving our user
309 AutocompleteMatch match;
310 GetInfoForCurrentText(&match, NULL)
315 AutocompleteMatch match; local
434 AutocompleteMatch match; local
513 const AutocompleteMatch& match = local
605 AutocompleteMatch match; local
    [all...]
autocomplete_classifier.cc 23 AutocompleteMatch* match,
38 *match = *result.default_match();
  /external/llvm/test/lib/
llvm.exp 160 if {[regexp {END.[[:space:]]*$} $line match endofscript]} {
164 } elseif {[regexp {RUN: *(.+)(\\)$} $line match oneline suffix]} {
169 } elseif {[regexp {RUN: *(.+)$} $line match oneline suffix]} {
177 } elseif {[regexp {PR([0-9]+)} $line match prnum]} {
184 } elseif {[regexp {XFAIL:[ *](.+)} $line match targets]} {
193 } elseif { [regexp $target $target_triplet match] } {
199 } elseif {[regexp {XTARGET:[ *](.+)} $line match targets]} {
204 if { [regexp {\*} $target match] } {
207 } elseif { [regexp $target $target_triplet match] } {
258 if { [regexp $tgtName $target match] } {
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/charset/
OldCharset_SingleByteAbstractTest.java 71 assertEqualChars2("Decoded charactes must match!",
75 // assertTrue("Decoded charactes (REPLACEed ones INCLUSIVE) must match!",
78 // assertEqualChars("Decoded charactes (REPLACEed ones INCLUSIVE) must match!",
82 // assertEquals("Decoded charactes must match!",
95 // assertEqualChars("Decoded charactes must match!",
98 //// assertEquals("Decoded charactes must match!",
110 assertEqualBytes2("Encoded bytes must match!", allBytes, outputBB.array(), allChars);
122 //// System.out.format("Match index %d: %d = %d\n",
130 boolean match = true;
151 match = false
    [all...]
  /external/icu4c/common/
ucnv_ext.c 108 * or if the match length fits with the current converter state
110 #define UCNV_EXT_TO_U_VERIFY_SISO_MATCH(sisoState, match) \
111 ((sisoState)<0 || ((sisoState)==0) == (match==1))
132 return 0; /* no extension data, no match */
145 return 0; /* no match of a DBCS sequence in SBCS mode */
158 /* match input units until there is a full match or the input is consumed */
172 /* remember longest match so far */
177 /* match pre[] then src[] */
183 /* all input consumed, partial match */
283 int32_t match; local
333 int32_t match; local
371 int32_t match, length; local
752 int32_t match; local
811 int32_t match; local
865 int32_t match; local
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_omnibox_apitest.cc 42 AutocompleteMatch match = result.match_at(i); local
43 std::string provider_name = match.provider->name();
45 UTF16ToUTF8(match.contents).c_str(),
118 AutocompleteMatch match = result.match_at(0); local
119 EXPECT_EQ(AutocompleteMatch::SEARCH_WHAT_YOU_TYPED, match.type);
120 EXPECT_FALSE(match.deletable);
122 match = result.match_at(1);
123 ASSERT_TRUE(match.template_url);
124 EXPECT_TRUE(match.template_url->IsExtensionKeyword());
125 EXPECT_EQ(ASCIIToUTF16("keyword"), match.template_url->keyword())
188 AutocompleteMatch match = result.match_at(4); local
    [all...]
  /device/moto/stingray/recovery/
Android.mk 10 # should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk
  /device/samsung/crespo/recovery/
Android.mk 10 # should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk
  /device/samsung/toro/recovery/
Android.mk 13 # should match TARGET_RECOVERY_UPDATER_LIBS set in BoardConfig.mk

Completed in 583 milliseconds

1 2 3 4 5 6 7 891011>>