/external/guava/guava/src/com/google/common/base/ |
Splitter.java | 206 * @throws IllegalArgumentException if {@code separatorPattern} matches the 212 checkArgument(!separatorPattern.matcher("").matches(), 244 * @throws IllegalArgumentException if {@code separatorPattern} matches the 509 while (start < end && trimmer.matches(toSplit.charAt(start))) { 512 while (end > start && trimmer.matches(toSplit.charAt(end - 1))) { 527 while (end > start && trimmer.matches(toSplit.charAt(end - 1))) {
|
/external/hamcrest/src/org/hamcrest/core/ |
IsEqual.java | 24 public boolean matches(Object arg) { method in class:IsEqual
|
/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/libphonenumber/java/src/com/android/i18n/phonenumbers/ |
ShortNumberUtil.java | 58 * Returns true if the number exactly matches an emergency service number in the given region. 65 * @return if the number exactly matches an emergency services number in the given region. 90 ? emergencyNumberPattern.matcher(normalizedNumber).matches()
|
/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/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));
|
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/ |
LogCatMessageParser.java | 72 if (matcher.matches()) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/animator/ |
AnimationContentAssist.java | 120 Map<String, AttributeDescriptor> matches = local 137 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/ |
LayoutEditorMatchingStrategy.java | 38 public boolean matches(IEditorReference editorRef, IEditorInput input) { method in class:LayoutEditorMatchingStrategy
|
/sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/ |
PxUsageDetector.java | 74 if (value.endsWith("px") && value.matches("\\d+px")) { //$NON-NLS-1$
|
/sdk/sdkstats/src/com/android/sdkstats/ |
SdkStatsService.java | 271 if (m.matches()) { 301 if (m.matches()) { 371 if (!app.matches("\\w+")) { //$NON-NLS-1$ 381 if (!part.matches("\\d+")) { //$NON-NLS-1$
|
/packages/apps/Nfc/src/com/android/nfc/ |
NfcDispatcher.java | 364 ArrayList<ResolveInfo> matches = new ArrayList<ResolveInfo>(); local 367 // Check each registered activity to see if it matches 373 if (!matches.contains(info.resolveInfo)) { 374 matches.add(info.resolveInfo); 379 if (matches.size() == 1) { 381 ResolveInfo info = matches.get(0); 388 } else if (matches.size() > 1) { 389 // Multiple matches, show a custom activity chooser dialog 393 matches); 416 /** 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...] |