Home
last modified time | relevance | path

Searched refs:anything (Results 1 – 25 of 871) sorted by relevance

12345678910>>...35

/external/hamcrest/hamcrest-library/src/test/java/org/hamcrest/beans/
DHasPropertyWithValueTest.java15 import static org.hamcrest.core.IsAnything.anything;
33 return hasProperty("irrelevant", anything()); in createMatcher()
50 hasProperty("nonExistentProperty", anything()), shouldNotMatch); in testDoesNotMatchInfolessBeanWithoutMatchedNamedProperty()
55 hasProperty("writeOnlyProperty", anything()), shouldNotMatch); in testDoesNotMatchWriteOnlyProperty()
63 assertMatches("property with value", hasProperty( "property", anything()), beanWithInfo); in testMatchesPropertyAndValue()
68 hasProperty( "property", anything()).describeMismatch(beanWithInfo, description); in testDoesNotWriteMismatchIfPropertyMatches()
73 …assertMismatchDescription("No property \"honk\"", hasProperty( "honk", anything()), shouldNotMatch… in testDescribesMissingPropertyMismatch()
/external/hamcrest/hamcrest-core/src/test/java/org/hamcrest/core/
DDescribedAsTest.java8 import static org.hamcrest.core.IsAnything.anything;
15 Matcher<Object> matcher = describedAs("irrelevant", anything()); in copesWithNullsAndUnknownTypes()
23 Matcher<?> matcher = describedAs("my description", anything()); in overridesDescriptionOfOtherMatcherWithThatPassedToConstructor()
30 Matcher<?> matcher = describedAs("value 1 = %0, value 2 = %1", anything(), 33, 97); in appendsValuesToDescription()
DIsAnythingTest.java8 import static org.hamcrest.core.IsAnything.anything;
12 private final Matcher<Object> matcher = anything();
32 assertDescription(description, anything(description)); in canOverrideDescription()
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/collection/
DIsMapContaining.java10 import static org.hamcrest.core.IsAnything.anything;
88 return new IsMapContaining<K,Object>(keyMatcher, anything()); in hasKey()
101 return new IsMapContaining<K,Object>(equalTo(key), anything()); in hasKey()
114 return new IsMapContaining<Object,V>(anything(), valueMatcher); in hasValue()
127 return new IsMapContaining<Object,V>(anything(), equalTo(value)); in hasValue()
/external/compiler-rt/lib/builtins/
Dfp_add_impl.inc26 // NaN + anything = qNaN
28 // anything + NaN = qNaN
34 // +/-infinity + anything remaining = +/- infinity
38 // anything remaining + +/-infinity = +/-infinity
41 // zero + anything = anything
48 // anything + zero = anything
77 // anything.)
Dfp_mul_impl.inc32 // NaN * anything = qNaN
34 // anything * NaN = qNaN
51 // zero * anything = +/- zero
53 // anything * zero = +/- zero
65 // won't hurt anything.)
/external/hamcrest/hamcrest-library/src/test/java/org/hamcrest/collection/
DIsMapContainingTest.java10 import static org.hamcrest.core.IsAnything.anything;
42 assertMismatchDescription("was null", hasEntry(anything(), anything()), null); in testDoesNotMatchNull()
/external/curl/tests/data/
Dtest9437 https://test.anything.really.com:94 --proxy1.0 %HOSTIP:%HTTPPORT
51 CONNECT test.anything.really.com:94 HTTP/1.0
53 Host: test.anything.really.com:94
Dtest27656 "http://%HOSTIP:%HTTPPORT/want?uri=http://anything/276?secondq/276" -L
66 GET /want?uri=http://anything/276?secondq/276 HTTP/1.1
/external/v8/tools/clang/plugins/tests/
Dvirtual_base_method_also_final.txt7 …pp:10:3: warning: [chromium-style] The virtual method does not override anything and is final; con…
16 …pp:13:3: warning: [chromium-style] The virtual method does not override anything and is final; con…
25 …pp:16:3: warning: [chromium-style] The virtual method does not override anything and is final; con…
/external/llvm/test/Transforms/GVN/
Dpr14166.ll6 call void @anything(<2 x i32>* %v1)
15 ; CHECK: call void @anything(<2 x i32>* %v1)
26 declare void @anything(<2 x i32>*)
/external/libcxx/utils/symcheck-blacklists/
Dlinux_blacklist.txt16 # anything using __hidden_allocator
18 # anything using __sso_allocator
Dosx_blacklist.txt16 # anything using __hidden_allocator
18 # anything using __sso_allocator
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
DIsAnything.java36 public static Matcher<Object> anything() { in anything() method in IsAnything
47 public static Matcher<Object> anything(String description) { in anything() method in IsAnything
/external/clang/unittests/ASTMatchers/
DASTMatchersTraversalTest.cpp638 cxxConstructorDecl(hasAnyConstructorInitializer(anything())))); in TEST()
644 cxxConstructorDecl(hasAnyConstructorInitializer(anything())))); in TEST()
985 forStmt(hasCondition(anything())))); in TEST()
987 forStmt(hasLoopInit(anything())))); in TEST()
992 cxxForRangeStmt(hasLoopVariable(anything())))); in TEST()
1002 forStmt(hasLoopInit(anything())))); in TEST()
1066 pointsTo(TypeMatcher(anything())))))); in TEST()
1077 pointsTo(TypeMatcher(anything())))))); in TEST()
1084 unless(anything()))))); in TEST()
1088 unless(anything()))))); in TEST()
[all …]
/external/iptables/extensions/
Dlibipt_ttl.t7 # not possible have anything greater than 255, TTL is 8-bit long
10 # not possible have anything below 0
/external/icu/icu4c/source/config/
Dicu.pc.in5 # CFLAGS contains only anything end users should set
7 # CXXFLAGS contains only anything end users should set
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/
D2008-06-13-VolatileLoadStore.ll6 @anything = global i64 0 ; <i64*> [#uses=1]
14 volatile store i64 %b2, i64* @anything ; may transform to store of double
/external/llvm/test/CodeGen/X86/
D2008-06-13-VolatileLoadStore.ll6 @anything = global i64 0 ; <i64*> [#uses=1]
14 store volatile i64 %b2, i64* @anything ; may transform to store of double
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
DCoreMatchers.java147 public static org.hamcrest.Matcher<java.lang.Object> anything() { in anything() method in CoreMatchers
148 return org.hamcrest.core.IsAnything.anything(); in anything()
158 public static org.hamcrest.Matcher<java.lang.Object> anything(java.lang.String description) { in anything() method in CoreMatchers
159 return org.hamcrest.core.IsAnything.anything(description); in anything()
/external/swiftshader/third_party/LLVM/test/CodeGen/CellSPU/
Dshift_ops.ll62 ; Should not generate anything other than the return, arg1 << 0 = arg1
84 ; Should not generate anything other than the return, arg1 << 0 = arg1
106 ; Should not generate anything other than the return, arg1 << 0 = arg1
162 ; Should not generate anything other than the return, arg1 << 0 = arg1
184 ; Should not generate anything other than the return, arg1 << 0 = arg1
206 ; Should not generate anything other than the return, arg1 << 0 = arg1
/external/clang/unittests/AST/
DStmtPrinterTest.cpp199 cxxMemberCallExpr(anything()).bind("id"), in TEST()
213 cxxMemberCallExpr(anything()).bind("id"), in TEST()
/external/libmojo/base/android/linker/
DDEPS2 # This code cannot depend on anything from base/
/external/llvm/test/Linker/
Dlinknamedmdnode2.ll1 ; This file is used by linknamedmdnode.ll, so it doesn't actually do anything itself
/external/swiftshader/third_party/LLVM/test/Linker/
Dlinknamedmdnode2.ll1 ; This file is used by linknamedmdnode.ll, so it doesn't actually do anything itself

12345678910>>...35