HomeSort by relevance Sort by last modified time
    Searched refs:matches (Results 476 - 500 of 1488) sorted by null

<<11121314151617181920>>

  /development/apps/DumpViewer/app/src/main/java/com/android/dumpviewer/utils/
Utils.java 38 if (sSafeStringPattern.matcher(s).matches()) {
  /development/tools/findunused/
findunusedtranslations 39 @matches = (glob($pattern1), glob($pattern2));
55 for $match (@matches) {
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/zstandard/
ZstdUtils.java 99 * Checks if the signature matches what is expected for a Zstandard file.
103 * @return true if signature matches the Ztstandard or skippable
106 public static boolean matches(final byte[] signature, final int length) { method in class:ZstdUtils
  /external/apache-commons-compress/src/test/java/org/apache/commons/compress/compressors/snappy/
FramedSnappyCompressorInputStreamTest.java 41 assertFalse(FramedSnappyCompressorInputStream.matches(new byte[10], 10));
47 assertFalse(FramedSnappyCompressorInputStream.matches(b, 9));
48 assertTrue(FramedSnappyCompressorInputStream.matches(b, 10));
49 assertTrue(FramedSnappyCompressorInputStream.matches(b, 12));
  /external/autotest/frontend/client/src/autotest/tko/
HeaderField.java 74 if (sqlName.matches(".+\\(.+\\)")) {
  /external/clang/test/CXX/temp/temp.spec/
no-body.cpp 66 template<> void f0<int>(int) { } // expected-error {{no function template matches function template specialization 'f0'}}
79 expected-error {{no function template matches function template specialization 'f1'}}
  /external/cldr/tools/java/org/unicode/cldr/test/
CheckAttributeValues.java 193 if (matcherPattern.matcher.matches(attributeValue)) {
263 if (!localeMatcher.matches(cldrFileToCheck.getLocaleID())) {
472 public boolean matches(String value) { method in class:CheckAttributeValues.RegexMatcher
474 return matcher.matches();
486 public boolean matches(String value) { method in class:CheckAttributeValues.CollectionMatcher
501 public boolean matches(String value) { method in class:CheckAttributeValues.OrMatcher
502 return a.matches(value) || b.matches(value);
514 public boolean matches(String value) { method in class:CheckAttributeValues.ListMatcher
518 if (!other.matches(values[i]))
548 public boolean matches(String value) { method in class:CheckAttributeValues.LocaleMatcher
    [all...]
CheckMetazones.java 24 if (value.matches(".*\\p{Nd}.*")) {
CheckNames.java 22 if (!YEARS_NOT_ALLOWED.matcher(path).matches() ||
  /external/easymock/src/org/easymock/
AbstractMatcher.java 38 * Checks whether an expected argument matches an actual argument; the method
40 * {@link AbstractMatcher#matches(Object[], Object[])}. The arguments
68 * Checks whether an expected argument array matches an actual argument array.
82 public boolean matches(Object[] expected, Object[] actual) { method in class:AbstractMatcher
  /external/grpc-grpc-java/context/src/test/java/io/grpc/
StaticTestingClassLoader.java 39 if (!classesToDefine.matcher(name).matches()) {
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
TypeSafeMatcher.java 64 public final boolean matches(Object item) { method in class:TypeSafeMatcher
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
IsEqual.java 22 public boolean matches(Object actualValue) { method in class:IsEqual
65 * Creates a matcher that matches when the examined object is logically equal to the specified
IsInstanceOf.java 40 protected boolean matches(Object item, Description mismatch) { method in class:IsInstanceOf
60 * Creates a matcher that matches when the examined object is an instance of the specified <code>type</code>,
75 * Creates a matcher that matches when the examined object is an instance of the specified <code>type</code>,
  /external/hamcrest/hamcrest-core/src/test/java/org/hamcrest/
FeatureMatcherTest.java 30 resultMatcher.matches(new ShouldNotMatch());
MatcherAssertTest.java 66 public boolean matches(Object item) {
  /external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/collection/
IsArrayContaining.java 12 * Matches if an array contains an item satisfying a nested matcher.
24 if (elementMatcher.matches(item)) {
44 * Creates a matcher for arrays that matches when the examined array contains at least one item
IsArrayContainingInAnyOrder.java 25 return iterableMatcher.matches(Arrays.asList(item));
41 * Creates an order agnostic matcher for arrays that matches when each item in the
65 * Creates an order agnostic matcher for arrays that matches when each item in the
88 * <p>Creates an order agnostic matcher for arrays that matches when each item in the
IsIn.java 23 public boolean matches(Object o) { method in class:IsIn
34 * Creates a matcher that matches when the examined object is found within the
51 * Creates a matcher that matches when the examined object is found within the
65 * Creates a matcher that matches when the examined object is found within the
82 * Creates a matcher that matches when the examined object is found within the
96 * Creates a matcher that matches when the examined object is equal to one of the
113 * Creates a matcher that matches when the examined object is equal to one of the
  /external/hamcrest/hamcrest-library/src/test/java/org/hamcrest/collection/
IsArrayTest.java 51 @Override public boolean matches(Object item) { return false; }
  /external/icu/android_icu4j/src/main/java/android/icu/text/
BytesDictionaryMatcher.java 46 public int matches(CharacterIterator text_, int maxLength, int[] lengths, int[] count_, int limit, int[] values) { method in class:BytesDictionaryMatcher
CharsDictionaryMatcher.java 25 public int matches(CharacterIterator text_, int maxLength, int[] lengths, int[] count_, int limit, int[] values) { method in class:CharsDictionaryMatcher
  /external/icu/icu4c/source/i18n/
strmatch.h 28 * An object that matches a fixed input string, implementing the
49 * Construct a matcher that matches the given pattern string.
119 virtual UMatchDegree matches(const Replaceable& text,
195 * set of matches with this segment.
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CharsDictionaryMatcher.java 24 public int matches(CharacterIterator text_, int maxLength, int[] lengths, int[] count_, int limit, int[] values) { method in class:CharsDictionaryMatcher
  /external/iproute2/ip/
ipnetconf.c 235 if (matches(*argv, "show") == 0 ||
236 matches(*argv, "lst") == 0 ||
237 matches(*argv, "list") == 0)
239 if (matches(*argv, "help") == 0)

Completed in 901 milliseconds

<<11121314151617181920>>