Searched refs:matches (Results 176 - 200 of 860) sorted by relevance

1234567891011>>

/external/ltrace/
H A Dfilter.c169 int matches = 0; local
174 if (matches)
178 if (!matches)
185 matches = !matches;
187 if (matches)
/external/skia/tools/
H A Dtest_gpuveto.py106 matches = re.findall('[\d]+\.[\d]+', output)
107 if len(matches) != 1:
110 rasterTime = float(matches[0])
121 matches = re.findall('[\d]+\.[\d]+', output)
122 if len(matches) != 1:
125 gpuTime = float(matches[0])
/external/wpa_supplicant_8/hs20/server/www/
H A Dest.php19 $_SERVER['PHP_AUTH_DIGEST'], $matches, PREG_SET_ORDER);
20 foreach ($matches as $m) {
150 preg_match($pattern, $serial, $matches);
151 if (!isset($matches['snhex']) || strlen($matches['snhex']) < 1) {
155 $sn = str_replace(":", "", strtoupper($matches['snhex']));
/external/chromium_org/base/i18n/
H A Dicu_encoding_detection.cc44 const UCharsetMatch** matches = ucsdet_detectAll(detector, local
62 const char* encoding_name = ucsdet_getName(matches[i], &get_name_status);
68 int32_t confidence = ucsdet_getConfidence(matches[i], &get_name_status);
/external/chromium_org/build/android/gyp/
H A Dapk_install.py35 matches = filter(apk_matcher, output)
36 return matches[0] if matches else None
/external/chromium_org/components/autofill/core/common/
H A Dpassword_form_fill_data.cc34 const PasswordFormMap& matches,
61 for (iter = matches.begin(); iter != matches.end(); iter++) {
32 InitPasswordFormFillData( const PasswordForm& form_on_page, const PasswordFormMap& matches, const PasswordForm* const preferred_match, bool wait_for_username_before_autofill, bool enable_other_possible_usernames, PasswordFormFillData* result) argument
/external/chromium_org/components/omnibox/
H A Dautocomplete_result.h21 // All matches from all providers for a particular query. This also tracks
60 // Max number of matches we'll show from the various providers.
66 // Copies matches from |old_matches| to provide a consistant result set. See
72 // Adds a new set of matches to the result set. Does not re-sort.
73 void AppendMatches(const ACMatches& matches);
76 // the best kMaxMatches matches. Sets the default match to the best match
113 // suggested matches. This makes it more likely that users will see and
114 // select useful non-verbatim matches. (Note that hiding the verbatim match
117 // We avoid hiding when the top two matches are both verbatim in order to
132 // Clears the matches fo
[all...]
/external/chromium_org/tools/findit/
H A Dmatch_set.py108 """Represents a set of matches.
111 matches: A map from CL to a match object.
113 matches_lock: A lock guarding matches dictionary.
118 self.matches = {}
124 for cl in self.matches:
126 del self.matches[cl]
/external/iproute2/tc/
H A Df_cgroup.c47 if (matches(*argv, "match") == 0) {
54 } else if (matches(*argv, "action") == 0) {
62 } else if (matches(*argv, "police") == 0) {
H A Dq_qfq.c42 if (matches(*argv, "help") == 0) {
66 if (matches(*argv, "weight") == 0) {
72 } else if (matches(*argv, "maxpkt") == 0) {
/external/lldb/source/Utility/
H A DSharingPtr.cpp97 uint32_t matches = 0; local
103 ++matches;
108 if (matches == 0)
/external/apache-http/src/org/apache/commons/codec/language/
H A DMetaphone.java319 boolean matches = false;
322 matches = string.charAt(index - 1) == c;
324 return matches;
328 boolean matches = false;
331 matches = string.charAt(index + 1) == c;
333 return matches;
337 boolean matches = false;
341 matches = substring.equals( test );
343 return matches;
/external/chromium_org/chrome/browser/autocomplete/
H A Dhistory_provider.h31 // Finds and removes the match from the current collection of matches and
35 // Fill and return an ACMatchClassifications structure given the |matches|
38 const history::TermMatches& matches,
/external/chromium_org/chrome/browser/resources/options/
H A Dlanguage_dictionary_overlay.css5 #language-dictionary-overlay-no-matches {
37 #language-dictionary-overlay-word-list.no-search-matches {
/external/chromium_org/components/url_matcher/
H A Dregex_set_matcher.cc39 std::set<StringPattern::ID>* matches) const {
40 size_t old_number_of_matches = matches->size();
58 matches->insert(id);
60 return old_number_of_matches != matches->size();
/external/chromium_org/extensions/renderer/resources/
H A Dutils.js36 var matches = array_of_dictionaries.filter(filter);
37 if (matches.length == 0) {
39 } else if (matches.length == 1) {
40 return matches[0]
/external/chromium_org/third_party/WebKit/Source/core/frame/csp/
H A DCSPSource.h23 bool matches(const KURL&) const;
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dunifilt.h88 virtual UMatchDegree matches(const Replaceable& text,
H A Dunimatch.h26 * Constants returned by <code>UnicodeMatcher::matches()</code>
32 * Constant returned by <code>matches()</code> indicating a
41 * Constant returned by <code>matches()</code> indicating a
53 * Constant returned by <code>matches()</code> indicating a
56 * the given text matches, and it is known that additional
123 virtual UMatchDegree matches(const Replaceable& text,
/external/chromium_org/third_party/re2/re2/testing/
H A Dfiltered_re2_test.cc16 vector<int> matches; member in struct:re2::FilterTestVars
23 v.f.AllMatches("foo", v.atom_indices, &v.matches);
24 EXPECT_EQ(0, v.matches.size());
37 v.f.AllMatches("lemurs bar", v.atom_indices, &v.matches);
38 EXPECT_EQ(1, v.matches.size());
39 EXPECT_EQ(id, v.matches[0]);
54 v.f.AllMatches("foo\xde\xadQ\xbe\xeflemur", v.atom_indices, &v.matches);
55 EXPECT_EQ(1, v.matches.size());
56 EXPECT_EQ(id, v.matches[0]);
/external/easymock/src/org/easymock/internal/matchers/
H A DCompareTo.java33 public boolean matches(Object actual) { method in class:CompareTo
H A DEqualsWithDelta.java35 public boolean matches(Object actual) { method in class:EqualsWithDelta
H A DFind.java33 public boolean matches(Object actual) { method in class:Find
H A DSame.java33 public boolean matches(Object actual) { method in class:Same
/external/hamcrest/integration/src/org/hamcrest/
H A DMatcherAssert.java12 if (!matcher.matches(actual)) {

Completed in 2261 milliseconds

1234567891011>>