Home
last modified time | relevance | path

Searched full:anything (Results 1 – 25 of 7710) sorted by relevance

12345678910>>...309

/external/grpc-grpc/tools/buildgen/plugins/
Dcheck_attrs.py17 def anything(): function
37 "deps": anything(),
38 "headers": anything(),
39 "plugin": anything(),
40 "public_headers": anything(),
41 "src": anything(),
42 "uses": anything(),
45 "asm_src": anything(),
46 "baselib": anything(),
48 "build_system": anything(),
[all …]
/external/rust/crates/grpcio-sys/grpc/tools/buildgen/plugins/
Dcheck_attrs.py17 def anything(): function
33 'deps': anything(),
34 'headers': anything(),
35 'plugin': anything(),
36 'public_headers': anything(),
37 'src': anything(),
38 'uses': anything(),
41 'asm_src': anything(),
42 'baselib': anything(),
44 'build_system': anything(),
[all …]
/external/robolectric/robolectric/src/test/java/org/robolectric/shadows/
DShadowTrafficStatsTest.java15 int anything = -2; in allUidSpecificAccessorsAreStubbed() local
17 assertThat(TrafficStats.getUidTxBytes(anything)).isEqualTo(TrafficStats.UNSUPPORTED); in allUidSpecificAccessorsAreStubbed()
18 assertThat(TrafficStats.getUidRxBytes(anything)).isEqualTo(TrafficStats.UNSUPPORTED); in allUidSpecificAccessorsAreStubbed()
19 assertThat(TrafficStats.getUidTxPackets(anything)).isEqualTo(TrafficStats.UNSUPPORTED); in allUidSpecificAccessorsAreStubbed()
20 assertThat(TrafficStats.getUidRxPackets(anything)).isEqualTo(TrafficStats.UNSUPPORTED); in allUidSpecificAccessorsAreStubbed()
21 assertThat(TrafficStats.getUidTcpTxBytes(anything)).isEqualTo(TrafficStats.UNSUPPORTED); in allUidSpecificAccessorsAreStubbed()
22 assertThat(TrafficStats.getUidTcpRxBytes(anything)).isEqualTo(TrafficStats.UNSUPPORTED); in allUidSpecificAccessorsAreStubbed()
23 assertThat(TrafficStats.getUidUdpTxBytes(anything)).isEqualTo(TrafficStats.UNSUPPORTED); in allUidSpecificAccessorsAreStubbed()
24 assertThat(TrafficStats.getUidUdpRxBytes(anything)).isEqualTo(TrafficStats.UNSUPPORTED); in allUidSpecificAccessorsAreStubbed()
25 assertThat(TrafficStats.getUidTcpTxSegments(anything)).isEqualTo(TrafficStats.UNSUPPORTED); in allUidSpecificAccessorsAreStubbed()
[all …]
/external/rust/crates/googletest/src/matchers/
Danything_matcher.rs21 /// Matches anything. This matcher always succeeds.
30 /// verify_that!(option, some(anything()))?;
35 pub fn anything<T: Debug + ?Sized>() -> impl Matcher<ActualT = T> { in anything() function
36 Anything::<T>(Default::default()) in anything()
39 struct Anything<T: ?Sized>(PhantomData<T>); struct
41 impl<T: Debug + ?Sized> Matcher for Anything<T> { implementation
50 MatcherResult::Match => "is anything".into(), in describe()
58 use super::anything;
64 verify_that!(value, anything())?; in anything_matches_i32()
71 verify_that!(value, anything())?; in anything_matches_str()
[all …]
Dconjunction_matcher.rs80 verify_that!(1, anything().and(anything())) in and_true_true_matches()
85 let result = verify_that!(1, anything().and(not(anything()))); in and_true_false_does_not_match()
91 Expected: is anything, and never matches in and_true_false_does_not_match()
93 which is anything in and_true_false_does_not_match()
101 let result = verify_that!(1, not(anything()).and(anything())); in and_false_true_does_not_match()
107 Expected: never matches, and is anything in and_false_true_does_not_match()
109 which is anything in and_false_true_does_not_match()
117 let result = verify_that!(1, not(anything()).and(not(anything()))); in and_false_false_does_not_match()
125 which is anything in and_false_false_does_not_match()
127 which is anything in and_false_false_does_not_match()
Ddisjunction_matcher.rs72 verify_that!(1, anything().or(anything())) in or_true_true_matches()
77 verify_that!(1, anything().or(not(anything()))) in or_true_false_matches()
82 verify_that!(1, not(anything()).or(anything())) in or_false_true_matches()
87 let result = verify_that!(1, not(anything()).or(not(anything()))); in or_false_false_does_not_match()
95 which is anything in or_false_false_does_not_match()
97 which is anything in or_false_false_does_not_match()
/external/rust/crates/libm/src/math/
Dpow.rs24 // 1. (anything) ** 0 is 1
25 // 2. 1 ** (anything) is 1
26 // 3. (anything except 1) ** NAN is NAN
27 // 4. NAN ** (anything except 0) is NAN
33 // 10. +0 ** (+anything except 0, NAN) is +0
34 // 11. -0 ** (+anything except 0, NAN, odd integer) is +0
35 // 12. +0 ** (-anything except 0, NAN) is +INF, raise divbyzero
36 // 13. -0 ** (-anything except 0, NAN, odd integer) is +INF, raise divbyzero
39 // 16. +INF ** (+anything except 0,NAN) is +INF
40 // 17. +INF ** (-anything except 0,NAN) is +0
[all …]
Datan2.rs22 * ATAN2((anything), NaN ) is NaN;
23 * ATAN2(NAN , (anything) ) is NaN;
24 * ATAN2(+-0, +(anything but NaN)) is +-0 ;
25 * ATAN2(+-0, -(anything but NaN)) is +-pi ;
26 * ATAN2(+-(anything but 0 and NaN), 0) is +-pi/2;
27 * ATAN2(+-(anything but INF and NaN), +INF) is +-0 ;
28 * ATAN2(+-(anything but INF and NaN), -INF) is +-pi;
31 * ATAN2(+-INF, (anything but,0,NaN, and INF)) is +-pi/2;
71 0 | 1 => y, /* atan(+-0,+anything)=+-0 */ in atan2()
72 2 => PI, /* atan(+0,-anything) = PI */ in atan2()
[all …]
/external/musl/src/math/
Datan2.c22 * ATAN2((anything), NaN ) is NaN;
23 * ATAN2(NAN , (anything) ) is NaN;
24 * ATAN2(+-0, +(anything but NaN)) is +-0 ;
25 * ATAN2(+-0, -(anything but NaN)) is +-pi ;
26 * ATAN2(+-(anything but 0 and NaN), 0) is +-pi/2;
27 * ATAN2(+-(anything but INF and NaN), +INF) is +-0 ;
28 * ATAN2(+-(anything but INF and NaN), -INF) is +-pi;
31 * ATAN2(+-INF, (anything but,0,NaN, and INF)) is +-pi/2;
65 case 1: return y; /* atan(+-0,+anything)=+-0 */ in atan2()
66 case 2: return pi; /* atan(+0,-anything) = pi */ in atan2()
[all …]
/external/trusty/musl/src/math/
Datan2.c22 * ATAN2((anything), NaN ) is NaN;
23 * ATAN2(NAN , (anything) ) is NaN;
24 * ATAN2(+-0, +(anything but NaN)) is +-0 ;
25 * ATAN2(+-0, -(anything but NaN)) is +-pi ;
26 * ATAN2(+-(anything but 0 and NaN), 0) is +-pi/2;
27 * ATAN2(+-(anything but INF and NaN), +INF) is +-0 ;
28 * ATAN2(+-(anything but INF and NaN), -INF) is +-pi;
31 * ATAN2(+-INF, (anything but,0,NaN, and INF)) is +-pi/2;
65 case 1: return y; /* atan(+-0,+anything)=+-0 */ in atan2()
66 case 2: return pi; /* atan(+0,-anything) = pi */ in atan2()
[all …]
/external/cronet/third_party/libxml/fuzz/seed_corpus/
Da1a5c9bf5b4d3ea28f7aebe6a36ef925c8684e209 <foo:anything>
11 </foo:anything>
12 <bar:anything>
14 </bar:anything>
15 <anything>
17 </anything>
D7baca30e020070ddde4b2fcae7c72c5caa7cf17810 <foo:anything>
12 </foo:anything>
14 <bar:anything>
16 </bar:anything>
18 <anything>
20 </anything>
/external/libxml2/test/schemas/
Dany1_0.xml9 <foo:anything>
11 </foo:anything>
12 <bar:anything>
14 </bar:anything>
15 <anything>
17 </anything>
Dany2_0.xml10 <foo:anything>
12 </foo:anything>
14 <bar:anything>
16 </bar:anything>
18 <anything>
20 </anything>
/external/rust/crates/minimal-lexical/tests/
Dlibm_tests.rs140 // (NAN ^ anything *but 0* should be NAN) in powd_nan_inputs()
144 // (anything *but 1* ^ NAN should be NAN) in powd_nan_inputs()
151 // (+Infinity ^ positive anything but 0 and NAN should be +Infinity) in powd_infinity_as_base()
154 // (+Infinity ^ negative anything except 0 and NAN should be 0.0) in powd_infinity_as_base()
161 // (-Infinity ^ anything but odd ints should be == -0 ^ (-anything)) in powd_infinity_as_base()
196 // (+0 ^ anything positive but 0 and NAN should be +0) in powd_zero_as_base()
199 // (+0 ^ anything negative but 0 and NAN should be Infinity) in powd_zero_as_base()
204 // (-0 ^ anything positive but 0, NAN, and odd ints should be +0) in powd_zero_as_base()
207 // (-0 ^ anything negative but 0, NAN, and odd ints should be Infinity) in powd_zero_as_base()
222 // (anything ^ 1 should be anything - i.e. the base) in special_cases()
[all …]
/external/fdlibm/
De_atan2.c24 * ATAN2((anything), NaN ) is NaN;
25 * ATAN2(NAN , (anything) ) is NaN;
26 * ATAN2(+-0, +(anything but NaN)) is +-0 ;
27 * ATAN2(+-0, -(anything but NaN)) is +-pi ;
28 * ATAN2(+-(anything but 0 and NaN), 0) is +-pi/2;
29 * ATAN2(+-(anything but INF and NaN), +INF) is +-0 ;
30 * ATAN2(+-(anything but INF and NaN), -INF) is +-pi;
33 * ATAN2(+-INF, (anything but,0,NaN, and INF)) is +-pi/2;
81 case 1: return y; /* ieee_atan(+-0,+anything)=+-0 */
82 case 2: return pi+tiny;/* ieee_atan(+0,-anything) = pi */
[all …]
De_pow.c28 * 1. (anything) ** 0 is 1
29 * 2. (anything) ** 1 is itself
30 * 3. (anything) ** NAN is NAN
31 * 4. NAN ** (anything except 0) is NAN
37 * 10. +0 ** (+anything except 0, NAN) is +0
38 * 11. -0 ** (+anything except 0, NAN, odd integer) is +0
39 * 12. +0 ** (-anything except 0, NAN) is +INF
40 * 13. -0 ** (-anything except 0, NAN, odd integer) is +INF
42 * 15. +INF ** (+anything except 0,NAN) is +INF
43 * 16. +INF ** (-anything except 0,NAN) is +0
[all …]
/external/owasp/sanitizer/lib/htmlparser-1.3/doc/
Dtokenization.txt84 Otherwise: treat it as per the "anything else" entry below.
104 Otherwise: treat it as per the "anything else" entry below.
119 Anything else
178 Anything else
229 Anything else
257 Anything else
286 Parse error. Treat it as per the "anything else" entry below.
292 Anything else
323 Parse error. Treat it as per the "anything else" entry below.
329 Anything else
[all …]
/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/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.)
/external/bazelbuild-rules_rust/examples/nix_cross_compiling/bazel/
Dnix_repositories.bzl78 …# Some patterns (e.g. `lib/*.a`) don't match anything, see https://github.com/bazelbuild/rules_rus…
93 …# Some patterns (e.g. `lib/*.a`) don't match anything, see https://github.com/bazelbuild/rules_rus…
108 …# Some patterns (e.g. `lib/*.a`) don't match anything, see https://github.com/bazelbuild/rules_rus…
123 …# Some patterns (e.g. `lib/*.a`) don't match anything, see https://github.com/bazelbuild/rules_rus…
138 …# Some patterns (e.g. `lib/*.a`) don't match anything, see https://github.com/bazelbuild/rules_rus…
153 …# Some patterns (e.g. `lib/*.a`) don't match anything, see https://github.com/bazelbuild/rules_rus…
168 …# Some patterns (e.g. `lib/*.a`) don't match anything, see https://github.com/bazelbuild/rules_rus…
183 …# Some patterns (e.g. `lib/*.a`) don't match anything, see https://github.com/bazelbuild/rules_rus…
198 …# Some patterns (e.g. `lib/*.a`) don't match anything, see https://github.com/bazelbuild/rules_rus…
/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()
56 // mapContaining(ANYTHING, ANYTHING), "not a map");
/external/hamcrest/hamcrest-core/src/test/java/org/hamcrest/core/
DIsAnythingTest.java8 import static org.hamcrest.core.IsAnything.anything;
12 private final Matcher<Object> matcher = anything();
26 assertDescription("ANYTHING", matcher); in hasUsefulDefaultDescription()
32 assertDescription(description, anything(description)); in canOverrideDescription()
/external/clang/test/Sema/
Ddecl-invalid.c16 int; // expected-warning {{declaration does not declare anything}}
18 const int; // expected-warning {{declaration does not declare anything}}
19 …onymous struct must be a definition}} // expected-warning {{declaration does not declare anything}}
21 I; // expected-warning {{declaration does not declare anything}}
/external/kotlinpoet/kotlinpoet/src/commonTest/kotlin/com/squareup/kotlinpoet/
DDelegatedConstructorCallTest.kt102 .addSuperclassConstructorParameter("anything") in allowedInClass()
105 |public class Test : testpackage.TestSuper(anything) in allowedInClass()
115 .addSuperclassConstructorParameter("anything") in allowedInObject()
118 |public object Test : testpackage.TestSuper(anything) in allowedInObject()
149 .addSuperclassConstructorParameter("anything") in notAllowedInExternalClass()
160 .addSuperclassConstructorParameter("anything") in notAllowedInExternalObject()

12345678910>>...309