/external/nist-sip/java/gov/nist/javax/sip/parser/ims/ |
PPreferredServiceParser.java | 99 this.lexer.match(TokenTypes.P_PREFERRED_SERVICE); 101 this.lexer.match(':');
|
/external/protobuf/gtest/test/ |
gtest_filter_unittest.py | 146 match = TEST_CASE_REGEX.match(line) 147 if match is not None: 148 test_case = match.group(1) 150 match = TEST_REGEX.match(line) 151 if match is not None: 152 test = match.group(1) 349 """Tests filters that match everything."""
|
/external/v8/test/mjsunit/ |
function-caller.js | 28 function f(match) { 29 g(match); 32 function g(match) { 34 assertEquals(match, f.caller);
|
/external/v8/test/mjsunit/regress/ |
regress-1472.js | 31 "xxx".match(r1); 34 "xxx".match(r2); 37 "xxx".match(r3); 40 "xxx".match(r4);
|
/frameworks/base/services/java/com/android/server/pm/ |
PreferredActivity.java | 39 PreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity, 42 mPref = new PreferredComponent(this, match, set, activity, always);
|
/ndk/build/awk/ |
extract-launchable.awk | 178 if (!match( $0, "^" sec_begin )) return 0; 179 while (!match($0, sec_end "$")) {
|
/ndk/sources/third_party/googletest/googletest/test/ |
gtest_list_tests_unittest.py | 162 expected_output_re.match(output), 164 'which does not match regex "%s"' % 169 not EXPECTED_OUTPUT_NO_FILTER_RE.match(output),
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/ |
TestResultsProvider.java | 115 int match = URI_MATCHER.match(uri); local 116 switch (match) { 151 int match = URI_MATCHER.match(uri); local 152 switch (match) {
|
/external/chromium/chrome/browser/autocomplete/ |
autocomplete_browsertest.cc | 39 AutocompleteMatch match = result.match_at(i); local 40 std::string provider_name = match.provider->name(); 42 UTF16ToUTF8(match.contents).c_str(), 120 // about the other match existing. 122 AutocompleteMatch match = result.match_at(0); local 123 EXPECT_EQ(AutocompleteMatch::SEARCH_WHAT_YOU_TYPED, match.type); 124 EXPECT_FALSE(match.deletable);
|
/external/chromium/net/ftp/ |
ftp_directory_listing_parser_vms.cc | 90 string16 match(input); 91 while (!match.empty() && !pattern.empty()) { 92 if (match[0] == pattern[0]) 93 match = match.substr(1); 96 return match.empty();
|
/external/chromium_org/android_webview/tools/ |
webview_licenses.py | 72 if not re.match(regex, token, re.IGNORECASE): 138 if c and not allowed_copyrights_re.match(c): 232 match = re.match(r'([^#\s]+)', line) 233 if match: 234 whitelisted_files.append(match.group(1))
|
/external/chromium_org/net/ftp/ |
ftp_directory_listing_parser_vms.cc | 101 base::string16 match(input); 102 while (!match.empty() && !pattern.empty()) { 103 if (match[0] == pattern[0]) 104 match = match.substr(1); 107 return match.empty();
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
CookieParser.js | 157 var match = /^\s*[\n;]\s*/.exec(this._input); 158 if (!match) 160 this._input = this._input.slice(match[0].length); 161 return match[0].match("\n") !== null; 434 return !!resourceDomain.match(new RegExp("^([^\\.]+\\.)*" + cookieDomain.substring(1).escapeForRegExp() + "$", "i"));
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
profiler.py | 105 match = re.search("^Total:[^\n]*\n((?:[^\n]*\n){0,10})", pprof_output, re.MULTILINE) 106 return match.group(1) if match else None 148 match = re.search("^#[^\n]*\n((?: [^\n]*\n){1,10})", perf_output, re.MULTILINE) 149 return match.group(1) if match else None
|
/external/chromium_org/third_party/codesighs/ |
nm2tsv.c | 285 int match = 0; local 310 match = 0; 317 match = __LINE__; 321 match = __LINE__; 324 if(match) 348 if(0 == match)
|
/external/chromium_org/tools/ |
nocompile_driver.py | 109 match = EXTRACT_EXPECTATION_RE.match(expectation_string) 110 assert match 112 raw_expectation = ast.literal_eval(match.group(1)) 168 match_result = NCTEST_CONFIG_RE.match(line) 176 strip_result = STRIP_DEFINED_RE.match(name) 359 'Expectations [%s] did not match output.' % expectation_str,
|
/external/chromium_org/v8/test/mjsunit/ |
regexp-capture-3.js | 93 // match and verify the override was cleared and that we record the new 113 OverrideCase(function() { return input.match(re); }); 114 OverrideCase(function() { return input.match(re_g); }); 145 // Here's one that matches once, then tries to match again, but fails. 146 // Verify that the last match info is from the last match, not from the 152 // A test that initially does a zero width match, but later does a non-zero 153 // width match. 161 // a regexp with a non-ASCII character in it can never match an ASCII 165 "This is an ASCII string that could take forever".match(re) [all...] |
/external/clang/unittests/AST/ |
MatchVerifier.h | 35 testing::AssertionResult match(const std::string &Code, function in class:clang::ast_matchers::MatchVerifier 38 return match(Code, AMatcher, Args, Lang_CXX); 42 testing::AssertionResult match(const std::string &Code, function in class:clang::ast_matchers::MatchVerifier 46 return match(Code, AMatcher, Args, L); 50 testing::AssertionResult match(const std::string &Code, 77 testing::AssertionResult MatchVerifier<NodeType>::match( function in class:clang::ast_matchers::MatchVerifier 108 setFailure("Could not find match");
|
/external/hyphenation/ |
hyphen.c | 185 dict->states[dict->num_states].match = NULL; 311 dict[k]->states[0].match = NULL; 425 dict[k]->states[state_num].match = hnj_strdup (pattern + i); 454 if found, and if there is a match, union the match in. 458 can break the loop after finding the first match. 508 if (hstate->match) 509 hnj_free (hstate->match); 534 char *match; local 599 elimination of trailing zeroes from the match. Leading zeroe 716 char *match; local [all...] |
/external/iptables/extensions/ |
libxt_recent.c | 52 "recent match options:\n" 54 "[!] --rcheck Match if source address in list.\n" 55 "[!] --update Match if source address in list, also update last-seen time.\n" 56 "[!] --remove Match if source address in list, also removes that address from list.\n" 58 " Specifies that the match will only occur if source address last seen within\n" 61 " Specifies that the match will only occur if source address seen hits times.\n" 64 " Specifies that the match will only occur if the source address and the TTL\n" 65 " match between this packet and the one which was set.\n" 69 " --rsource Match/Save the source address of each packet in the recent list table (default).\n" 70 " --rdest Match/Save the destination address of each packet in the recent list table.\n [all...] |
/external/iptables/include/ |
xtables.h | 173 struct xt_entry_match **match; member in union:xt_option_call::__anon19576 213 /* Revision of match (0 by default). */ 218 /* Size of match data. */ 221 /* Size of match data relevent for userspace comparison purposes */ 227 /* Initialize the match. */ 235 struct xt_entry_match **match); 240 /* Prints out the match iff non-NULL: put space at end */ 243 const struct xt_entry_match *match, int numeric); 245 /* Saves the match info in parsable form to stdout. */ 247 void (*save)(const void *ip, const struct xt_entry_match *match); 331 struct xtables_match *match; member in struct:xtables_rule_match [all...] |
/external/iptables/iptables/ |
xshared.c | 32 if (m->match->help == NULL) 34 m->match->name); 36 m->match->help(); 78 * of an explicitly loaded match or a target. However, we support implicit 79 * loading of the protocol match extension. '-p tcp' means 'l4 proto 6' and at 80 * the same time 'load tcp protocol match on demand if we specify --dport'. 83 * - the parameter has not been parsed by a match (m above) 123 m = matchp->match; 128 if (cs->c < matchp->match->option_offset || 129 cs->c >= matchp->match->option_offset + XT_OPTION_OFFSET_SCALE [all...] |
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/ |
picoloaddbg.lua | 49 if string.match(line, "^%s*!.*$") or string.match(line, "^%s*$") then
54 sym = string.match(cline, "^:SYM%s+\"([^\"]-)\"%s+")
56 sym = string.match(cline, "^:SYM%s+'([^']-)'%s+")
61 propval = string.match(cline, "^:PROP%s+mapval%s*=%s*(%d+)%s*")
77 prop, propval = string.match(cline, "^,%s*(%w+)%s*=%s*(%d+)%s*")
|
picoloadphones.lua | 47 if string.match(line, "^%s*!.*$") or string.match(line, "^%s*$") then
52 sym = string.match(cline, "^:SYM%s+\"([^\"]-)\"%s+")
54 sym = string.match(cline, "^:SYM%s+'([^']-)'%s+")
59 propval = string.match(cline, "^:PROP%s+mapval%s*=%s*(%d+)%s*")
75 prop, propval = string.match(cline, "^,%s*(%w+)%s*=%s*(%d+)%s*")
|
/frameworks/base/wifi/java/android/net/wifi/p2p/ |
WifiP2pGroup.java | 110 Matcher match = groupStartedPattern.matcher(supplicantEvent); local 111 if (!match.find()) { 115 mNetworkName = match.group(1); 117 //int freq = Integer.parseInt(match.group(2)); 118 //String psk = match.group(3); 119 mPassphrase = match.group(4); 120 mOwner = new WifiP2pDevice(match.group(5)); 121 if (match.group(6) != null) {
|