HomeSort by relevance Sort by last modified time
    Searched defs:any (Results 1 - 25 of 940) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/support/lifecycle/compiler/src/tests/test-data/
OnAnyMethod.java 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33 void any(LifecycleOwner provider){} method in class:OnAnyMethod
36 void any(LifecycleOwner provider, Event event){} method in class:OnAnyMethod
  /external/protobuf/src/google/protobuf/
any_test.cc 20 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
53 // We can pack a Any message inside another Any message.
56 google::protobuf::Any any; local
57 any.PackFrom(submessage);
59 message.mutable_any_value()->PackFrom(any);
73 google::protobuf::Any any; local
    [all...]
  /frameworks/support/lifecycle/compiler/src/tests/test-data/expected/
OnAnyMethod_LifecycleAdapter.java 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
39 if (!hasLogger || logger.approveCall("any", 2)) {
40 mReceiver.any(owner);
42 if (!hasLogger || logger.approveCall("any", 4)) {
43 mReceiver.any(owner,event);
  /bionic/libc/upstream-openbsd/lib/libc/locale/
_wcstol.h 21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
55 int neg, any, cutlim; local
64 * Skip white space and pick up leading +/- sign if any.
102 for (acc = 0, any = 0;; wc = (wchar_t) *s++) {
108 if (any < 0)
112 any = -1;
116 any = 1
    [all...]
_wcstoul.h 21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
54 int neg, any, cutlim; local
62 * Skip white space and pick up leading +/- sign if any.
92 for (acc = 0, any = 0;; wc = (wchar_t) *s++) {
98 if (any < 0)
101 any = -1;
105 any = 1
    [all...]
  /bionic/tests/
netinet_in_test.cpp 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
39 in6_addr any = IN6ADDR_ANY_INIT; local
40 ASSERT_EQ(0, memcmp(&any, &in6addr_any, sizeof(in6addr_any)));
  /device/linaro/bootloader/edk2/StdLib/LibC/Locale/
_wcstol.h 9 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
27 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
66 int neg, any, cutlim; local
82 * Skip white space and pick up leading +/- sign if any.
120 for (acc = 0, any = 0;; wc = (wchar_t) *s++) {
126 if (any < 0)
130 any = -1;
    [all...]
_wcstoul.h 9 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
27 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
68 int neg, any, cutlim; local
79 * Skip white space and pick up leading +/- sign if any.
109 for (acc = 0, any = 0;; wc = (wint_t) *s++) {
116 if (any < 0)
119 any = -1;
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
strtoimax.c 20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
65 int neg, any, cutlim; local
76 * Skip white space and pick up leading +/- sign if any.
116 * Set any if any `digits' consumed; make it negative to indicate
129 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
138 if (any < 0)
    [all...]
strtoumax.c 20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
74 int neg, any, cutlim; local
105 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
118 if (any < 0)
126 any = -1;
131 any = 1;
136 if (neg && any > 0)
    [all...]
  /external/clang/test/CXX/expr/expr.unary/expr.sizeof/
p5-0x.cpp 17 struct any { struct
18 template<typename T> any(T);
23 any array[sizeof...(inits)] = { inits... };
  /external/droiddriver/src/io/appium/droiddriver/finders/
Predicates.java 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33 private static final Predicate<Object> ANY = new Predicate<Object>() {
41 return "any";
49 public static <T> Predicate<T> any() { method in class:Predicates
50 return (Predicate<T>) ANY;
78 if (first == null || first == ANY) {
81 if (second == null || second == ANY) {
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
  /external/guice/extensions/persist/src/com/google/inject/persist/
PersistModule.java 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20 import static com.google.inject.matcher.Matchers.any;
44 bindInterceptor(annotatedWith(Transactional.class), any(), getTransactionInterceptor()); method
46 bindInterceptor(any(), annotatedWith(Transactional.class), getTransactionInterceptor()); method
  /external/webrtc/webrtc/common_audio/signal_processing/
refl_coef_to_lpc.c 22 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/
cng_helpfuns.c 19 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;
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
Views.java 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
30 Mockito.doCallRealMethod().when(view).setTag(Mockito.anyInt(), Mockito.any());
  /toolchain/binutils/binutils-2.27/libiberty/
strtoul.c 19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
67 register int neg = 0, any, cutlim; local
90 for (acc = 0, any = 0;; c = *s++) {
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
100 any = -1;
102 any = 1;
107 if (any < 0)
    [all...]
strtoull.c 19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
72 register int neg = 0, any, cutlim; local
95 for (acc = 0, any = 0;; c = *s++) {
104 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
105 any = -1;
107 any = 1;
112 if (any < 0)
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
AccountAccessSameCertTest.java 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
28 import static org.mockito.ArgumentMatchers.any;
78 verify(adapter, timeout(SYNC_TIMEOUT_MILLIS)).onPerformSync(any(), any(), any(), any(), method
79 any()); method
  /external/eigen/Eigen/src/Core/
BooleanRedux.h 78 * \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/golang-protobuf/ptypes/any/
any.pb.go 2 // source: github.com/golang/protobuf/ptypes/any/any.proto
5 Package any is a generated protocol buffer package.
8 github.com/golang/protobuf/ptypes/any/any.proto
11 Any
13 package any package
30 // `Any` contains an arbitrary serialized protocol buffer message along with a
33 // Protobuf library provides support to pack/unpack Any values in the form
34 // of utility functions or additional generated methods of the Any type
    [all...]
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
IsInstanceOf.java 81 * <code>with(any(Thing.class))</code></p>
87 public static <T> Matcher<T> any(Class<T> type) { method in class:IsInstanceOf
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
address_v4.hpp 165 /// Obtain an address object that represents any address.
166 static address_v4 any() function in class:asio::ip::address_v4
address_v6.hpp 179 /// Obtain an address object that represents any address.
180 static address_v6 any() function in class:asio::ip::address_v6
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/customize/
TileAdapterTest.java 10 * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17 import static org.mockito.ArgumentMatchers.any;
51 verify(host).changeTiles(any(), any()); method

Completed in 1463 milliseconds

1 2 3 4 5 6 7 8 91011>>