Searched refs:value (Results 51 - 75 of 7674) sorted by relevance

1234567891011>>

/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DEncoderAdapter.cpp49 void EncoderAdapter::encodeBool(bool value) argument
51 m_encoder->encodeBool(value);
54 void EncoderAdapter::encodeUInt32(uint32_t value) argument
56 m_encoder->encodeUInt32(value);
59 void EncoderAdapter::encodeUInt64(uint64_t value) argument
61 m_encoder->encodeUInt64(value);
64 void EncoderAdapter::encodeInt32(int32_t value) argument
66 m_encoder->encodeInt32(value);
69 void EncoderAdapter::encodeInt64(int64_t value) argument
71 m_encoder->encodeInt64(value);
74 encodeFloat(float value) argument
79 encodeDouble(double value) argument
84 encodeString(const String& value) argument
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DUnhashableObject.java27 private final int value; field in class:UnhashableObject
29 public UnhashableObject(int value) { argument
30 this.value = value;
36 return this.value == that.value;
47 return "DontHashMe" + value;
52 return (this.value < o.value) ? -1 : (this.value >
[all...]
/external/clang/test/CodeGen/
H A D2007-02-04-AddrLValue.c7 char *value; member in struct:__anon4129
13 char *value; member in struct:__anon4130
/external/clang/test/CodeGenCXX/
H A Ddebug-info-ctor.cpp6 int value; member in struct:X
12 value = v;
/external/clang/test/Misc/
H A Ddiag-trailing-null-bytes.cpp5 #define NET_ERROR(label, value) ERR_ ## label = value,
/external/clang/test/PCH/
H A Dobjc_property.h4 int value; variable
10 @property int value; variable
/external/jsilver/src/com/google/clearsilver/jsilver/values/
H A DNumberValue.java22 * A simple numeric value.
28 private final int value; field in class:NumberValue
30 public NumberValue(int value, EscapeMode escapeMode, boolean partiallyEscaped) { argument
32 this.value = value;
37 return value != 0;
42 return Integer.toString(value);
47 return value;
57 return value == 0;
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_3/
H A Dtemplate.js40 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
/external/clang/test/SemaTemplate/
H A Dtemp_class_spec.cpp4 static const bool value = false; member in struct:is_pointer
9 static const bool value = true; member in struct:is_pointer
14 static const bool value = true; member in struct:is_pointer
17 int array0[is_pointer<int>::value? -1 : 1];
18 int array1[is_pointer<int*>::value? 1 : -1];
19 int array2[is_pointer<const int*>::value? 1 : -1];
23 static const bool value = false; member in struct:is_lvalue_reference
28 static const bool value = true; member in struct:is_lvalue_reference
31 int lvalue_ref0[is_lvalue_reference<int>::value? -1 : 1];
32 int lvalue_ref1[is_lvalue_reference<const int&>::value
36 static const bool value = false; member in struct:is_const
41 static const bool value = true; member in struct:is_const
53 static const bool value = false; member in struct:is_volatile
58 static const bool value = true; member in struct:is_volatile
68 static const bool value = false; member in struct:is_same
73 static const bool value = true; member in struct:is_same
112 static const bool value = false; member in struct:is_incomplete_array
117 static const bool value = true; member in struct:is_incomplete_array
127 static const bool value = false; member in struct:is_array_with_4_elements
132 static const bool value = true; member in struct:is_array_with_4_elements
145 static const unsigned value = N; member in struct:get_array_size
170 static const bool value = false; member in struct:is_unary_function
175 static const bool value = true; member in struct:is_unary_function
186 static const bool value = false; member in struct:is_unary_function_with_same_return_type_as_argument_type
191 static const bool value = true; member in struct:is_unary_function_with_same_return_type_as_argument_type
204 static const bool value = false; member in struct:is_binary_function
209 static const bool value = true; member in struct:is_binary_function
216 static const bool value = false; member in struct:is_member_pointer
221 static const bool value = true; member in struct:is_member_pointer
235 static const bool value = false; member in struct:is_member_function_pointer
240 static const bool value = true; member in struct:is_member_function_pointer
245 static const bool value = true; member in struct:is_member_function_pointer
250 static const bool value = true; member in struct:is_member_function_pointer
255 static const bool value = true; member in struct:is_member_function_pointer
260 static const bool value = true; member in struct:is_member_function_pointer
265 static const bool value = true; member in struct:is_member_function_pointer
270 static const bool value = true; member in struct:is_member_function_pointer
275 static const bool value = true; member in struct:is_member_function_pointer
293 static const bool value = false; member in struct:is_nested_value_type_identity
298 static const bool value = true; member in struct:is_nested_value_type_identity
[all...]
/external/clang/test/CXX/basic/basic.scope/basic.scope.pdecl/
H A Dp9.cpp6 template<> struct X0<unsigned char> { static const bool value = true; }; member in struct:X0
7 int array0[X0<>::value? 1 : -1];
12 template<> struct X1<17> { static const bool value = true; }; member in struct:X1
13 int array1[X1<>::value? 1 : -1];
17 template<> struct X2<X0> { static const bool value = true; }; member in struct:X2
18 int array2[X2<>::value? 1 : -1];
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.static/
H A Dp1.cpp5 static T value; member in struct:X0
9 T X0<T>::value = 0; // expected-error{{no viable conversion}} member in class:X0
17 int& get_int() { return X0<int>::value; }
18 X1& get_X1() { return X0<X1>::value; }
20 double*& get_double_ptr() { return X0<int*>::value; } // expected-error{{non-const lvalue reference to type 'double *' cannot bind to a value of unrelated type 'int *'}}
23 return X0<X2>::value; // expected-note{{instantiation}}
/external/skia/src/ports/
H A DSkThread_none.cpp13 int32_t value = *addr; local
14 *addr = value + 1;
15 return value;
19 int32_t value = *addr; local
20 *addr = value - 1;
21 return value;
/external/v8/test/mjsunit/
H A Dmath-sqrt.js30 function test(expected_sqrt, value) {
31 assertEquals(expected_sqrt, Math.sqrt(value));
32 if (isFinite(value)) {
33 if (value === 0 && (1 / value) == -Infinity) {
37 assertEquals(expected_sqrt, Math.pow(value, 0.5));
/external/webkit/Source/WebCore/bindings/js/
H A DIDBBindingUtilities.cpp35 PassRefPtr<IDBKey> createIDBKeyFromValue(JSC::ExecState* exec, JSC::JSValue value) argument
37 if (value.isNull())
39 if (value.isInt32())
40 return IDBKey::create(value.toInt32(exec));
41 if (value.isString())
42 return IDBKey::create(ustringToString(value.toString(exec)));
H A DJSCSSValueCustom.cpp47 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, CSSValue* value) argument
49 if (!value)
52 JSDOMWrapper* wrapper = getCachedWrapper(currentWorld(exec), value);
57 if (value->isWebKitCSSTransformValue())
58 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, WebKitCSSTransformValue, value);
59 else if (value->isValueList())
60 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, CSSValueList, value);
62 else if (value->isSVGPaint())
63 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPaint, value);
64 else if (value
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
H A Dregress-96526-003.js55 if(IDText.value==""){
59 else if(IDText.value=="x522"){
64 else if(IDText.value=="x91"){
69 else if(IDText.value=="x92"){
74 else if(IDText.value=="x93"){
79 else if(IDText.value=="x95"){
84 else if(IDText.value=="521"){
89 else if(IDText.value=="522"){
94 else if(IDText.value=="528"){
99 else if(IDText.value
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DCount.java24 * A mutable value of type {@code int}, for multisets to use in tracking counts of values.
30 private int value; field in class:Count
36 Count(int value) { argument
37 this.value = value;
41 return value;
45 int result = value;
46 value = result + delta;
51 return value += delta;
55 value
[all...]
/external/v8/src/
H A Dmisc-intrinsics.h40 int IntegerLog2(uint32_t value);
44 inline int IntegerLog2(uint32_t value) { argument
45 return 31 - __builtin_clz(value);
52 inline int IntegerLog2(uint32_t value) { argument
54 _BitScanReverse(&result, value);
62 inline int IntegerLog2(uint32_t value) { argument
65 shift = (value > 0xFFFF) << 4;
66 value >>= shift;
69 shift = (value > 0xFF) << 3;
70 value >>
[all...]
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
H A Dp21.cpp7 static const unsigned value = 0; member in struct:X
11 static const unsigned value = 1; member in struct:X
15 static const unsigned value = 0; member in struct:Y
19 static const unsigned value = 1; member in struct:Y
25 int check0[X<int>::value == 0? 1 : -1]; // uses primary template
26 int check1[X<int(int, float, double)>::value == 1? 1 : -1]; // uses partial specialization
27 int check2[X<int(float, int)>::value == 0? 1 : -1]; // uses primary template
28 int check3[Y<>::value == 0? 1 : -1]; // uses primary template
29 int check4[Y<int&, float&, double&>::value == 1? 1 : -1]; // uses partial specialization
30 int check5[Y<int, float, double>::value
[all...]
/external/proguard/src/proguard/evaluation/value/
H A DParticularDoubleValue.java21 package proguard.evaluation.value;
24 * This DoubleValue represents a particular double value.
30 private final double value; field in class:ParticularDoubleValue
34 * Creates a new particular double value.
36 public ParticularDoubleValue(double value) argument
38 this.value = value;
44 public double value() method in class:ParticularDoubleValue
46 return value;
54 return new ParticularDoubleValue(-value);
[all...]
H A DParticularFloatValue.java21 package proguard.evaluation.value;
24 * This FloatValue represents a particular float value.
30 private final float value; field in class:ParticularFloatValue
34 * Creates a new particular float value.
36 public ParticularFloatValue(float value) argument
38 this.value = value;
44 public float value() method in class:ParticularFloatValue
46 return value;
54 return new ParticularFloatValue(-value);
[all...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DEncodedValueUtils.java32 public static byte getRequiredBytesForSignedIntegralValue(long value) { argument
34 * Figure out how many bits are needed to represent the value,
43 65 - Long.numberOfLeadingZeros(value ^ (value >> 63));
50 long value = 0;
52 value |= (((long)(bytes[i] & 0xFF)) << (i * 8));
56 return value << shift >> shift;
59 public static byte[] encodeSignedIntegralValue(long value) { argument
60 int requiredBytes = getRequiredBytesForSignedIntegralValue(value);
65 bytes[i] = (byte) value;
75 getRequiredBytesForUnsignedIntegralValue(long value) argument
94 encodeUnsignedIntegralValue(long value) argument
110 getRequiredBytesForRightZeroExtendedValue(long value) argument
129 encodeRightZeroExtendedValue(long value) argument
[all...]
/external/valgrind/main/none/tests/s390x/
H A Dflogr.c21 register unsigned long value asm("4") = input;
29 : [val] "d"(value)
34 printf("value = %lx, bitpos = %lu, modval = %lx, cc = %d\n",
35 value, *bitpos, *modval, *cc);
45 register unsigned long value asm("2") = input;
52 [psw]"=d"(psw), [val] "+d"(value)
58 printf("value = %lx, bitpos = %lu, modval = %lx, cc = %d\n",
59 value, *bitpos, *modval, *cc);
69 register unsigned long value asm("3") = input;
76 [psw]"=d"(psw), [val] "+d"(value)
91 unsigned long bitpos, modval, value; local
[all...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
H A DByteEncodedValue.java36 public final byte value; field in class:ByteEncodedValue
39 * Constructs a new <code>ByteEncodedValue</code> by reading the value from the given <code>Input</code> object.
40 * The <code>Input</code>'s cursor should be set to the 2nd byte of the encoded value
44 value = (byte)EncodedValueUtils.decodeSignedIntegralValue(in.readBytes(1));
48 * Constructs a new <code>ByteEncodedValue</code> with the given value
49 * @param value The value
51 public ByteEncodedValue(byte value) { argument
52 this.value = value;
[all...]
/external/webkit/Source/JavaScriptCore/wtf/
H A DTypeTraits.cpp29 COMPILE_ASSERT(IsInteger<bool>::value, WTF_IsInteger_bool_true);
30 COMPILE_ASSERT(IsInteger<char>::value, WTF_IsInteger_char_true);
31 COMPILE_ASSERT(IsInteger<signed char>::value, WTF_IsInteger_signed_char_true);
32 COMPILE_ASSERT(IsInteger<unsigned char>::value, WTF_IsInteger_unsigned_char_true);
33 COMPILE_ASSERT(IsInteger<short>::value, WTF_IsInteger_short_true);
34 COMPILE_ASSERT(IsInteger<unsigned short>::value, WTF_IsInteger_unsigned_short_true);
35 COMPILE_ASSERT(IsInteger<int>::value, WTF_IsInteger_int_true);
36 COMPILE_ASSERT(IsInteger<unsigned int>::value, WTF_IsInteger_unsigned_int_true);
37 COMPILE_ASSERT(IsInteger<long>::value, WTF_IsInteger_long_true);
38 COMPILE_ASSERT(IsInteger<unsigned long>::value, WTF_IsInteger_unsigned_long_tru
[all...]

Completed in 709 milliseconds

1234567891011>>