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

<<11121314151617181920>>

  /packages/apps/Nfc/src/com/android/nfc/
NfcDispatcher.java 379 ArrayList<ResolveInfo> matches = new ArrayList<ResolveInfo>(); local
391 // Check each registered activity to see if it matches
397 if (!matches.contains(info.resolveInfo)) {
398 matches.add(info.resolveInfo);
403 if (matches.size() == 1) {
405 ResolveInfo info = matches.get(0);
412 } else if (matches.size() > 1) {
413 // Multiple matches, show a custom activity chooser dialog
417 matches);
440 /** Returns true if the tech list filter matches the techs on the tag *
    [all...]
  /external/regex-re2/util/
pcre.cc 330 int matches = pattern.TryMatch(*str, 0, UNANCHORED, true, vec, kVecSize); local
331 if (matches == 0)
335 if (!pattern.Rewrite(&s, rewrite, *str, vec, matches))
358 // and with a flag saying that this time, ignore empty matches.
364 int matches; local
366 matches = pattern.TryMatch(*str, start, ANCHOR_START, false,
368 if (matches <= 0) {
376 matches = pattern.TryMatch(*str, start, UNANCHORED, true, vec, kVecSize);
377 if (matches <= 0)
385 pattern.Rewrite(&out, rewrite, *str, vec, matches);
405 int matches = pattern.TryMatch(text, 0, UNANCHORED, true, vec, kVecSize); local
561 int matches = TryMatch(text, 0, anchor, true, vec, vecsize); local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
LocalList.java 281 * Returns whether or not this instance matches the given spec.
284 * @return {@code true} iff this instance matches
287 public boolean matches(RegisterSpec otherSpec) { method in class:LocalList.Entry
292 * Returns whether or not this instance matches the spec in
296 * @return {@code true} iff this instance's spec matches
299 public boolean matches(Entry other) { method in class:LocalList.Entry
300 return matches(other.spec);
404 if ((already != null) && e.matches(already)) {
615 if (endEntry.matches(startedLocal)) {
769 if (entry.matches(endedLocal))
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
LocalList.java 281 * Returns whether or not this instance matches the given spec.
284 * @return {@code true} iff this instance matches
287 public boolean matches(RegisterSpec otherSpec) { method in class:LocalList.Entry
292 * Returns whether or not this instance matches the spec in
296 * @return {@code true} iff this instance's spec matches
299 public boolean matches(Entry other) { method in class:LocalList.Entry
300 return matches(other.spec);
404 if ((already != null) && e.matches(already)) {
615 if (endEntry.matches(startedLocal)) {
769 if (entry.matches(endedLocal))
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
LocalList.java 281 * Returns whether or not this instance matches the given spec.
284 * @return {@code true} iff this instance matches
287 public boolean matches(RegisterSpec otherSpec) { method in class:LocalList.Entry
292 * Returns whether or not this instance matches the spec in
296 * @return {@code true} iff this instance's spec matches
299 public boolean matches(Entry other) { method in class:LocalList.Entry
300 return matches(other.spec);
404 if ((already != null) && e.matches(already)) {
615 if (endEntry.matches(startedLocal)) {
769 if (entry.matches(endedLocal))
    [all...]
  /external/iproute2/tc/
f_rsvp.c 195 if (matches(*argv, "session") == 0) {
206 } else if (matches(*argv, "sender") == 0 ||
207 matches(*argv, "flowspec") == 0) {
218 } else if (matches("ipproto", *argv) == 0) {
228 } else if (matches(*argv, "classid") == 0 ||
264 } else if (matches(*argv, "police") == 0) {
p_ip.c 52 if (strcmp(*argv, "tos") == 0 || matches(*argv, "dsfield") == 0) {
71 if (matches(*argv, "precedence") == 0) {
  /external/iptables/iptables/
ip6tables.c 207 exit_printhelp(const struct xtables_rule_match *matches)
282 print_extension_helps(xtables_targets, matches);
759 make_delete_mask(const struct xtables_rule_match *matches,
768 for (matchp = matches; matchp; matchp = matchp->next)
778 for (matchp = matches; matchp; matchp = matchp->next) {
803 struct xtables_rule_match *matches,
810 mask = make_delete_mask(matches, target);
833 struct xtables_rule_match *matches,
840 mask = make_delete_mask(matches, target);
1045 /* some matches don't provide a save function *
    [all...]
iptables.c 220 exit_printhelp(const struct xtables_rule_match *matches)
295 print_extension_helps(xtables_targets, matches);
764 make_delete_mask(const struct xtables_rule_match *matches,
773 for (matchp = matches; matchp; matchp = matchp->next)
783 for (matchp = matches; matchp; matchp = matchp->next) {
808 struct xtables_rule_match *matches,
815 mask = make_delete_mask(matches, target);
838 struct xtables_rule_match *matches,
845 mask = make_delete_mask(matches, target);
1056 /* some matches don't provide a save function *
    [all...]
  /external/iproute2/ip/
xfrm_state.c 1161 if (matches(*argv, "add") == 0)
1164 if (matches(*argv, "update") == 0)
1167 if (matches(*argv, "allocspi") == 0)
1169 if (matches(*argv, "delete") == 0)
1171 if (matches(*argv, "deleteall") == 0 || matches(*argv, "delall") == 0)
1173 if (matches(*argv, "list") == 0 || matches(*argv, "show") == 0
1174 || matches(*argv, "lst") == 0)
1176 if (matches(*argv, "get") == 0
    [all...]
  /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
RootProcessScanner.java 94 return pathname.isDirectory() && Pattern.matches("\\d+", pathname.getName());
156 return !ROOT_PROCESS_WHITELIST_PATTERN.matcher(name).matches()
  /development/tools/idegen/src/
Eclipse.java 72 if (bucket.matches(path)) {
184 private boolean matches(String path) { method in class:Eclipse.Bucket
  /external/chromium/chrome/browser/history/
query_parser_unittest.cc 38 // Short words aren't prefix matches. For Korean Hangul
94 const bool matches; member in struct:TestData2
120 ASSERT_EQ(data[i].matches,
  /external/doclava/src/com/google/doclava/
AttrTagInfo.java 55 if (!m.matches()) {
78 if (!m.matches() || m.group(2).trim().length() != 0) {
  /external/emma/core/java12/com/vladium/emma/filter/
IInclExclFilter.java 130 if (inclusions [i].matches (chars))
144 if (exclusions [x].matches (chars)) return false;
  /external/webkit/Source/WebCore/svg/
SVGFontElement.cpp 135 static bool matches(const String& u1, const String& g1, const String& u2, const String& g2, const SVGKerningPair& kerningPair) function in namespace:WebCore
153 if (matches(u1, g1, u2, g2, *it))
  /frameworks/base/core/java/android/util/
EventLog.java 233 if (comment.matcher(line).matches()) continue;
236 if (!m.matches()) {
  /ndk/sources/host-tools/make-3.81/
implicit.c 245 unsigned int *matches
342 find the stem: the part of the filename that matches the %. */
377 /* Check that the rule pattern matches the text before the stem. */
388 /* Check that the rule pattern matches the text after the stem.
391 common case where the first character matches because it is a
402 specific_rule_matched when it matches. Don't try to use it. */
407 target in MATCHES. If several targets of the same rule match,
410 matches[nrules] = i;
467 find the stem: the part of the filename that matches the %. */
469 + (rule->suffixes[matches[i]] - rule->targets[matches[i]]) - 1
243 unsigned int *matches local
    [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
ExternalSource.java 98 final List<ResolveInfo> matches = pm.queryIntentServices(syncAdapter, local
100 for (ResolveInfo info : matches) {
  /prebuilts/tools/common/easymock-tools/
easymock-3.1.jar 
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
LogCatFilter.java 29 * a message matches the filter's settings.
203 * @return true if the message matches the filter's conditions.
205 public boolean matches(LogCatMessage m) { method in class:LogCatFilter
251 if (matches(m)) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/
VersionCheck.java 83 if (m.matches()) {
145 if (m.matches()) {
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
TemplateSubPatternAssociation.java 119 * @return True if the given mode matches this template's mode
151 public boolean matches(XPathContext xctxt, int targetNode, QName mode) method in class:TemplateSubPatternAssociation
  /external/chromium/chrome/browser/autocomplete/
history_url_provider_unittest.cc 34 // matches.
198 matches_ = autocomplete_->matches();
213 matches_ = autocomplete_->matches();
238 // Test that if we have a synthesized host that matches a suggestion, they
295 // Exact matches should always be best no matter how much more another match
469 matches_ = autocomplete_->matches();
477 matches_ = autocomplete_->matches();
484 // Ensure that we will still produce matches for navigation when there is no
  /external/clang/include/clang/Driver/
Option.h 153 /// matches - Predicate for whether this option is part of the
156 /// Note that matches against options which are an alias should never be
159 bool matches(OptSpecifier ID) const;

Completed in 629 milliseconds

<<11121314151617181920>>