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

1 2 3 4 5 6 7 8 91011>>

  /external/icu4c/i18n/
strmatch.h 26 * An object that matches a fixed input string, implementing the
47 * Construct a matcher that matches the given pattern string.
117 virtual UMatchDegree matches(const Replaceable& text,
193 * set of matches with this segment.
  /external/proguard/src/proguard/classfile/attribute/annotation/visitor/
AnnotationTypeFilter.java 31 * a type that matches a given regular expression.
100 return regularExpressionMatcher.matches(name);
  /external/proguard/src/proguard/classfile/visitor/
MemberDescriptorFilter.java 30 * has a descriptor that matches a given regular expression.
111 return regularExpressionMatcher.matches(name);
MemberNameFilter.java 30 * has a name that matches a given regular expression.
111 return regularExpressionMatcher.matches(name);
  /external/proguard/src/proguard/util/
FileNameParser.java 113 System.out.println(" -> match = "+matcher.matches(args[index]));
ListParser.java 29 * If an entry with a negator matches, a negative match is returned, without
63 * An empty list results in a StringMatcher that matches any string.
129 System.out.println(" -> match = "+matcher.matches(args[index]));
NameParser.java 27 * If a name with a negator matches, a negative match is returned, without
98 System.out.println(" -> match = "+matcher.matches(args[index]));
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Shader.cpp 246 int matches = sscanf(input, "static %255s %255s", varyingType, varyingName); local
248 if (matches != 2)
476 int matches = sscanf(input, "static %255s _%255s", attributeType, attributeName); local
478 if (matches != 2)
  /frameworks/base/libs/hwui/
Patch.h 56 bool matches(const int32_t* xDivs, const int32_t* yDivs, const uint32_t colorKey);
  /libcore/luni/src/main/java/libcore/util/
ZoneInfoDB.java 237 List<String> matches = new ArrayList<String>(); local
240 matches.add(ids[i]);
243 return matches.toArray(new String[matches.size()]);
  /packages/apps/Email/emailcommon/src/org/apache/commons/io/filefilter/
RegexFileFilter.java 112 * Checks to see if the filename matches one of the regular expressions.
116 * @return true if the filename matches one of the regular expressions
119 return (pattern.matcher(name).matches());
  /packages/apps/Email/tests/src/com/android/emailcommon/utility/
SSLUtilsTest.java 34 assertTrue(Pattern.matches(SAFE_SCHEME_PATTERN, s));
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactMatcher.java 71 // Returned value when we found multiple matches and that was not allowed
99 * with the former rather than the latter. This is why "reverse" matches have slightly lower
100 * scores than direct matches.
417 * Returns matches in the order of descending score.
421 List<MatchScore> matches = mScoreList.subList(0, mScoreCount); local
422 Collections.sort(matches);
425 MatchScore matchScore = matches.get(i);
433 return matches.subList(0, count);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
LogCatMessageParser.java 71 if (matcher.matches()) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/animator/
AnimationContentAssist.java 118 Map<String, AttributeDescriptor> matches = local
135 matches.put(name, desc);
144 new ArrayList<AttributeDescriptor>(matches.size());
145 sorted.addAll(matches.values());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
MatchingStrategy.java 36 public boolean matches(IEditorReference editorRef, IEditorInput input) { method in class:MatchingStrategy
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/resources/
ResourcesContentAssist.java 106 Map<String, AttributeDescriptor> matches = local
115 matches.put(name, desc);
121 new ArrayList<AttributeDescriptor>(matches.size());
122 sorted.addAll(matches.values());
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
PxUsageDetector.java 79 if (value.endsWith("px") && value.matches("\\d+px")) { //$NON-NLS-1$
  /packages/apps/Nfc/src/com/android/nfc/
NfcDispatcher.java 208 ArrayList<ResolveInfo> matches = new ArrayList<ResolveInfo>(); local
211 // Check each registered activity to see if it matches
217 if (!matches.contains(info.resolveInfo)) {
218 matches.add(info.resolveInfo);
223 if (matches.size() == 1) {
226 ResolveInfo info = matches.get(0);
231 } else if (matches.size() > 1) {
232 // Multiple matches, show a custom activity chooser dialog
237 matches);
242 // No matches, move o
    [all...]
  /external/clang/lib/Driver/
HostInfo.cpp 94 if (A->getOption().matches(options::OPT_m32)) {
200 (A->getOption().matches(options::OPT_m32)) ? "i386" : "x86_64";
204 (A->getOption().matches(options::OPT_m32)) ? "powerpc" : "powerpc64";
351 (A->getOption().matches(options::OPT_m32)) ? "i386" : "x86_64";
355 (A->getOption().matches(options::OPT_m32)) ? "powerpc" : "powerpc64";
410 (A->getOption().matches(options::OPT_m32)) ? "i386" : "x86_64";
414 (A->getOption().matches(options::OPT_m32)) ? "powerpc" : "powerpc64";
568 (A->getOption().matches(options::OPT_m32)) ? "i386" : "x86_64";
572 (A->getOption().matches(options::OPT_m32)) ? "powerpc" : "powerpc64";
635 (A->getOption().matches(options::OPT_m32)) ? "i386" : "x86_64"
    [all...]
  /external/pcre/
pcrecpp.cc 334 int matches = TryMatch(*str, 0, UNANCHORED, true, vec, kVecSize); local
335 if (matches == 0)
339 if (!Rewrite(&s, rewrite, *str, vec, matches))
394 // and with a flag saying that this time, ignore empty matches.
400 int matches; local
402 matches = TryMatch(*str, start, ANCHOR_START, false, vec, kVecSize);
403 if (matches <= 0) {
432 matches = TryMatch(*str, start, UNANCHORED, true, vec, kVecSize);
433 if (matches <= 0)
440 Rewrite(&out, rewrite, *str, vec, matches);
460 int matches = TryMatch(text, 0, UNANCHORED, true, vec, kVecSize); local
566 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/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) {
  /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...]

Completed in 3187 milliseconds

1 2 3 4 5 6 7 8 91011>>