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

1 2 3 4 56 7 8 91011>>

  /external/iproute2/tc/
f_cgroup.c 47 if (matches(*argv, "match") == 0) {
54 } else if (matches(*argv, "action") == 0) {
62 } else if (matches(*argv, "police") == 0) {
f_basic.c 63 if (matches(*argv, "match") == 0) {
70 } else if (matches(*argv, "classid") == 0 ||
79 } else if (matches(*argv, "action") == 0) {
87 } else if (matches(*argv, "police") == 0) {
q_htb.c 71 if (matches(*argv, "r2q") == 0) {
76 } else if (matches(*argv, "default") == 0) {
81 } else if (matches(*argv, "debug") == 0) {
117 if (matches(*argv, "prio") == 0) {
123 } else if (matches(*argv, "mtu") == 0) {
128 } else if (matches(*argv, "mpu") == 0) {
133 } else if (matches(*argv, "overhead") == 0) {
138 } else if (matches(*argv, "linklayer") == 0) {
143 } else if (matches(*argv, "quantum") == 0) {
148 } else if (matches(*argv, "burst") == 0 |
    [all...]
  /external/apache-http/src/org/apache/commons/codec/language/
Metaphone.java 314 boolean matches = false;
317 matches = string.charAt(index - 1) == c;
319 return matches;
323 boolean matches = false;
326 matches = string.charAt(index + 1) == c;
328 return matches;
332 boolean matches = false;
336 matches = substring.equals( test );
338 return matches;
  /external/bluetooth/glib/gio/inotify/
inotify-kernel.h 50 void _ik_move_stats (guint32 *matches,
  /external/easymock/src/org/easymock/internal/matchers/
CompareTo.java 33 public boolean matches(Object actual) { method in class:CompareTo
EqualsWithDelta.java 35 public boolean matches(Object actual) { method in class:EqualsWithDelta
Find.java 33 public boolean matches(Object actual) { method in class:Find
Same.java 33 public boolean matches(Object actual) { method in class:Same
ArrayEquals.java 31 public boolean matches(Object actual) { method in class:ArrayEquals
61 return super.matches(actual);
  /external/guava/src/com/google/common/io/
PatternFilenameFilter.java 55 return pattern.matcher(fileName).matches();
  /external/proguard/lib/
retrace.jar 
  /external/webkit/Source/WebCore/page/
UserContentURLPattern.h 48 bool matches(const KURL&) const;
  /external/webkit/Source/WebKit2/Shared/
WebUserContentURLPattern.h 46 bool matchesURL(const String& url) const { return m_pattern.matches(WebCore::KURL(WebCore::ParsedURLString, url)); }
  /packages/apps/Browser/src/com/android/browser/
UrlUtils.java 64 if (m.matches()) {
109 if (matcher.matches()) {
116 if (hasSpace && Patterns.WEB_URL.matcher(inUrl).matches()) {
122 if (Patterns.WEB_URL.matcher(inUrl).matches()) {
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
LevenshteinSuggestionFormatter.java 45 final int[] matches = findMatches(queryTokens, suggestionTokens); local
49 Log.d(TAG, "matches = " + matches);
53 final int matchesLen = matches.length;
57 int thisMatch = matches[i];
78 * position i means that target token i matches source token n. A negative value means that
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
NameDistance.java 110 int matches = 0; local
127 matches++;
133 if (matches == 0) {
151 float m = matches;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/build/
BaseBuilderTest.java 31 assertEquals(true, m.matches());
  /external/chromium/chrome/browser/history/
in_memory_url_index_unittest.cc 193 ScoredHistoryMatches matches = url_index_->HistoryItemsForTerms(terms); local
194 EXPECT_EQ(1U, matches.size());
197 EXPECT_EQ(5, matches[0].url_info.id());
198 EXPECT_EQ("http://drudgereport.com/", matches[0].url_info.url().spec());
199 EXPECT_EQ(ASCIIToUTF16("DRUDGE REPORT 2010"), matches[0].url_info.title());
204 matches = url_index_->HistoryItemsForTerms(terms);
205 ASSERT_EQ(2U, matches.size());
207 EXPECT_GE(matches[0].raw_score, matches[1].raw_score);
213 matches = url_index_->HistoryItemsForTerms(terms)
252 ScoredHistoryMatches matches = url_index_->HistoryItemsForTerms(terms); local
273 ScoredHistoryMatches matches = url_index_->HistoryItemsForTerms(terms); local
510 ScoredHistoryMatches matches = url_index_->HistoryItemsForTerms(terms); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/xml/
HyperlinksTest.java 56 assertTrue(Hyperlinks.CLASS_PATTERN.matcher("com.android.Foo").matches()); method
58 matches()); method
59 assertTrue(Hyperlinks.CLASS_PATTERN.matcher("com.android.Foo$Inner").matches()); method
63 //assertFalse(XmlHyperlinkResolver.CLASS_PATTERN.matcher("Foo.bar").matches());
64 assertTrue(Hyperlinks.CLASS_PATTERN.matcher("Foo.bar").matches()); method
66 assertFalse(Hyperlinks.CLASS_PATTERN.matcher("LinearLayout").matches()); method
67 assertFalse(Hyperlinks.CLASS_PATTERN.matcher(".").matches()); method
68 assertFalse(Hyperlinks.CLASS_PATTERN.matcher(".F").matches()); method
69 assertFalse(Hyperlinks.CLASS_PATTERN.matcher("f.").matches()); method
70 assertFalse(Hyperlinks.CLASS_PATTERN.matcher("Foo").matches()); method
71 assertFalse(Hyperlinks.CLASS_PATTERN.matcher("com.android.1Foo").matches()); method
72 assertFalse(Hyperlinks.CLASS_PATTERN.matcher("1com.Foo").matches()); method
    [all...]
  /build/core/
device.mk 65 $(error No matches for device "$(dn)"), \
66 $(error Device "$(dn)" ambiguous: matches $(d)) \
  /cts/libs/vogar-expect/src/vogar/
Expectation.java 104 * Returns true if {@code outcome} matches this expectation.
106 public boolean matches(Outcome outcome) { method in class:Expectation
111 return pattern.matcher(outcome.getOutput()).matches();
  /external/iproute2/ip/
iplink_macvlan.c 41 if (matches(*argv, "mode") == 0) {
55 } else if (matches(*argv, "help") == 0) {
  /external/libvpx/examples/includes/
vp8_doc_tools.php 148 while (preg_match($regexp, $blob, $matches))
150 $geshi = new GeSHi($matches[1], $lang);
  /external/webkit/Source/WebCore/inspector/front-end/
SearchController.js 35 this._matchesElement = document.getElementById("search-results-matches");
44 updateSearchMatchesCount: function(matches, panel)
49 panel.currentSearchMatches = matches;
52 this._updateSearchMatchesCount(WebInspector.currentPanel.currentQuery && matches);
140 _updateSearchMatchesCount: function(matches)
142 if (matches == null) {
147 if (matches) {
148 if (matches === 1)
151 var matchesString = WebInspector.UIString("%d matches", matches);
    [all...]

Completed in 935 milliseconds

1 2 3 4 56 7 8 91011>>