/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/ |
headlesscodemirror.js | 18 eat: function(match) { 20 if (typeof match == "string") var ok = ch == match; 21 else var ok = ch && (match.test ? match.test(ch) : match(ch)); 24 eatWhile: function(match) { 26 while (this.eat(match)){} 42 match: function(pattern, consume, caseInsensitive) { 51 var match = this.string.slice(this.pos).match(pattern) [all...] |
/external/chromium_org/third_party/android_platform/development/scripts/ |
stack_core.py | 116 match = trace_line.match(line) 117 if match: 118 address, lib = match.group('address', 'lib') 120 match = value_line.match(line) 121 if match and not code_line.match(line): 122 (_0, _1, address, lib, _2, _3) = match.groups() 133 # should be removed or the regular expresssions will fail to match [all...] |
/external/chromium_org/tools/gyp/test/variables/filelist/ |
gyptest-filelist-golden.py | 38 if not test.match(contents, expect): 45 if not test.match(contents, expect):
|
/external/clang/tools/clang-format/ |
clang-format-diff.py | 96 match = re.search('^\+\+\+\ (.*?/){%s}(\S*)' % args.p, line) 97 if match: 98 filename = match.group(2) 102 match = re.search('^@@.*\+(\d+)(,(\d+))?', line) 103 if match: 105 if match.group(3): 106 line_count = int(match.group(3)) 107 ranges.append((filename, int(match.group(1)), line_count))
|
/external/iproute2/include/ |
xt-internal.h | 22 /* optname to check revision support of match */ 25 /* optname to check revision support of match */ 38 struct xtables_match *match; member in struct:xtables_rule_match 61 struct xtables_rule_match **match);
|
/external/iptables/extensions/ |
libxt_connmark.c | 40 "connmark match options:\n" 41 "[!] --mark value[/mask] Match ctmark value with optional mask\n"); 81 connmark_print(const void *ip, const struct xt_entry_match *match, int numeric) 83 const struct xt_connmark_info *info = (const void *)match->data; 85 printf(" CONNMARK match "); 92 connmark_mt_print(const void *ip, const struct xt_entry_match *match, int numeric) 94 const struct xt_connmark_mtinfo1 *info = (const void *)match->data; 96 printf(" connmark match "); 102 static void connmark_save(const void *ip, const struct xt_entry_match *match) 104 const struct xt_connmark_info *info = (const void *)match->data [all...] |
libxt_mark.c | 18 "mark match options:\n" 19 "[!] --mark value[/mask] Match nfmark value with optional mask\n"); 59 mark_mt_print(const void *ip, const struct xt_entry_match *match, int numeric) 61 const struct xt_mark_mtinfo1 *info = (const void *)match->data; 63 printf(" mark match"); 70 mark_print(const void *ip, const struct xt_entry_match *match, int numeric) 72 const struct xt_mark_info *info = (const void *)match->data; 74 printf(" MARK match"); 82 static void mark_mt_save(const void *ip, const struct xt_entry_match *match) 84 const struct xt_mark_mtinfo1 *info = (const void *)match->data [all...] |
/external/linux-tools-perf/scripts/perl/bin/ |
rwtop-report | 7 if expr match "$i" "-" > /dev/null ; then
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
CallIDParser.java | 66 this.lexer.match(TokenTypes.CALL_ID); 68 this.lexer.match(':');
|
/external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/ |
X509CertSelectorTest.java | 450 * Tests if any certificates match in the case of null criteria, 451 * if [not]proper certificates [do not]match 459 assertTrue("Any certificates should match in the case of null " 461 selector.match(cert_1) && selector.match(cert_2)); 463 assertTrue("The certificate should match the selection criteria.", 464 selector.match(cert_1)); 465 assertFalse("The certificate should not match the selection criteria.", 466 selector.match(cert_2)); 468 assertTrue("The certificate should match the selection criteria." [all...] |
/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...] |
/external/chromium_org/chrome/browser/autocomplete/ |
shortcuts_provider.cc | 42 bool operator()(const AutocompleteMatch& match) const { 43 return match.destination_url == url_; 54 // and use that match if the default list didn't have a match or the 55 // default list's match was shorter than it could've been. 113 void ShortcutsProvider::DeleteMatch(const AutocompleteMatch& match) { 114 // Copy the URL since DeleteMatchesWithURLs() will invalidate |match|. 115 GURL url(match.destination_url); 117 // When a user deletes a match, he probably means for the URL to disappear out 126 // NOTE: |match| is now dead [all...] |
autocomplete_provider_unittest.cc | 128 AutocompleteMatch match(this, relevance_ - i, false, type); 130 match.fill_into_edit = prefix_ + UTF8ToUTF16(base::IntToString(i)); 131 match.destination_url = GURL(UTF16ToUTF8(match.fill_into_edit)); 132 match.allowed_to_be_default_match = true; 134 match.contents = match.fill_into_edit; 135 match.contents_class.push_back( 137 match.description = match.fill_into_edit 354 AutocompleteMatch match; local [all...] |
autocomplete_controller.cc | 45 // Converts the given match to a type (and possibly subtype) based on the AQS 49 const AutocompleteMatch::Type& match, size_t* type, size_t* subtype) { 55 switch (match) { 140 bool IsTrivialAutocompletion(const AutocompleteMatch& match) { 141 return match.type == AutocompleteMatchType::SEARCH_WHAT_YOU_TYPED || 142 match.type == AutocompleteMatchType::URL_WHAT_YOU_TYPED || 143 match.type == AutocompleteMatchType::SEARCH_OTHER_ENGINE; 146 // Whether this autocomplete match type supports custom descriptions. 147 bool AutocompleteMatchHasCustomDescription(const AutocompleteMatch& match) { 148 return match.type == AutocompleteMatchType::SEARCH_SUGGEST_ENTITY | 599 AutocompleteMatch* match = result->match_at(index); local [all...] |
/external/chromium_org/third_party/skia/src/animator/ |
SkDisplayList.cpp | 53 int SkDisplayList::findGroup(SkDrawable* match, SkTDDrawableArray** list, 58 return SearchForMatch(match, list, parent, found, grandList); 71 int SkDisplayList::SearchForMatch(SkDrawable* match, SkTDDrawableArray** list, 76 if (draw == match) 80 if (apply->scope == match) 82 if (apply->scope->isGroup() && SearchGroupForMatch(apply->scope, match, list, parent, found, grandList, index)) 87 if (scope == match) 93 if (draw->isGroup() && SearchGroupForMatch(draw, match, list, parent, found, grandList, index)) 100 bool SkDisplayList::SearchGroupForMatch(SkDrawable* draw, SkDrawable* match, SkTDDrawableArray** list, 103 if (group->getOriginal() == match) [all...] |
/external/skia/src/animator/ |
SkDisplayList.cpp | 53 int SkDisplayList::findGroup(SkDrawable* match, SkTDDrawableArray** list, 58 return SearchForMatch(match, list, parent, found, grandList); 71 int SkDisplayList::SearchForMatch(SkDrawable* match, SkTDDrawableArray** list, 76 if (draw == match) 80 if (apply->scope == match) 82 if (apply->scope->isGroup() && SearchGroupForMatch(apply->scope, match, list, parent, found, grandList, index)) 87 if (scope == match) 93 if (draw->isGroup() && SearchGroupForMatch(draw, match, list, parent, found, grandList, index)) 100 bool SkDisplayList::SearchGroupForMatch(SkDrawable* draw, SkDrawable* match, SkTDDrawableArray** list, 103 if (group->getOriginal() == match) [all...] |
/frameworks/base/core/java/android/os/ |
UEventObserver.java | 28 * startObserving() with a match string. The UEvent thread will then call your 29 * onUEvent() method when a UEvent occurs that contains your match string.<p> 49 private static native void nativeAddMatch(String match); 50 private static native void nativeRemoveMatch(String match); 90 * @param match A substring of the UEvent to match. Try to be as specific 96 public final void startObserving(String match) { 97 if (match == null || match.isEmpty()) { 98 throw new IllegalArgumentException("match substring must be non-empty") 230 final String match = (String)mKeysAndObservers.remove(i); local [all...] |
/external/chromium_org/chrome/browser/ui/omnibox/ |
omnibox_edit_model.cc | 107 // between focusing and opening an omnibox match. 110 // Split the percentage match histograms into buckets based on the width of the 225 // Weird edge case to match other browsers: if the edit is empty, revert to 273 // If we have a valid match use it. Otherwise get one for the current text. 274 AutocompleteMatch match = omnibox_controller_->current_match(); local 276 if (!match.destination_url.is_valid()) { 277 GetInfoForCurrentText(&match, alternate_nav_url); 280 autocomplete_controller()->input(), match); 282 return match; 467 AutocompleteMatch match; local 594 AutocompleteMatch match; local 602 AutocompleteMatch match; local 611 AutocompleteMatch match = CurrentMatch(&alternate_nav_url); local 960 const AutocompleteMatch& match = CurrentMatch(NULL); local 1232 const AutocompleteMatch& match = omnibox_controller_->current_match(); local [all...] |
/frameworks/base/wifi/java/android/net/wifi/p2p/ |
WifiP2pDevice.java | 61 // These definitions match the ones in wpa_supplicant 173 Matcher match; local 185 match = twoTokenPattern.matcher(string); 186 if (!match.find()) { 189 deviceAddress = match.group(2); 192 match = threeTokenPattern.matcher(string); 193 if (!match.find()) { 196 deviceAddress = match.group(1); 199 match = detailedDevicePattern.matcher(string); 200 if (!match.find()) [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/chrome_search/ |
background.js | 26 entry.getElementsByTagName("match")[0].getAttribute("lineNumber"); 36 // contains the first match. We can ocassionally fail to find a single 39 for (var j = 0, match; match = matches[j]; j++) { 40 if (match.indexOf('<b>') > -1) { 41 content = match; 55 // with 'match'. 56 content = content.replace(/<(\/)?b>/g, '<$1match>'); 74 description: '<url><match>src:</match></url> Search Chromium source [all...] |
/bionic/libc/kernel/common/linux/netfilter_ipv4/ |
ipt_owner.h | 35 u_int8_t match, invert; member in struct:ipt_owner_info
|
/bionic/libc/kernel/common/linux/netfilter_ipv6/ |
ip6t_owner.h | 32 u_int8_t match, invert; member in struct:ip6t_owner_info
|
/development/ndk/platforms/android-3/include/linux/netfilter_ipv4/ |
ipt_owner.h | 27 u_int8_t match, invert; member in struct:ipt_owner_info
|
/development/ndk/platforms/android-3/include/linux/netfilter_ipv6/ |
ip6t_owner.h | 25 u_int8_t match, invert; member in struct:ip6t_owner_info
|
/development/tools/findunused/ |
findunusedtranslations | 55 for $match (@matches) { 56 print "Rewriting $match\n"; 61 open(IN, "<$match"); 97 open(OUT, ">$match");
|