/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...] |
libxt_recent.c | 85 "recent match options:\n" 87 "[!] --rcheck Match if source address in list.\n" 88 "[!] --update Match if source address in list, also update last-seen time.\n" 89 "[!] --remove Match if source address in list, also removes that address from list.\n" 91 " Specifies that the match will only occur if source address last seen within\n" 96 " Specifies that the match will only occur if source address seen hits times.\n" 99 " Specifies that the match will only occur if the source address and the TTL\n" 100 " match between this packet and the one which was set.\n" 104 " --rsource Match/Save the source address of each packet in the recent list table (default).\n" 105 " --rdest Match/Save the destination address of each packet in the recent list table.\n [all...] |
/external/linux-tools-perf/perf-3.12.0/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 | 447 * Tests if any certificates match in the case of null criteria, 448 * if [not]proper certificates [do not]match 456 assertTrue("Any certificates should match in the case of null " 458 selector.match(cert_1) && selector.match(cert_2)); 460 assertTrue("The certificate should match the selection criteria.", 461 selector.match(cert_1)); 462 assertFalse("The certificate should not match the selection criteria.", 463 selector.match(cert_2)); 465 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/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/chromium_org/third_party/WebKit/Source/bindings/scripts/ |
utilities.py | 123 match = re.search(r'partial\s+interface\s+(\w+)\s*{', file_contents) 124 return match and match.group(1) 144 implements_pairs = [match.groups() for match in implements_matches] 163 match = re.search(r'callback\s+interface\s+\w+\s*{', file_contents) 164 return bool(match) 168 match = re.search(r'dictionary\s+\w+\s*{', file_contents) 169 return bool(match) 173 match = re.search(r'interface\s+ [all...] |
/external/chromium_org/tools/findit/ |
stacktrace.py | 144 match = callstack_start_pattern.match(line) 147 if match: 148 # Check the type of the new match. 149 stack_type = match.group(1) 174 if (crash_callstack_start_pattern1.match(line) or 175 crash_callstack_start_pattern2.match(line)): 179 if allocation_callstack_start_pattern.match(line): 182 if location_callstack_start_pattern.match(line): 203 if (crash_callstack_start_pattern1.match(line) o [all...] |
/external/chromium_org/chrome/browser/autocomplete/ |
autocomplete_provider_unittest.cc | 134 AutocompleteMatch match(this, relevance_ - i, false, type); 136 match.fill_into_edit = prefix_ + base::UTF8ToUTF16(base::IntToString(i)); 137 match.destination_url = GURL(base::UTF16ToUTF8(match.fill_into_edit)); 138 match.allowed_to_be_default_match = true; 140 match.contents = match.fill_into_edit; 141 match.contents_class.push_back( 143 match.description = match.fill_into_edit 381 AutocompleteMatch match; local [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...] |
/external/chromium_org/chrome/browser/ui/omnibox/ |
omnibox_edit_model.cc | 112 // between focusing and opening an omnibox match. 115 // Split the percentage match histograms into buckets based on the width of the 232 // Weird edge case to match other browsers: if the edit is empty, revert to 288 // If we have a valid match use it. Otherwise get one for the current text. 289 AutocompleteMatch match = omnibox_controller_->current_match(); local 291 if (!match.destination_url.is_valid()) { 292 GetInfoForCurrentText(&match, alternate_nav_url); 295 input_, match); 297 return match; 481 AutocompleteMatch match; local 616 AutocompleteMatch match; local 624 AutocompleteMatch match; local 633 AutocompleteMatch match = CurrentMatch(&alternate_nav_url); local 982 const AutocompleteMatch& match = CurrentMatch(NULL); local 1269 const AutocompleteMatch& match = omnibox_controller_->current_match(); local [all...] |
omnibox_popup_model.cc | 128 const AutocompleteMatch& match = result.match_at(line); local 133 manually_selected_match_.destination_url = match.destination_url; 134 manually_selected_match_.provider_affinity = match.provider; 136 match.is_history_what_you_typed_match; 159 // Update the edit with the new data for this match. 166 match.GetKeywordUIState(service, &keyword, &is_keyword_hint); 169 edit_model_->OnPopupDataChanged(match.inline_autocompletion, NULL, 172 edit_model_->OnPopupDataChanged(match.fill_into_edit, ¤t_destination, 207 const AutocompleteMatch& match = result().match_at(selected_line_); local 208 DCHECK(match.associated_keyword.get()) 224 const AutocompleteMatch& match = result().match_at(selected_line_); local [all...] |
/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");
|
/external/apache-http/src/org/apache/http/cookie/ |
CookieAttributeHandler.java | 77 * @param cookie {@link org.apache.http.cookie.Cookie} to match 78 * @param origin the cookie source to match against 79 * @return <tt>true</tt> if the match is successful; <tt>false</tt> otherwise 81 boolean match(Cookie cookie, CookieOrigin origin); method in interface:CookieAttributeHandler
|
/external/chromium_org/build/toolchain/ |
get_concurrent_links.py | 46 match = memtotal_re.match(line) variable in class:GetDefaultConcurrentLinks.MEMORYSTATUSEX 47 if not match: 50 return max(1, int(match.group(1)) / (8 * (2 ** 20)))
|
/external/chromium_org/chrome/browser/ui/views/ |
settings_api_bubble_helper_views.h | 29 const AutocompleteMatch& match);
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/debugger/live-headers/ |
headers.js | 68 var match = url.match( 70 if (!match) 72 result.scheme = match[1].toLowerCase(); 73 result.host = match[2]; 74 result.port = match[3]; 75 result.path = match[4] || "/"; 76 result.fragment = match[5];
|
/external/chromium_org/components/autofill/core/browser/ |
form_field.h | 51 // By default match label and name for input/text types. 59 // success and fills |match| with a pointer to the field. 62 AutofillField** match); 65 // as specified in the |match_type| bit field (see |MatchType|). If |match| 67 // A |true| result is returned in the case of a successful match, false 72 AutofillField** match); 75 // on success and fills |match| with a pointer to the field. 76 static bool ParseEmptyLabel(AutofillScanner* scanner, AutofillField** match); 90 FRIEND_TEST_ALL_PREFIXES(FormFieldTest, Match); 98 // Returns |true| if a match is found according to |match_type|, and |false [all...] |
/external/chromium_org/components/omnibox/ |
base_search_provider_unittest.cc | 39 AutocompleteMatch* match, 63 MOCK_METHOD1(DeleteMatch, void(const AutocompleteMatch& match)); 150 AutocompleteMatch match = map.begin()->second; local 151 ASSERT_EQ(1U, match.duplicate_matches.size()); 152 AutocompleteMatch duplicate = match.duplicate_matches[0]; 154 EXPECT_EQ(answer_contents, match.answer_contents); 155 EXPECT_EQ(answer_type, match.answer_type); 156 EXPECT_EQ(AutocompleteMatchType::SEARCH_HISTORY, match.type); 157 EXPECT_EQ(1300, match.relevance); 178 match = map.begin()->second [all...] |
/external/chromium_org/media/tools/layout_tests/ |
bug.py | 35 match = re.match('Bug\((\w+)\)$', bug_modifier) 36 if match: 38 self.url = 'mailto:%s@chromium.org' % match.group(1).lower()
|
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/ |
ScriptRegexp.h | 47 int match(const String&, int startFrom = 0, int* matchLength = 0) const;
|