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

1 2 3 4 5 6 7

  /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 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
48 int neg, any, cutlim; local
51 * Skip white space and pick up leading +/- sign if any.
91 * Set any if any `digits' consumed; make it negative to indicate
104 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
113 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
49 int neg, any, cutlim; local
63 * Skip white space and pick up leading +/- sign if any.
102 * Set any if any `digits' consumed; make it negative to indicate
115 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
124 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
53 * Skip white space and pick up leading +/- sign if any.
93 * Set any if any `digits' consumed; make it negative to indicate
106 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
115 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
76 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
85 if (any < 0)
88 any = -1;
92 any = 1;
97 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
78 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
87 if (any < 0)
90 any = -1;
94 any = 1;
99 if (neg && 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
48 int neg, any, cutlim; local
76 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
85 if (any < 0)
88 any = -1;
92 any = 1;
97 if (neg && any > 0
    [all...]
  /external/chromium_org/third_party/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] = WEBRTC_SPL_RSHIFT_W16((*kptr), 3);
52 anyptr = any;
  /external/chromium_org/third_party/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;
  /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/com/google/android/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/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/src/common_audio/signal_processing/
refl_coef_to_lpc.c 22 WebRtc_Word16 any[WEBRTC_SPL_MAX_LPC_ORDER + 1]; local
29 *any = *a;
38 anyptr = any;
41 any[m + 1] = WEBRTC_SPL_RSHIFT_W16((*kptr), 3);
52 anyptr = any;
  /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/libpcap/Win32/Src/
getnetent.c 7 * duplicated in all such forms and that any documentation,
13 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
31 static char *any(char *, char *);
71 cp = any(p, "#\n");
76 cp = any(p, " \t");
82 p = any(cp, " \t");
97 cp = any(cp, " \t");
106 any(cp, match) function
  /build/tools/
java-layers.py 21 sys.stderr.write(" first package listed must not contain any references\n")
22 sys.stderr.write(" to any classes present in the second package, or any\n")
29 sys.stderr.write(" package and may not import any of the other packages\n") namespace
  /external/deqp/scripts/
testset.py 15 def any (results, predicate): function
208 FilterRule("any-pass", "Any of results is 'Pass'", [lambda l: any(l, lambda r: r == 'Pass')]),
209 FilterRule("any-fail", "Any of results is not 'Pass' or 'NotSupported'", [lambda l: not all(l, lambda r: r == 'Pass' or r == 'NotSupported')]),
210 FilterRule("prev-failing", "Any except last result is failure", [lambda l: l[-1] == 'Pass' and not all(l[:-1], lambda r: r == 'Pass')]),
211 FilterRule("prev-passing", "Any except last result is 'Pass'", [lambda l: l[-1] != 'Pass' and any(l[:-1], lambda r: r == 'Pass')])
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/helpers/
CameraSessionUtils.java 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
71 * @throws CameraAccessException if any of the {@link CameraDevice} methods fail.
113 * @throws CameraAccessException if any of the {@link CameraDevice} methods fail.
169 * @throws CameraAccessException if any of the {@link CameraDevice} methods fail.
185 verify(listener, never()).onConfigureFailed(any(CameraCaptureSession.class));
209 * @throws CameraAccessException if any of the {@link CameraDevice} methods fail.
223 verify(listener, never()).onCaptureFailed(any(CameraCaptureSession.class),
224 any(CaptureRequest.class), any(CaptureFailure.class)); method
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_tile_cache.h 6 * Permission is hereby granted, free of charge, to any person obtaining a
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
74 ubyte any[1]; member in union:softpipe_cached_tile::__anon17550
  /external/chromium_org/third_party/mesa/src/src/glsl/
lower_mat_op_to_vec.cpp 4 * Permission is hereby granted, free of charge, to any person obtaining a
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
88 /* Pull out any matrix expression to a separate assignment to a
237 * return !any(bvec4(a[0] != b[0],
245 * return any(bvec4(a[0] != b[0],
276 ir_expression *any = new(this->mem_ctx) ir_expression(ir_unop_any, val); local
279 any = new(this->mem_ctx) ir_expression(ir_unop_logic_not, any);
282 new(mem_ctx) ir_assignment(result->clone(mem_ctx, NULL), any);
    [all...]
  /external/chromium_org/third_party/skia/experimental/PdfViewer/
SkTracker.h 31 * A.1) a breackpoint require that any of the points is changed
33 * Points in B are allways in "any mode" - chaning the value of any pixel, will disable
66 // Puts the tracker in Any mode.
67 void any() { function in class:SkTracker
71 // Puts the tracker in Any mode.
76 // returns true in in All mode. False for Any mode.
155 // any/all of the expected touched has to be changed, and all expected untouched must be intact
214 // break on any change on expected touched or all.
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2_tokenizer.c 346 const int any = SQLITE_ANY; local
360 || (rc = sqlite3_create_function(db, zName, 1, any, p, scalarFunc, 0, 0))
361 || (rc = sqlite3_create_function(db, zName, 2, any, p, scalarFunc, 0, 0))
363 || (rc = sqlite3_create_function(db, zTest, 2, any, p, testFunc, 0, 0))
364 || (rc = sqlite3_create_function(db, zTest, 3, any, p, testFunc, 0, 0))
365 || (rc = sqlite3_create_function(db, zTest2, 0, any, pdb, intTestFunc, 0, 0))

Completed in 4835 milliseconds

1 2 3 4 5 6 7