HomeSort by relevance Sort by last modified time
    Searched full:best_match (Results 1 - 21 of 21) sorted by null

  /external/lldb/source/Symbol/
LineTable.cpp 302 size_t best_match = UINT32_MAX; local
330 if (best_match == UINT32_MAX)
331 best_match = idx;
332 else if (m_entries[idx].line < m_entries[best_match].line)
333 best_match = idx;
337 if (best_match != UINT32_MAX)
340 ConvertEntryAtIndexToLineEntry (best_match, *line_entry_ptr);
341 return best_match;
350 size_t best_match = UINT32_MAX; local
378 if (best_match == UINT32_MAX
    [all...]
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/util/
mimeparse.py 18 - best_match(): Choose the mime-type with the highest quality ('q') from a list of candidates.
122 def best_match(supported, header): function
130 >>> best_match(['application/xbel+xml', 'text/xml'], 'text/*;q=0.5,*/*; q=0.1')
  /hardware/intel/common/libwsbm/src/
wsbm_mm.h 66 int best_match);
wsbm_mm.c 216 unsigned long size, unsigned alignment, int best_match)
244 if (!best_match)
  /external/chromium-trace/trace-viewer/third_party/WebOb/webob/
acceptparse.py 28 warn_deprecation("Use best_match instead", '1.2', 3)
143 def best_match(self, offers, default_match=None): member in class:Accept
226 def best_match(self, offers, default_match=None): member in class:NilAccept
  /external/apache-http/src/org/apache/http/client/params/
CookiePolicy.java 66 public static final String BEST_MATCH = "best-match";
HttpClientParams.java 94 return CookiePolicy.BEST_MATCH;
  /art/cmdline/detail/
cmdline_parse_argument_detail.h 112 auto best_match = FindClosestMatch(token_list); local
114 return best_match.second;
124 size_t best_match = 0; local
128 if (this_match > best_match) {
130 best_match = this_match;
134 return std::make_pair(best_match_ptr, best_match);
  /external/chromium-trace/trace-viewer/third_party/Paste/tests/test_util/
test_mimeparse.py 182 bm = best_match
218 bm = best_match
  /external/google-breakpad/src/common/mac/
dump_syms.mm 190 const struct fat_arch *best_match
193 if (!best_match) return false;
196 selected_object_file_ = best_match;
  /external/chromium-trace/trace-viewer/third_party/WebOb/docs/
reference.txt 350 >>> req.accept.best_match(['text/html', 'application/xhtml+xml'])
368 >>> req.accept_language.best_match(['en-GB', 'en-US'], default_match='en-US')
370 >>> req.accept_language.best_match(['es', 'en-US'], default_match='en-US')
380 >>> req.accept_language.best_match(['en-GB'], default_match='en-US')
382 >>> req.accept_language.best_match(['en-GB', 'en-US'], default_match='en-US')
news.txt 334 ``request.accept.best_match(..)`` instead (applies to all Accept-*
434 * Fix exception when calling ``.accept.best_match(..)`` on a header containing
525 Use ``.best_match(..)`` instead.
835 * Arguments to :meth:`Accept.best_match` must be specific types,
837 offer and use ``best_match`` to select a specific one.
839 * With ``req.accept.best_match([types])`` prefer the first type in the
844 ``req.accept.best_match([..])`` returns the most specific match.
    [all...]
differences.txt 31 ``req.accept_language.best_match(supported_languages)``
36 ``req.accept.best_match(mimetypes)``
  /external/apache-http/src/org/apache/http/impl/client/
DefaultHttpClient.java 267 CookiePolicy.BEST_MATCH,
  /external/lldb/test/pexpect-2.4/
pexpect.py     [all...]