HomeSort by relevance Sort by last modified time
    Searched refs:matches (Results 276 - 300 of 645) sorted by null

<<11121314151617181920>>

  /sdk/ide_common/src/com/android/ide/common/resources/configuration/
CountryCodeQualifier.java 43 if (m.matches()) {
DensityQualifier.java 69 if (m.matches()) {
ScreenDimensionQualifier.java 86 if (m.matches()) {
ScreenHeightQualifier.java 71 if (m.matches()) {
ScreenWidthQualifier.java 71 if (m.matches()) {
SmallestScreenWidthQualifier.java 71 if (m.matches()) {
  /cts/tests/tests/webkit/src/android/webkit/cts/
CookieManagerTest.java 134 assertTrue(m.matches());
144 assertTrue(m.matches());
155 assertTrue(m.matches());
  /external/chromium/chrome/browser/autocomplete/
autocomplete.h 24 // providers, each of which keeps track of its own matches and whether it has
25 // finished processing the query. When a provider gets more matches or finishes
26 // processing, it notifies the controller, which merges the combined matches
36 // their own thread management when they need to return matches asynchronously.
38 // The AutocompleteProviders each return different kinds of matches, such as
39 // history or search matches. These matches are given "relevance" scores.
40 // Higher scores are better matches than lower scores. The relevance scores and
41 // classes providing the respective matches are as follows:
159 // ++: a series of matches with relevance from n up to (n + max_matches)
403 const ACMatches& matches() const { return matches_; } function in class:AutocompleteProvider
    [all...]
  /external/clang/lib/Driver/
Option.cpp 98 bool Option::matches(OptSpecifier Opt) const { function in class:Option
101 return Alias->matches(Opt);
108 return Group->matches(Opt);
143 // Matches iff this is an exact match.
157 // Always matches.
170 // Always matches.
204 // Matches iff this is an exact match.
224 // Matches iff this is an exact match.
273 // Always matches.
  /external/guava/src/com/google/common/base/
Splitter.java 197 * @throws IllegalArgumentException if {@code separatorPattern} matches the
202 checkArgument(!separatorPattern.matcher("").matches(),
234 * @throws IllegalArgumentException if {@code separatorPattern} matches the
384 while (start < end && trimmer.matches(toSplit.charAt(start))) {
387 while (end > start && trimmer.matches(toSplit.charAt(end - 1))) {
  /external/icu4c/i18n/
strmatch.cpp 83 UMatchDegree StringMatcher::matches(const Replaceable& text, function in class:StringMatcher
103 subm->matches(text, cursor, limit, incremental);
137 subm->matches(text, cursor, limit, incremental);
250 * set of matches with this segment.
  /external/iproute2/ip/
xfrm_policy.c 984 if (matches(*argv, "add") == 0)
987 if (matches(*argv, "update") == 0)
990 if (matches(*argv, "delete") == 0)
992 if (matches(*argv, "deleteall") == 0 || matches(*argv, "delall") == 0)
994 if (matches(*argv, "list") == 0 || matches(*argv, "show") == 0
995 || matches(*argv, "lst") == 0)
997 if (matches(*argv, "get") == 0)
999 if (matches(*argv, "flush") == 0
    [all...]
ipaddress.c 786 if (matches(*argv, "help") == 0)
1025 } else if (matches(*argv, "broadcast") == 0 ||
1066 } else if (matches(*argv, "valid_lft") == 0) {
1073 } else if (matches(*argv, "preferred_lft") == 0) {
1088 if (matches(*argv, "help") == 0)
1105 if (l && matches(d, l) != 0) {
1181 if (matches(*argv, "add") == 0)
1183 if (matches(*argv, "change") == 0 ||
1186 if (matches(*argv, "replace") == 0)
1188 if (matches(*argv, "delete") == 0
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
StructuralWhitespaceStripper.java 190 return INLINE_WHITESPACE.matcher(text).matches();
207 if (!matcher.matches()) {
218 if (!matcher.matches()) {
  /external/oprofile/libpp/
locate_images.cpp 83 vector<string> matches; local
90 matches.push_back(cit->second + '/' + cit->first);
93 return matches;
  /external/valgrind/main/coregrind/
m_options.c 275 // otherwise, return True, unless the exe name matches any of the
281 Bool matches; local
293 matches = VG_(string_match)(patt, name);
295 if (matches)
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
LevenshteinFormatterTest.java 97 int[] matches = mFormatter.findMatches(sourceTokens, targetTokens); local
98 assertEquals(targetTokens.length, matches.length);
103 int sourceIdx = matches[i];
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/project/
ProjectProperties.java 139 if (propRegex.equals(name) || Pattern.matches(propRegex, name)) {
152 if (propRegex.equals(name) || Pattern.matches(propRegex, name)) {
382 if (m.matches()) {
  /external/bluetooth/glib/gio/
gcontenttype.c 965 /* There are conflicts between the name matches and we have a sniffed
1104 GList *matches; member in struct:__anon1932
1111 GList *matches; member in struct:__anon1933
1118 g_list_foreach (matchlet->matches, (GFunc)tree_matchlet_free, NULL);
1119 g_list_free (matchlet->matches);
1128 g_list_foreach (match->matches, (GFunc)tree_matchlet_free, NULL);
1129 g_list_free (match->matches);
1232 match->matches = g_list_append (match->matches, matchlet);
1238 last = g_list_last (match->matches);
    [all...]
  /external/icu4c/test/intltest/
dadrcal.cpp 222 if (!fromSet.matches(fromCalendar, diffSet, status)) {
270 } else if (!toSet.matches(toCalendar, diffSet, status)) {
306 if (!fromSet.matches(fromCalendar, diffSet, status)) {
328 if (!fromSet.matches(fromCalendar, diffSet, status)) {
348 if (!toSet.matches(toCalendar, diffSet, status)) {
  /external/proguard/src/proguard/retrace/
ReTrace.java 201 if (matcher.matches())
377 if (fieldInfo.matches(type))
452 if (methodInfo.matches(lineNumber, type, arguments))
639 private boolean matches(String type) method in class:ReTrace.FieldInfo
669 private boolean matches(int lineNumber, String type, String arguments) method in class:ReTrace.MethodInfo
  /external/webkit/Source/WebCore/page/
ContentSecurityPolicy.cpp 115 bool matches(const KURL& url) const function in class:WebCore::CSPSource
162 bool matches(const KURL&);
188 bool CSPSourceList::matches(const KURL& url) function in class:WebCore::CSPSourceList
191 if (m_list[i].matches(url))
406 return m_sourceList.matches(url);
  /external/libphonenumber/java/test/com/android/i18n/phonenumbers/
PhoneNumberMatcherTest.java 338 Iterator<PhoneNumberMatch> matches = phoneUtil.findNumbers(text, region).iterator(); local
339 assertEquals(match1, matches.next());
340 assertEquals(match2, matches.next());
593 Iterator<PhoneNumberMatch> matches = local
596 assertEquals(match1, matches.next());
597 assertEquals(match2, matches.next());
612 // Matches all 100. Max only applies to failed cases.
650 // Only matches the first 10 despite there being 100 numbers due to max matches.
770 Iterator<PhoneNumberMatch> matches = local
881 StringBuilder matches = new StringBuilder(); local
    [all...]
  /external/bluetooth/glib/tests/
regex-test.c 291 GSList *matches = NULL; local
328 matches = g_slist_prepend (matches, match);
334 matches = g_slist_reverse (matches);
336 if (g_slist_length (matches) != g_slist_length (expected))
338 gint match_count = g_slist_length (matches);
340 match_count == 1 ? "match" : "matches",
347 l_match = matches;
376 gint count = g_slist_length (matches);
663 gchar **matches; local
    [all...]
  /external/javassist/src/main/javassist/bytecode/
CodeIterator.java 1200 int[] matches = new int[npairs]; local
1549 int[] matches; field in class:CodeIterator.Lookup
    [all...]

Completed in 643 milliseconds

<<11121314151617181920>>