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

123

/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/eigen/Eigen/src/Core/
H A DBooleanRedux.h76 * \sa any(), Cwise::operator<()
105 inline bool DenseBase<Derived>::any() const function in class:Eigen::DenseBase
128 * \sa all(), any()
/external/hamcrest/src/org/hamcrest/core/
H A DIsAnything.java56 public static <T> Matcher<T> any(@SuppressWarnings("unused")Class<T> type) { method in class:IsAnything
/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);
/external/webrtc/src/common_audio/signal_processing/
H A Drefl_coef_to_lpc.c22 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/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/hamcrest/src/org/hamcrest/
H A DCoreMatchers.java126 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/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_tile_cache.h6 * Permission is hereby granted, free of charge, to any person obtaining a
74 ubyte any[1]; member in union:softpipe_cached_tile::__anon13076
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2_tokenizer.c346 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))
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.simple/
H A Dp5-cxx0x.cpp66 struct any { struct in namespace:libcxx_example
67 any(...);
76 nat swap(any, any);
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_tile_cache.h6 * Permission is hereby granted, free of charge, to any person obtaining a
74 ubyte any[1]; member in union:softpipe_cached_tile::__anon23561
/external/qemu/android/skin/
H A Dcomposer.h44 struct SkinPlateAny any; member in struct:SkinPlateSurface
51 struct SkinPlateAny any; member in struct:SkinPlateGroup
65 struct SkinPlateAny any; member in union:SkinPlate
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DIDBBindingUtilities.cpp379 ScriptValue idbAnyToScriptValue(DOMRequestState* state, PassRefPtr<IDBAny> any) argument
385 v8::Handle<v8::Value> v8Value(toV8(any.get(), context->Global(), isolate));
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dlower_mat_op_to_vec.cpp4 * Permission is hereby granted, free of charge, to any person obtaining a
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);
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_tokenizer.c455 const int any = SQLITE_ANY; local
469 rc = sqlite3_create_function(db, zName, 1, any, p, scalarFunc, 0, 0);
472 rc = sqlite3_create_function(db, zName, 2, any, p, scalarFunc, 0, 0);
476 rc = sqlite3_create_function(db, zTest, 2, any, p, testFunc, 0, 0);
479 rc = sqlite3_create_function(db, zTest, 3, any, p, testFunc, 0, 0);
482 rc = sqlite3_create_function(db, zTest2, 0, any, pdb, intTestFunc, 0, 0);
/external/llvm/include/llvm/ADT/
H A DBitVector.h131 /// any - Returns true if any bit is set.
132 bool any() const { function in class:llvm::BitVector
154 return !any();
217 // Set any old unused bits that are now included in the BitVector. This
223 // Update the size, and clear out any bits that are now unused
341 /// Test if any common bits are set.
360 // Verify that any extra words are all zeros.
405 /// This is the same as reset(RHS) and any().
501 /// clearBitsInMask - Clear any bit
[all...]
/external/mesa3d/src/glsl/
H A Dlower_mat_op_to_vec.cpp4 * Permission is hereby granted, free of charge, to any person obtaining a
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);
/external/mockito/src/org/mockito/
H A DMatchers.java56 * The any family methods <b>*don't do any type checks*</b>, those are only here to avoid casting
112 * This method <b>*don't do any type checks*</b>, it is only there to avoid casting
127 * This method <b>*don't do any type checks*</b>, it is only there to avoid casting
142 * This method <b>*don't do any type checks*</b>, it is only there to avoid casting
157 * This method <b>*don't do any type checks*</b>, it is only there to avoid casting
172 * This method <b>*don't do any type checks*</b>, it is only there to avoid casting
187 * This method <b>*don't do any type checks*</b>, it is only there to avoid casting
202 * This method <b>*don't do any type checks*</b>, it is only there to avoid casting
217 * This method <b>*don't do any typ
290 public static <T> T any(Class<T> clazz) { method in class:Matchers
307 public static <T> T any() { method in class:Matchers
[all...]
/external/valgrind/main/drd/
H A Ddrd_clientobj.h9 License, or (at your option) any later version.
53 struct any struct
146 struct any any; member in union:drd_clientobj
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dactions.c564 RegExp *any, *ran, *inv; local
572 any = ranToRE(*ss);
575 return any;
578 inv = mkDiff(any, ran);
581 free(any);
589 RegExp * any = ranToRE(*ss); local
591 RegExp * inv = mkDiff(any, ran);
595 free(any);
/external/guava/guava/src/com/google/common/collect/
H A DIterables.java115 * any object for which {@code equals(element)} is true.
141 * @return {@code true} if any element was removed from {@code iterable}
159 * @return {@code true} if any element was removed from {@code iterable}
175 * @return {@code true} if any elements were removed from the iterable
212 // Clear the tail of any remaining items
387 * element will no longer appear in either that iterator or any other iterator
467 * @throws NullPointerException if any of the provided iterables is null
480 * iterable may throw {@code NullPointerException} if any of the input
596 * @param unfiltered an iterable containing objects of any type
618 public static <T> boolean any( method in class:Iterables
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DIterables.java112 * any object for which {@code equals(element)} is true.
138 * @return {@code true} if any element was removed from {@code iterable}
156 * @return {@code true} if any element was removed from {@code iterable}
172 * @return {@code true} if any elements were removed from the iterable
209 // Clear the tail of any remaining items
369 * element will no longer appear in either that iterator or any other iterator
449 * @throws NullPointerException if any of the provided iterables is null
462 * iterable may throw {@code NullPointerException} if any of the input
576 public static <T> boolean any( method in class:Iterables
578 return Iterators.any(iterabl
[all...]
/external/qemu/telephony/
H A Dsim_card.c184 SimFileAnyRec any; member in union:__anon26031
198 SimFileType type = file->any.type;
223 gsm_hex_from_short( dst, file->any.id );
238 if (file->any.flags & SIM_FILE_READ_ONLY) {
239 if (file->any.flags & SIM_FILE_NEED_PIN)
244 if (file->any.flags & SIM_FILE_NEED_PIN)
/external/clang/test/SemaCXX/
H A Dconversion-function.cpp28 // expected-error{{conversion function cannot have any parameters}}
217 Any any = Other(); // expected-error{{cannot pass object of non-POD type 'Other' through variadic constructor; call will abort at runtime}} local

Completed in 865 milliseconds

123