HomeSort by relevance Sort by last modified time
    Searched refs:match (Results 126 - 150 of 3045) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
run_all.py 61 match = _TEST_MODULE_PATTERN.search(filename)
62 if match:
63 module_names.append(match.group(1))
  /external/chromium_org/chrome/browser/extensions/api/omnibox/
omnibox_api_testbase.h 50 AutocompleteMatch match = result.match_at(i); local
51 std::string provider_name = match.provider->GetName();
53 UTF16ToUTF8(match.contents).c_str(),
  /external/chromium_org/tools/grit/grit/
lazy_re_unittest.py 25 self.assertTrue(rex.match('bingo'))
30 self.assertTrue(rex.match('bingo'))
34 self.assertTrue(rex.match('bingo'))
  /external/chromium_org/tools/gyp/test/mac/
gyptest-app-error.py 19 def match(a, b): function
30 test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode'], match=match)
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ErrorInfoParser.java 80 this.lexer.match('<');
84 this.lexer.match('>');
91 this.lexer.match(',');
ExpiresParser.java 68 lexer.match(TokenTypes.EXPIRES);
70 lexer.match(':');
73 lexer.match('\n');
RecordRouteParser.java 69 this.lexer.match(TokenTypes.RECORD_ROUTE);
71 this.lexer.match(':');
80 this.lexer.match(',');
RouteParser.java 65 this.lexer.match(TokenTypes.ROUTE);
67 this.lexer.match(':');
76 this.lexer.match(',');
  /external/openfst/src/include/fst/
arcfilter.h 69 // True if specified labels match (don't match) when keep_match is
83 bool match = labels_.Find(label) != labels_.End(); local
84 return keep_match_ ? match : !match;
  /external/valgrind/unittest/
match_output.py 13 match = False
18 match = True
19 # print 'match: %s =~ %s' % (line, line_re)
21 if not match:
22 print 'no match for: %s' % (line_re)
34 print >>sys.stderr, 'File does not match the template'
  /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 UTF16ToUTF8(match.fill_into_edit.substr(prefix_length)),
96 const AutocompleteMatch& match) {
103 if (prerenderer && prerenderer->IsAllowed(match, web_contents)) {
112 match.destination_url,
omnibox_current_page_delegate_impl.h 31 const AutocompleteMatch& match,
35 virtual void DoPrerender(const AutocompleteMatch& match) OVERRIDE;
  /external/chromium_org/tools/telemetry/telemetry/core/
repeat_options.py 38 match = re.match('([0-9]+)([sS]?)$', str(getattr(finder_options,
40 if match:
41 if match.group(2):
42 setattr(self, input_str + '_secs', float(match.group(1)))
46 setattr(self, input_str + '_iters', int(match.group(1)))
  /frameworks/base/core/tests/coretests/src/android/app/
SuggestionProvider.java 65 int match = sURLMatcher.match(url); local
66 switch (match) {
87 int match = sURLMatcher.match(url); local
88 switch (match) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_imports.py 105 # Don't match the node if it's within another match.
106 def match(self, node): member in class:FixImports
107 match = super(FixImports, self).match
108 results = match(node)
113 any(match(obj) for obj in attr_chain(node, "parent")):
137 results = self.match(node)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_imports.py 105 # Don't match the node if it's within another match.
106 def match(self, node): member in class:FixImports
107 match = super(FixImports, self).match
108 results = match(node)
113 any(match(obj) for obj in attr_chain(node, "parent")):
137 results = self.match(node)
  /device/asus/deb/recovery/
Android.mk 8 # should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk
  /device/asus/flo/recovery/
Android.mk 8 # should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk
  /device/asus/grouper/recovery/
Android.mk 8 # should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk
  /device/lge/hammerhead/recovery/
Android.mk 8 # should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk
  /device/lge/mako/recovery/
Android.mk 8 # should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk
  /external/chromium/chrome/browser/autocomplete/
history_contents_provider.cc 91 // None of our results are applicable for best match.
212 AutocompleteMatch match(this, score, true, MatchInTitle(result) ?
214 match.contents = StringForURLDisplay(result.url(), true, trim_http_);
215 match.fill_into_edit =
217 match.contents);
218 match.destination_url = result.url();
219 match.contents_class.push_back(
221 match.description = result.title();
222 match.starred =
226 ClassifyDescription(result, &match);
    [all...]
  /external/chromium_org/android_webview/tools/
find_copyrights.pl 148 my $match = $1;
149 if ($match !~ m%^\s*$copyright_disindicator_regex%i) {
150 $match =~ s/([,.])?\s*$//;
151 $match =~ s/$copyright_indicator_regex//ig;
152 $match =~ s/^\s+//;
153 $match =~ s/\s{2,}/ /g;
154 $match =~ s/\\@/@/g;
155 $copyright = $match;
  /external/chromium_org/chrome/browser/autocomplete/
history_provider.cc 27 void HistoryProvider::DeleteMatch(const AutocompleteMatch& match) {
30 DCHECK(match.deletable);
35 // Delete the match from the history DB.
37 DCHECK(match.destination_url.is_valid());
38 history_service->DeleteURL(match.destination_url);
39 DeleteMatchFromMatches(match);
44 void HistoryProvider::DeleteMatchFromMatches(const AutocompleteMatch& match) {
47 if (i->destination_url == match.destination_url && i->type == match.type) {
92 ACMatchClassification::MATCH | url_style))
    [all...]
history_url_provider.cc 54 // Returns whether the match exists regardless if it was promoted/created.
76 history::HistoryMatch match(info, input_location, match_in_scheme, true);
78 matches->push_front(match);
80 matches->push_back(match);
85 // Given the user's |input| and a |match| created from it, reduce the match's
88 GURL ConvertToHostOnly(const history::HistoryMatch& match,
94 const GURL& url = match.url_info.url();
98 // Transform to a host-only match. Bail if the host no longer matches the
101 if ((host.spec().length() < (match.input_location + input.length()))
599 const history::HistoryMatch& match = history_matches[i]; local
904 const history::HistoryMatch& match = matches->front(); local
    [all...]

Completed in 3490 milliseconds

1 2 3 4 56 7 8 91011>>