Searched refs:value (Results 251 - 275 of 16071) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/ocmock/
H A Docmock_extensions.h17 - (id)andReturnChar:(char)value;
18 - (id)andReturnUnsignedChar:(unsigned char)value;
19 - (id)andReturnShort:(short)value;
20 - (id)andReturnUnsignedShort:(unsigned short)value;
21 - (id)andReturnInt:(int)value;
22 - (id)andReturnUnsignedInt:(unsigned int)value;
23 - (id)andReturnLong:(long)value;
24 - (id)andReturnUnsignedLong:(unsigned long)value;
25 - (id)andReturnLongLong:(long long)value;
26 - (id)andReturnUnsignedLongLong:(unsigned long long)value;
[all...]
/external/chromium_org/third_party/yasm/source/config/win/
H A Dstdint.h27 #define INT64_C(value) value##LL
28 #define UINT64_C(value) value##ULL
/external/chromium_org/ui/webui/resources/js/
H A Dassert.js13 * may be used to test whether a value is defined or not, and we don't want
55 * @param {*} value The value to check.
60 function assertInstanceof(value, type) {
61 if (!(value instanceof type))
62 throw new Error(value + ' is not a[n] ' + (type.name || typeof type));
63 return value;
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-crbug-72736.js30 // This tests that Object.defineProperty actually allows to change the value of
34 Object.defineProperty(obj, 'foo', { value: 10, configurable: true });
36 Object.defineProperty(obj, 'foo', { value: 20, configurable: true });
/external/chromium_org/v8/test/webkit/fast/js/
H A DPromise-onFulfilled-deep.js33 promise = promise.then(function (value) { return value + 1; }, function () { testFailed('rejected'); });
36 promise.then(function (value) {
37 result = value;
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
H A Dp1.cpp24 static int value; member in struct:X
28 int X<T>::value = 17; member in class:X
30 template static int X<int>::value; // expected-error{{explicit instantiation cannot have a storage class}} member in class:X
32 template<> static int X<float>::value; // expected-error{{'static' can only be specified inside the class definition}} member in class:X
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
H A Dp2-0x.cpp14 static const bool value = false; member in struct:same_tuple
19 static const bool value = true; member in struct:same_tuple
22 int same_tuple_check1[same_tuple<tuple<int, float>, tuple<int, double>>::value? -1 : 1];
23 int same_tuple_check2[same_tuple<tuple<float, double>, tuple<float, double>>::value? 1 : -1];
/external/clang/test/CodeGenCXX/
H A Ddebug-info-artificial-arg.cpp11 A(int value) : m_a_value(value) {}; argument
12 A(int value, A* client_A) : m_a_value (value), m_client_A (client_A) {} argument
/external/clang/test/Index/
H A Dgetcursor-pp-pch.c6 OBSCURE(T) DECORATION value;
/external/clang/test/PCH/
H A Dmultiple_decls.h3 struct wide { int value; }; member in struct:wide
/external/clang/test/Sema/
H A Dwarn-gnu-designators.c3 struct { int x, y, z[12]; } value = { x:17, .z [3 ... 5] = 7 }; variable in typeref:struct:__anon19189
/external/clang/test/SemaCXX/
H A Dlookup-member.cpp12 union value { union
/external/emma/core/java12/com/vladium/jcd/lib/
H A DUDataInputStream.java38 final short value = readShort ();
40 return ((int) value) & 0xFFFF; // widening cast sign-extends
46 final int value = readInt ();
48 return ((long) value) & 0xFFFFFFFFL; // widening cast sign-extends
/external/emma/core/java12/com/vladium/util/
H A DIntegerFactory.java22 public static Integer getInteger (final int value) argument
26 final Object _result = s_values.get (value);
30 final Integer result = new Integer (value);
31 s_values.put (value, result);
/external/libcxx/test/thread/futures/futures.overview/
H A Dis_error_code_enum_future_errc.pass.cpp18 static_assert(std::is_error_code_enum<std::future_errc>::value, "");
/external/libcxx/test/utilities/meta/meta.trans/meta.trans.other/
H A Dconditional.pass.cpp18 static_assert((std::is_same<std::conditional<true, char, int>::type, char>::value), "");
19 static_assert((std::is_same<std::conditional<false, char, int>::type, int>::value), "");
21 static_assert((std::is_same<std::conditional_t<true, char, int>, char>::value), "");
22 static_assert((std::is_same<std::conditional_t<false, char, int>, int>::value), "");
H A Denable_if.pass.cpp18 static_assert((std::is_same<std::enable_if<true>::type, void>::value), "");
19 static_assert((std::is_same<std::enable_if<true, int>::type, int>::value), "");
21 static_assert((std::is_same<std::enable_if_t<true>, void>::value), "");
22 static_assert((std::is_same<std::enable_if_t<true, int>, int>::value), "");
/external/llvm/bindings/ocaml/transforms/ipo/
H A Dipo_ocaml.c23 CAMLprim value llvm_add_argument_promotion(LLVMPassManagerRef PM) {
29 CAMLprim value llvm_add_constant_merge(LLVMPassManagerRef PM) {
35 CAMLprim value llvm_add_dead_arg_elimination(LLVMPassManagerRef PM) {
41 CAMLprim value llvm_add_function_attrs(LLVMPassManagerRef PM) {
47 CAMLprim value llvm_add_function_inlining(LLVMPassManagerRef PM) {
53 CAMLprim value llvm_add_always_inliner(LLVMPassManagerRef PM) {
59 CAMLprim value llvm_add_always_inliner_pass(LLVMPassManagerRef PM) {
65 CAMLprim value llvm_add_global_dce(LLVMPassManagerRef PM) {
71 CAMLprim value llvm_add_global_optimizer(LLVMPassManagerRef PM) {
77 CAMLprim value llvm_add_ipc_propagatio
[all...]
/external/lzma/CPP/7zip/Common/
H A DMethodId.cpp8 static inline wchar_t GetHex(Byte value) argument
10 return (wchar_t)((value < 10) ? ('0' + value) : ('A' + (value - 10)));
/external/oprofile/libutil++/
H A Dcached_value.h3 * Hold a cached value.
17 * Hold a single value, returning a cached value if there is one.
27 /// return the cached value
30 throw op_fatal_error("cached value not set");
31 return value;
34 /// return true if a value is cached
37 /// set the contained value
39 value = val;
41 return value;
46 value_type value; member in class:cached_value
[all...]
/external/proguard/src/proguard/evaluation/value/
H A DCategory1Value.java21 package proguard.evaluation.value;
24 * This abstract class represents a partially evaluated Category 1 value.
H A DCategory2Value.java21 package proguard.evaluation.value;
24 * This abstract class represents a partially evaluated Category 2 value.
/external/replicaisland/src/com/replica/replicaisland/
H A DCollisionVolume.java59 float value = 0;
62 value = flip.parentWidth - maxX;
64 value = getMinX();
66 return value;
70 float value = 0;
73 value = flip.parentWidth - minX;
75 value = getMaxX();
77 return value;
81 float value = 0;
84 value
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowDatabaseUtils.java13 Object value) {
14 if (value == null) {
16 } else if (value instanceof Double || value instanceof Float) {
17 prog.bindDouble(index, ((Number) value).doubleValue());
18 } else if (value instanceof Number) {
19 prog.bindLong(index, ((Number) value).longValue());
20 } else if (value instanceof Boolean) {
21 Boolean bool = (Boolean) value;
27 } else if (value instanceo
12 bindObjectToProgram(SQLiteProgram prog, int index, Object value) argument
[all...]
/external/valgrind/main/drd/tests/
H A Dtc08_hbl2.stdout.exp1 child: new value 6
2 child: new value 10

Completed in 702 milliseconds

<<11121314151617181920>>