/external/autotest/tko/parsers/test/templates/ |
base.py | 17 """We want to ensure that result matches the golden.
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/ |
ContentVerifierProvider.java | 26 * Return a ContentVerifier that matches the passed in algorithm identifier,
|
/external/chromium-trace/catapult/tracing/tracing/extras/importer/linux_perf/ |
memreclaim_parser.html | 36 // Matches the mm_vmscan_kswapd_wake record 40 // Matches the mm_vmscan_kswapd_sleep record 44 // Matches the mm_vmscan_direct_reclaim_begin record 48 // Matches the mm_vmscan_direct_reclaim_end record
|
/external/clang/lib/Sema/ |
SemaCUDA.cpp | 132 // Calling a function that matches compilation mode is OK. 215 llvm::SmallVectorImpl<T> &Matches, 219 if (Matches.size() <= 1) 222 // Find the best call preference among the functions in Matches. 224 for (auto const &Match : Matches) { 231 for (unsigned I = 0, N = Matches.size(); I != N;) 232 if (S.IdentifyCUDAPreference(Caller, FetchDecl(Matches[I])) < BestCFP) { 233 Matches[I] = Matches[--N]; 234 Matches.resize(N) [all...] |
/external/clang/test/Sema/ |
nowarn-documentation-property.m | 12 /// The predicate that matches the string to be searched for. This
|
/external/curl/docs/libcurl/opts/ |
CURLOPT_WILDCARDMATCH.3 | 48 Question mark matches any (exactly one) character. 56 right bracket and matches exactly one character. Some examples follow: 68 \fB[][-!^]\fP - special case \- matches only '\-', ']', '[', '!' or '^'. These 71 \fB[\\[\\]\\\\]\fP - escape syntax. Matches '[', ']' or '\\'.
|
/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/easymock/src/org/easymock/internal/ |
AlwaysMatcher.java | 25 public boolean matches(Object[] expected, Object[] actual) {
method in class:AlwaysMatcher
|
ArrayMatcher.java | 28 return new ArrayEquals(expected).matches(actual);
|
/external/easymock/src/org/easymock/internal/matchers/ |
Any.java | 32 public boolean matches(Object actual) {
method in class:Any
|
NotNull.java | 32 public boolean matches(Object actual) {
method in class:NotNull
|
Null.java | 31 public boolean matches(Object actual) {
method in class:Null
|
/external/google-breakpad/src/testing/src/ |
gmock-matchers.cc | 46 // Constructs a matcher that matches a const string& whose value is 52 // Constructs a matcher that matches a const string& whose value is 58 // Constructs a matcher that matches a string whose value is equal to s. 61 // Constructs a matcher that matches a string whose value is equal to s.
|
/external/hamcrest/library/src/org/hamcrest/collection/ |
IsArrayContaining.java | 19 if (elementMatcher.matches(item)) {
|
IsIn.java | 22 public boolean matches(Object o) { method in class:IsIn
|
/external/hamcrest/src/org/hamcrest/core/ |
IsInstanceOf.java | 27 public boolean matches(Object item) { method in class:IsInstanceOf
|
IsSame.java | 21 public boolean matches(Object arg) { method in class:IsSame
|
/external/iproute2/ip/ |
iplink_hsr.c | 51 if (matches(*argv, "supervision") == 0) { 57 } else if (matches(*argv, "slave1") == 0) { 63 } else if (matches(*argv, "slave2") == 0) { 69 } else if (matches(*argv, "help") == 0) {
|
/external/iproute2/tc/ |
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) {
|
f_fw.c | 71 if (matches(*argv, "classid") == 0 || 72 matches(*argv, "flowid") == 0) { 80 } else if (matches(*argv, "police") == 0) { 87 } else if (matches(*argv, "action") == 0) {
|
m_action.c | 156 if ((matches(*argv, "change") == 0) || 157 (matches(*argv, "replace") == 0)|| 158 (matches(*argv, "delete") == 0)|| 159 (matches(*argv, "get") == 0)|| 160 (matches(*argv, "add") == 0)) 459 if (matches(*argv, "index") == 0) { 622 if (matches(*argv, "add") == 0) { 624 } else if (matches(*argv, "change") == 0 || 625 matches(*argv, "replace") == 0) { 627 } else if (matches(*argv, "delete") == 0) [all...] |
/external/jsr305/ri/src/main/java/javax/annotation/ |
MatchesPattern.java | 24 if (p.matcher(((String) value)).matches())
|
/external/libchrome/base/process/ |
launch_mac.cc | 16 // exception_mask matches s_exception_mask in
|
/external/libjpeg-turbo/simd/ |
CMakeLists.txt | 50 if(${file} MATCHES jccolor) 55 if(${file} MATCHES jcgray) 60 if(${file} MATCHES jdcolor) 65 if(${file} MATCHES jdmerge)
|
/external/mockito/src/org/mockito/internal/matchers/ |
EqualsWithDelta.java | 26 public boolean matches(Object actual) { method in class:EqualsWithDelta
|