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

<<51525354555657585960>>

  /system/core/toolbox/
mount.c 269 int match; local
278 match = fscanf(f, "%255s %255s %255s %255s %d %d\n",
285 if (match == 6 &&
293 } while (match != EOF);
  /cts/tests/src/android/content/cts/
MockContentProvider.java 143 switch (URL_MATCHER.match(uri)) {
182 switch (URL_MATCHER.match(uri)) {
214 switch (URL_MATCHER.match(uri)) {
251 switch (URL_MATCHER.match(uri)) {
319 switch (URL_MATCHER.match(uri)) {
352 switch (URL_MATCHER.match(uri)) {
376 switch (URL_MATCHER.match(uri)) {
  /external/chromium_org/build/android/pylib/
android_commands.py 43 # into a match group. We can't use ^ and $ for line start end with pexpect,
169 directory_match = re_directory.match(line)
173 file_match = re_file.match(line)
439 doesn't reinstall if the apk md5sums match.
915 must also match.
919 md5sums do not match.
    [all...]
  /external/chromium_org/chrome/installer/util/
user_experiment.cc 309 // The first match from top to bottom is used so this list should be ordered
355 // We have found our match.
356 const UserExperimentSpecs& match = kExperiments[i]; local
359 while (match.flavors[num_flavors].heading_id) { ++num_flavors; }
366 experiment->heading = match.flavors[flavor].heading_id;
367 experiment->control_group = match.control_group;
368 const wchar_t prefix[] = { match.prefix[0], match.prefix[1] + flavor, 0 };
370 experiment->flags = match.flavors[flavor].flags;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DOMPresentationUtils.js 85 var match = nodeTitle.match(/([^#.]+)(#[^.]+)?(\..*)?/);
86 container.createChild("span", "webkit-html-tag-name").textContent = match[1];
87 if (match[2])
88 container.createChild("span", "webkit-html-attribute-value").textContent = match[2];
89 if (match[3])
90 container.createChild("span", "webkit-html-attribute-name").textContent = match[3];
NetworkRequest.js 540 var match = firstLine.match(/(HTTP\/\d+\.\d+)$/); variable
541 return match ? match[1] : undefined;
672 if (!requestContentType || !requestContentType.match(/^application\/x-www-form-urlencoded\s*(;.*)?$/i))
683 var match = this.responseHeadersText.match(/^(HTTP\/\d+\.\d+)/);
684 return match ? match[1] : undefined;
792 return !!this.url.match(/^https?:/i)
    [all...]
SourceFrame.js 333 if (mimeType === "text/x-php" && content.match(/\<\?.*\?\>/g))
585 var match = regexObject.exec(line);
586 if (match) {
587 if (match[0].length)
588 ranges.push(new WebInspector.TextRange(i, offset + match.index, i, offset + match.index + match[0].length));
589 offset += match.index + 1;
590 line = line.substring(match.index + 1);
592 } while (match && line)
    [all...]
  /external/mesa3d/src/mesa/program/
prog_parameter.c 481 * swizzling to find a match.
509 GLuint j, match = 0; local
512 match++;
514 if (match == vSize) {
534 /* see if we can match this constant (with a swizzle) */
536 GLuint match = 0, j, k; local
540 match++;
546 match++;
556 if (match == vSize) {
644 * Count the number of parameters in the last that match the given type
    [all...]
  /frameworks/base/core/java/android/text/util/
Linkify.java 51 * required. Any pattern match that does not begin with the supplied scheme
143 public final String transformUrl(final Matcher match, String url) {
144 return Patterns.digitsAndPlusOnly(match);
150 * what is allowed to match and become a link, and what is not.
153 * http://www.example.com to match, as well as just example.com itelf.
154 * However, you would not want to match against the domain in
156 * might also include a MatchFilter that disallows the match if it is
162 * if the match should be turned into an actionable link.
171 * @return Whether this match should be turned into a link
189 * @param match The regex matcher state that found this URL tex
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
feedparser.py 201 # Collect the headers, searching for a line that doesn't match the RFC
207 if not headerRE.match(line):
211 if not NLCRE.match(line):
240 self._input.push_eof_matcher(NLCRE.match)
298 # Create a line match predicate which matches the inter-part
316 mo = boundaryre.match(line)
347 mo = boundaryre.match(line)
353 self._input.push_eof_matcher(boundaryre.match)
418 bolmo = NLCRE_bol.match(firstline)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
nntplib.py 330 match = line_pat.search(raw_line.strip())
331 if match:
332 lines.append(match.group(1, 2))
464 m = pat.match(line)
506 match = line_pat.search(raw_line.strip())
507 if match:
508 lines.append(match.group(1, 2))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
feedparser.py 201 # Collect the headers, searching for a line that doesn't match the RFC
207 if not headerRE.match(line):
211 if not NLCRE.match(line):
240 self._input.push_eof_matcher(NLCRE.match)
298 # Create a line match predicate which matches the inter-part
316 mo = boundaryre.match(line)
347 mo = boundaryre.match(line)
353 self._input.push_eof_matcher(boundaryre.match)
418 bolmo = NLCRE_bol.match(firstline)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
nntplib.py 330 match = line_pat.search(raw_line.strip())
331 if match:
332 lines.append(match.group(1, 2))
464 m = pat.match(line)
506 match = line_pat.search(raw_line.strip())
507 if match:
508 lines.append(match.group(1, 2))
  /external/chromium_org/chrome/browser/predictors/
autocomplete_action_predictor.cc 114 // Merge this in to an existing match if we already saw |user_text|
161 // Given a match, return a recommended action.
165 const AutocompleteMatch& match) const {
167 const double confidence = CalculateConfidence(user_text, match, &is_in_db);
175 tracked_urls_.push_back(std::make_pair(match.destination_url, confidence));
189 // Downgrade prerender to preconnect if this is a search match or if omnibox
196 (AutocompleteMatch::IsSearchType(match.type) ||
208 const AutocompleteMatch& match) {
209 return AutocompleteMatch::IsSearchType(match.type);
328 const AutocompleteMatch& match = log.result.match_at(log.selected_index) local
    [all...]
  /external/chromium_org/tools/grit/grit/
util.py 231 def Replace(match):
232 if match.group() == '&': return '&amp;'
233 elif match.group() == '<': return '&lt;'
234 elif match.group() == '>': return '&gt;'
235 elif match.group() == '"':
237 else: return match.group()
251 def Replace(match):
252 groups = match.groupdict()
260 return match.group() # Don't replace &nbsp;
265 return match.group() # Unknown HTML character entity - don't replac
    [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
SmsProvider.java 98 int match = sURLMatcher.match(url); local
99 switch (match) {
363 int match = sURLMatcher.match(url); local
366 switch (match) {
543 int match = sURLMatcher.match(url); local
545 switch (match) {
632 switch (sURLMatcher.match(url))
    [all...]
TelephonyProvider.java 184 throw new IllegalStateException("Internal APNS file version doesn't match "
416 int match = s_urlMatcher.match(url); local
417 switch (match) {
480 switch (s_urlMatcher.match(url)) {
504 int match = s_urlMatcher.match(url); local
506 switch (match)
628 int match = s_urlMatcher.match(url) local
684 int match = s_urlMatcher.match(url); local
    [all...]
  /bionic/libc/kernel/tools/
kernel.py 79 m = HeaderScanner.re_combined.match(line)
81 m = HeaderScanner.re_rel_dir.match(line)
122 if (HeaderScanner.re_combined.match(line) or
123 (kernel_root and HeaderScanner.re_rel_dir.match(line))):
311 m = ConfigParser.re_CONFIG_.match(line)
  /external/chromium/chrome/browser/autofill/
contact_info.cc 188 // 3) all of the words in the field match a word in either the first,
216 bool match = false; local
218 match = true;
223 match = true;
228 match = true;
230 if (!match)
253 // then we will consider the text to match the name.
  /external/chromium_org/chrome/browser/ui/webui/options/
options_ui.cc 362 const AutocompleteMatch& match = result.match_at(i); local
363 AutocompleteMatchType::Type type = match.type;
371 entry->SetString("title", match.description);
372 entry->SetString("displayURL", match.contents);
373 entry->SetString("url", match.destination_url.spec());
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
make_token_matcher.py 152 match_switch = MainLineProcessor.SWITCH_PATTERN.match(line)
176 match_case = SwitchLineProcessor.CASE_PATTERN.match(line)
177 match_close_brace = SwitchLineProcessor.CLOSE_BRACE_PATTERN.match(line)
178 match_empty = SwitchLineProcessor.EMPTY_PATTERN.match(line)
208 match_close_brace = CaseLineProcessor.CLOSE_BRACE_PATTERN.match(line)
  /external/chromium_org/third_party/simplejson/
decoder.py 97 _b=BACKSLASH, _m=STRINGCHUNK.match):
182 _w=WHITESPACE.match, _ws=WHITESPACE_STR):
276 def JSONArray((s, end), scan_once, _w=WHITESPACE.match, _ws=WHITESPACE_STR):
401 def decode(self, s, _w=WHITESPACE.match):
412 def raw_decode(self, s, idx=0, _w=WHITESPACE.match):
  /external/v8/tools/gcmole/
gcmole.lua 31 local DIR = arg[0]:match("^(.+)/[^/]+$")
53 local flag = arg[i]:match "^%-%-([%w_-]+)$"
55 local no, real_flag = flag:match "^(no)([%w_-]+)$"
127 local SOURCES = sconscript:match "SOURCES = {(.-)}";
150 local p, v = cond:match "(%w+):(%w+)"
245 if name:match "Collect.*Garbage" then
252 if name:match(WHITELIST[i]) then
339 l:match "^[^:]+:%d+:%d+:" or
340 l:match "error" or
341 l:match "warning
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
Exchanger.java 168 * changed, but cannot yet proceed until match is set. In the
171 * the linearization point to be a CAS of the match field (as done
221 * slot CASes, it would also be legal for the write to Node.match
258 * The bound for spins while waiting for a match. The actual
288 volatile Object match; // Item provided by releasing thread field in class:Exchanger.Node
342 q.match = item;
354 Object v = p.match;
356 U.putOrderedObject(p, MATCH, null);
370 spins = SPINS; // releaser hasn't set match yet
437 q.match = item
    [all...]
  /external/chromium/chrome/browser/autocomplete/
autocomplete.cc 212 // Manually re-jigger the parsed parts to match |text| (without the
508 void AutocompleteProvider::DeleteMatch(const AutocompleteMatch& match) {
611 // new low-relevance match appear and then quickly get pushed off the bottom;
632 void AutocompleteResult::AddMatch(const AutocompleteMatch& match) {
635 std::upper_bound(begin(), end(), match, &AutocompleteMatch::MoreRelevant);
640 matches_.insert(insertion_point, match);
703 // Returns the match at the given index.
738 bool AutocompleteResult::HasMatchByDestination(const AutocompleteMatch& match,
741 if (i->destination_url == match.destination_url)
764 AutocompleteMatch match = *i
    [all...]

Completed in 1127 milliseconds

<<51525354555657585960>>