Searched defs:any (Results 1 - 25 of 108) sorted by relevance

12345

/external/protobuf/src/google/protobuf/
H A Dany_test.cc56 google::protobuf::Any any; local
57 any.PackFrom(submessage);
59 message.mutable_any_value()->PackFrom(any);
65 ASSERT_TRUE(message.any_value().UnpackTo(&any));
66 ASSERT_TRUE(any.UnpackTo(&submessage));
73 google::protobuf::Any any; local
74 any.PackFrom(submessage);
75 ASSERT_TRUE(any.ParseFromString(any.SerializeAsString()));
76 EXPECT_TRUE(any
[all...]
/external/clang/test/CXX/expr/expr.unary/expr.sizeof/
H A Dp5-0x.cpp17 struct any { struct
18 template<typename T> any(T);
23 any array[sizeof...(inits)] = { inits... };
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
H A DIsInstanceOf.java81 * <code>with(any(Thing.class))</code></p>
87 public static <T> Matcher<T> any(Class<T> type) { method in class:IsInstanceOf
/external/openssh/openbsd-compat/
H A Dstrtoll.c55 int neg, any, cutlim; local
58 * Skip white space and pick up leading +/- sign if any.
98 * Set any if any `digits' consumed; make it negative to indicate
111 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
120 if (any < 0)
124 any = -1;
128 any = 1;
134 any = -1;
138 any
[all...]
H A Dstrtoul.c53 int neg, any, cutlim; local
81 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
90 if (any < 0)
93 any = -1;
97 any = 1;
102 if (neg && any > 0)
105 *endptr = (char *) (any ? s - 1 : nptr);
H A Dstrtoull.c55 int neg, any, cutlim; local
83 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
92 if (any < 0)
95 any = -1;
99 any = 1;
104 if (neg && any > 0)
107 *endptr = (char *) (any ? s - 1 : nptr);
/external/webrtc/webrtc/common_audio/signal_processing/
H A Drefl_coef_to_lpc.c22 int16_t any[WEBRTC_SPL_MAX_LPC_ORDER + 1]; local
29 *any = *a;
38 anyptr = any;
41 any[m + 1] = *kptr >> 3;
51 anyptr = any;
/external/webrtc/webrtc/modules/audio_coding/codecs/cng/
H A Dcng_helpfuns.c19 int16_t any[WEBRTC_SPL_MAX_LPC_ORDER + 1]; local
26 *any = *a;
33 anyptr = any;
36 any[m + 1] = (*kptr + 4) >> 3;
43 anyptr = any;
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.conv/
H A Dp4.cpp8 void test_cvqual_ref(AnyT any) { argument
9 const int &cir = any;
/external/eigen/Eigen/src/Core/
H A DBooleanRedux.h78 * \sa any(), Cwise::operator<()
105 inline bool DenseBase<Derived>::any() const function in class:Eigen::DenseBase
126 * \sa all(), any()
142 return derived().array().isNaN().any();
/external/parameter-framework/asio/include/asio/ip/
H A Daddress_v4.hpp165 /// Obtain an address object that represents any address.
166 static address_v4 any() function in class:asio::ip::address_v4
H A Daddress_v6.hpp179 /// Obtain an address object that represents any address.
180 static address_v6 any() function in class:asio::ip::address_v6
/external/parameter-framework/asio-1.10.6/include/asio/ip/
H A Daddress_v4.hpp165 /// Obtain an address object that represents any address.
166 static address_v4 any() function in class:asio::ip::address_v4
H A Daddress_v6.hpp179 /// Obtain an address object that represents any address.
180 static address_v6 any() function in class:asio::ip::address_v6
/external/toybox/toys/posix/
H A Dpaste.c38 int i, any, dcount, dlen, len, seq = toys.optflags&FLAG_s; local
47 for (i = any = dcount = dlen = 0; seq || i<TT.files; i++) {
60 if (!any) continue;
62 dcount = any ? 1 : i;
63 any = 1;
107 if (any) xputc('\n');
/external/deqp/scripts/
H A Dtestset.py35 def any (results, predicate): function
228 FilterRule("any-pass", "Any of results is 'Pass'", [lambda l: any(l, lambda r: r == 'Pass')]),
229 FilterRule("any-fail", "Any of results is not 'Pass' or 'NotSupported'", [lambda l: not all(l, lambda r: r == 'Pass' or r == 'NotSupported')]),
231 FilterRule("prev-passing", "Any except last result is 'Pass'", [lambda l: l[-1] != 'Pass' and any(l[:-1], lambda r: r == 'Pass')])
/external/pcre/pcrecpp/include/
H A Dpcrecpparg.h172 inline Arg wrap_arg(ARG && any) { argument
173 return Arg(any);
/external/autotest/frontend/client/src/autotest/tko/
H A DFilterSelector.java77 private RadioButton any; field in class:FilterSelector
90 any = new RadioButton("booleanOp" + id, "any of");
98 any.addClickHandler(booleanOpListener);
122 booleanOpPanel.add(any);
156 // Get whether the filter should be "all" or "any"
180 // Restore the "all" or "any" selection
185 any.setValue(true);
213 any.setEnabled(enabled);
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.simple/
H A Dp5-cxx0x.cpp70 struct any { struct in namespace:libcxx_example
71 any(...);
80 nat swap(any, any);
/external/droiddriver/src/io/appium/droiddriver/finders/
H A DPredicates.java41 return "any";
49 public static <T> Predicate<T> any() { method in class:Predicates
134 * Returns a predicate that evaluates to {@code true} if any one of its components evaluates to
158 * Returns a predicate that evaluates to {@code true} if any one of its components evaluates to
H A DBy.java38 * Matches any UiElement.
40 public static MatchFinder any() { method in class:By
/external/python/cpython2/Lib/idlelib/
H A DColorDelegator.py10 def any(name, alternates): function
15 kw = r"\b" + any("KEYWORD", keyword.kwlist) + r"\b"
23 builtin = r"([^.'\"\\#]\b|^)" + any("BUILTIN", builtinlist) + r"\b"
24 comment = any("COMMENT", [r"#[^\n]*"])
30 string = any("STRING", [sq3string, dq3string, sqstring, dqstring])
32 "|" + any("SYNC", [r"\n"])
54 # No delegate - stop any colorizing
/external/r8/src/test/java/com/android/tools/r8/
H A DTestCondition.java114 public static TestCondition any() { method in class:TestCondition
/external/eigen/unsupported/test/
H A Dcxx11_tensor_reduction.cpp234 TensorFixedSize<bool, Sizes<> > any; local
235 any = (ints > ints.constant(10)).any();
236 VERIFY(!any());
237 any = (ints < ints.constant(1)).any();
238 VERIFY(any());
/external/guice/core/src/com/google/inject/matcher/
H A DMatchers.java38 * Returns a matcher which matches any input.
40 public static Matcher<Object> any() { method in class:Matchers
52 return "any()";
56 return any();
329 * {@link #inPackage(Package) inPackage()}, this matches classes from any classloader.

Completed in 5529 milliseconds

12345