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

1 2 3 4 5 6 7 8 91011>>

  /bionic/tests/
netinet_in_test.cpp 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
29 in6_addr any = IN6ADDR_ANY_INIT; local
30 ASSERT_EQ(0, memcmp(&any, &in6addr_any, sizeof(in6addr_any)));
  /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/libc/upstream-openbsd/lib/libc/stdlib/
strtoimax.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
47 int neg, any, cutlim; local
61 * Skip white space and pick up leading +/- sign if any.
101 * Set any if any `digits' consumed; make it negative to indicate
114 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
123 if (any < 0
    [all...]
strtol.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
48 int neg, any, cutlim; local
62 * Skip white space and pick up leading +/- sign if any.
101 * Set any if any `digits' consumed; make it negative to indicate
114 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
123 if (any < 0
    [all...]
strtoll.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
50 int neg, any, cutlim; local
64 * Skip white space and pick up leading +/- sign if any.
104 * Set any if any `digits' consumed; make it negative to indicate
117 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
126 if (any < 0
    [all...]
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
48 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
    [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
50 int neg, any, cutlim; local
85 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
94 if (any < 0)
97 any = -1;
101 any = 1;
106 if (neg && any > 0
    [all...]
strtoumax.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
47 int neg, any, cutlim; local
82 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
91 if (any < 0)
94 any = -1;
98 any = 1;
103 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.
29 private static final Predicate<Object> ANY = new Predicate<Object>() {
37 return "any";
45 public static <T> Predicate<T> any() { method in class:Predicates
46 return (Predicate<T>) ANY;
74 if (first == null || first == ANY) {
77 if (second == null || second == ANY) {
121 * Returns a predicate that evaluates to {@code true} if any one of its
  /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/hamcrest/library/src/org/hamcrest/text/
X.java 10 x(CoreMatchers.any(String.class));
  /external/hamcrest/src/org/hamcrest/core/
IsAnything.java 56 public static <T> Matcher<T> any(@SuppressWarnings("unused")Class<T> type) { method in class:IsAnything
  /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;
  /toolchain/binutils/binutils-2.25/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...]
strtol.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
96 register int neg = 0, any, cutlim; local
99 * Skip white space and pick up leading +/- sign if any.
134 * Set any if any `digits' consumed; make it negative to indicate
140 for (acc = 0, any = 0;; c = *s++) {
149 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)
    [all...]
  /external/dbus/tools/
strtoll.c 18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
71 int neg, any, cutlim; local
74 * Skip white space and pick up leading +/- sign if any.
101 acc = any = 0;
120 * Set 'any' if any `digits' consumed; make it negative to indicate
138 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)
    [all...]
strtoull.c 18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
72 int neg, any, cutlim; local
100 acc = any = 0;
117 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
118 any = -1;
120 any = 1;
125 if (any < 0)
    [all...]
  /external/eigen/Eigen/src/Core/
BooleanRedux.h 76 * \sa any(), Cwise::operator<()
103 inline bool DenseBase<Derived>::any() const function in class:Eigen::DenseBase
124 * \sa all(), any()
  /external/hamcrest/src/org/hamcrest/
CoreMatchers.java 84 * Evaluates to true if ANY of the passed in matchers evaluate to true.
91 * Evaluates to true if ANY of the passed in matchers evaluate to true.
126 public static <T> org.hamcrest.Matcher<T> any(java.lang.Class<T> type) { method in class:CoreMatchers
127 return org.hamcrest.core.IsAnything.any(type);
  /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

Completed in 3673 milliseconds

1 2 3 4 5 6 7 8 91011>>