/external/libcxx/utils/sym_check/sym_check/ |
match.py | 16 report += ' No matches found\n\n' 21 report += ' MATCHES: %s\n' % m['name']
|
/external/libdivsufsort/CMakeModules/ |
ProjectCPack.cmake | 17 IF(${CPACK_SYSTEM_NAME} MATCHES Windows) 23 ENDIF(${CPACK_SYSTEM_NAME} MATCHES Windows)
|
/external/mockito/src/org/mockito/internal/matchers/ |
And.java | 26 public boolean matches(Object actual) { method in class:And 28 if (!matcher.matches(actual)) {
|
Or.java | 26 public boolean matches(Object actual) { method in class:Or 28 if (matcher.matches(actual)) {
|
AnyVararg.java | 18 public boolean matches(Object arg) {
method in class:AnyVararg
|
/external/opencv3/modules/core/ |
CMakeLists.txt | 8 if(WINRT AND CMAKE_SYSTEM_NAME MATCHES WindowsStore AND CMAKE_SYSTEM_VERSION MATCHES "8.0")
|
/external/google-breakpad/src/testing/gtest/include/gtest/ |
gtest-death-test.h | 120 // c matches any literal character c 121 // \\d matches any decimal digit 122 // \\D matches any character that's not a decimal digit 123 // \\f matches \f 124 // \\n matches \n 125 // \\r matches \r 126 // \\s matches any ASCII whitespace, including \n 127 // \\S matches any character that's not a whitespace 128 // \\t matches \t 129 // \\v matches \ [all...] |
/external/gtest/include/gtest/ |
gtest-death-test.h | 120 // c matches any literal character c 121 // \\d matches any decimal digit 122 // \\D matches any character that's not a decimal digit 123 // \\f matches \f 124 // \\n matches \n 125 // \\r matches \r 126 // \\s matches any ASCII whitespace, including \n 127 // \\S matches any character that's not a whitespace 128 // \\t matches \t 129 // \\v matches \ [all...] |
/external/guice/core/src/com/google/inject/matcher/ |
Matchers.java | 38 * Returns a matcher which matches any input. 47 public boolean matches(Object o) { method in class:Matchers.Any 76 public boolean matches(T t) { method in class:Matchers.Not 77 return !delegate.matches(t); 104 * Returns a matcher which matches elements (methods, classes, etc.) 121 public boolean matches(AnnotatedElement element) { method in class:Matchers.AnnotatedWithType 142 * Returns a matcher which matches elements (methods, classes, etc.) 159 public boolean matches(AnnotatedElement element) { method in class:Matchers.AnnotatedWith 181 * Returns a matcher which matches subclasses of the given type (as well as 196 public boolean matches(Class subclass) method in class:Matchers.SubclassesOf 231 public boolean matches(Object other) { method in class:Matchers.Only 266 public boolean matches(Object other) { method in class:Matchers.IdenticalTo 303 public boolean matches(Class c) { method in class:Matchers.InPackage 344 public boolean matches(Class c) { method in class:Matchers.InSubpackage 381 public boolean matches(Method m) { method in class:Matchers.Returns [all...] |
/external/llvm/utils/unittest/googletest/include/gtest/ |
gtest-death-test.h | 109 // c matches any literal character c 110 // \\d matches any decimal digit 111 // \\D matches any character that's not a decimal digit 112 // \\f matches \f 113 // \\n matches \n 114 // \\r matches \r 115 // \\s matches any ASCII whitespace, including \n 116 // \\S matches any character that's not a whitespace 117 // \\t matches \t 118 // \\v matches \ [all...] |
/external/mesa3d/src/gtest/include/gtest/ |
gtest-death-test.h | 109 // c matches any literal character c 110 // \\d matches any decimal digit 111 // \\D matches any character that's not a decimal digit 112 // \\f matches \f 113 // \\n matches \n 114 // \\r matches \r 115 // \\s matches any ASCII whitespace, including \n 116 // \\S matches any character that's not a whitespace 117 // \\t matches \t 118 // \\v matches \ [all...] |
/external/opencv3/modules/shape/src/ |
tps_trans.cpp | 72 virtual void estimateTransformation(InputArray transformingShape, InputArray targetShape, std::vector<DMatch> &matches); 202 std::vector<DMatch> matches; local 208 matches.push_back(_matches[i]); 213 Mat shape1((int)matches.size(),2,CV_32F); // transforming shape 214 Mat shape2((int)matches.size(),2,CV_32F); // target shape 215 for (int i=0, end = (int)matches.size(); i<end; i++) 217 Point2f pt1=pts1.at<Point2f>(0,matches[i].queryIdx); 221 Point2f pt2=pts2.at<Point2f>(0,matches[i].trainIdx); 230 Mat matK((int)matches.size(),(int)matches.size(),CV_32F) [all...] |
/external/protobuf/gtest/include/gtest/ |
gtest-death-test.h | 109 // c matches any literal character c 110 // \\d matches any decimal digit 111 // \\D matches any character that's not a decimal digit 112 // \\f matches \f 113 // \\n matches \n 114 // \\r matches \r 115 // \\s matches any ASCII whitespace, including \n 116 // \\S matches any character that's not a whitespace 117 // \\t matches \t 118 // \\v matches \ [all...] |
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/ |
gtest-death-test.h | 120 // c matches any literal character c 121 // \\d matches any decimal digit 122 // \\D matches any character that's not a decimal digit 123 // \\f matches \f 124 // \\n matches \n 125 // \\r matches \r 126 // \\s matches any ASCII whitespace, including \n 127 // \\S matches any character that's not a whitespace 128 // \\t matches \t 129 // \\v matches \ [all...] |
/ndk/sources/third_party/googletest/googletest/include/gtest/ |
gtest-death-test.h | 120 // c matches any literal character c 121 // \\d matches any decimal digit 122 // \\D matches any character that's not a decimal digit 123 // \\f matches \f 124 // \\n matches \n 125 // \\r matches \r 126 // \\s matches any ASCII whitespace, including \n 127 // \\S matches any character that's not a whitespace 128 // \\t matches \t 129 // \\v matches \ [all...] |
/bionic/tests/ |
regex_test.cpp | 42 regmatch_t matches[1]; local 44 ASSERT_EQ(0, regexec(&re, "abc", 1, matches, 0)); 45 ASSERT_EQ(1, matches[0].rm_so); 46 ASSERT_EQ(2, matches[0].rm_eo);
|
/external/droiddriver/src/io/appium/droiddriver/finders/ |
MatchFinder.java | 47 if (matches(context)) { 62 * Returns true if the {@code element} matches this finder. This can be used 67 * @return true if the element matches 69 public final boolean matches(UiElement element) { method in class:MatchFinder
|
/external/hamcrest/integration/src/org/hamcrest/ |
MatcherAssert.java | 12 if (!matcher.matches(actual)) {
|
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/ast/ |
PackageMatcher.java | 23 * Matches the package name associated with ASTNodes. 33 public boolean matches(CompilationUnit cu) { method in class:PackageMatcher 35 return matches(aPackage); 38 public boolean matches(PackageDeclaration packageDeclaration) { method in class:PackageMatcher
|
/external/iptables/extensions/ |
libip6t_dst.man | 1 This module matches the parameters in Destination Options header
|
libip6t_eui64.man | 1 This module matches the EUI-64 part of a stateless autoconfigured IPv6 address.
|
libip6t_hbh.man | 1 This module matches the parameters in Hop-by-Hop Options header
|
libxt_tcpmss.man | 1 This matches the TCP MSS (maximum segment size) field of the TCP header. You can only use this on TCP SYN or SYN/ACK packets, since the MSS is only negotiated during the TCP handshake at connection startup time.
|
/external/iptables/include/linux/netfilter_ipv6/ |
ip6t_ipv6header.h | 1 /* ipv6header match - matches IPv6 packets based
|
/external/kernel-headers/original/uapi/linux/netfilter_ipv6/ |
ip6t_ipv6header.h | 1 /* ipv6header match - matches IPv6 packets based
|