Searched refs:value (Results 1 - 25 of 16071) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-318.js30 function test(value) {
31 if (typeof(value) == 'boolean') value = value + '';
32 if (typeof(value) == 'number') value = value + '';
H A Dregress-1491.js36 var value = "asdf"; variable
37 o.length = value;
38 assertEquals(value, o.length);
H A Dregress-752.js32 function replacer(key, value) {
33 return value === 42 ? new Boolean(false) : value;
H A Dregress-995.js35 function f(value) {
36 if (%_IsSpecObject(value)) {
37 if ((%_IsArray(value))) assertTrue(false);
43 function g(value) {
44 if (%_ClassOf(value) === 'Date') {
45 if (%_ClassOf(value) === 'String') assertTrue(false);
51 function h(value) {
52 if (value == null) {
53 if (value === null) assertTrue(false);
/external/chromium_org/v8/src/base/
H A Dbits.cc12 uint32_t RoundUpToPowerOfTwo32(uint32_t value) { argument
13 DCHECK_LE(value, 0x80000000u);
14 value = value - 1;
15 value = value | (value >> 1);
16 value = value | (value >>
[all...]
H A Dbits.h21 // CountPopulation32(value) returns the number of bits set in |value|.
22 inline uint32_t CountPopulation32(uint32_t value) { argument
24 return __builtin_popcount(value);
26 value = ((value >> 1) & 0x55555555) + (value & 0x55555555);
27 value = ((value >> 2) & 0x33333333) + (value
38 CountLeadingZeros32(uint32_t value) argument
59 CountTrailingZeros32(uint32_t value) argument
77 IsPowerOfTwo32(uint32_t value) argument
83 IsPowerOfTwo64(uint64_t value) argument
99 RoundDownToPowerOfTwo32(uint32_t value) argument
107 RotateRight32(uint32_t value, uint32_t shift) argument
113 RotateRight64(uint64_t value, uint64_t shift) argument
[all...]
/external/lldb/test/lang/cpp/exceptions/
H A Dexceptions.cpp4 int throws_exception_on_even (int value);
5 int intervening_function (int value);
6 int catches_exception (int value);
9 catches_exception (int value) argument
13 return intervening_function(value); // This is the line you should stop at for catch
15 catch (int value)
17 return value;
22 intervening_function (int value) argument
24 return throws_exception_on_even (2 * value);
28 throws_exception_on_even (int value) argument
[all...]
/external/smali/util/src/main/java/org/jf/util/
H A DNibbleUtils.java37 * byte of the given value
38 * @param value the value to extract the nibble from
39 * @return the extracted signed nibble value
41 public static int extractHighSignedNibble(int value) { argument
42 return (value << 24) >> 28;
47 * byte of the given value
48 * @param value the value to extract the nibble from
49 * @return the extracted signed nibble value
51 extractLowSignedNibble(int value) argument
61 extractHighUnsignedNibble(int value) argument
71 extractLowUnsignedNibble(int value) argument
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DMutableInteger.java35 public int value; field in class:MutableInteger
39 public MutableInteger(int value) { argument
40 this.value = value;
/external/clang/test/CodeGenCXX/
H A Dcatch-undef-behavior2.cpp3 bool GetOptionalBool(bool *value);
7 bool value; local
8 return GetOptionalBool(&value) ? value : default_value;
H A Dforward-enum.cpp4 void bar(MyEnum value) { } argument
7 void foo(MyEnum value) argument
10 bar(value);
/external/proguard/src/proguard/gui/splash/
H A DConstantDouble.java30 private final double value; field in class:ConstantDouble
35 * @param value the constant value.
37 public ConstantDouble(double value) argument
39 this.value = value;
47 return value;
H A DConstantInt.java30 private final int value; field in class:ConstantInt
35 * @param value the constant value.
37 public ConstantInt(int value) argument
39 this.value = value;
47 return value;
/external/fdlibm/
H A Ds_ldexp.c18 double ieee_ldexp(double value, int exp) argument
20 double ieee_ldexp(value, exp)
21 double value; int exp;
24 if(!ieee_finite(value)||value==0.0) return value;
25 value = ieee_scalbn(value,exp);
26 if(!ieee_finite(value)||value
[all...]
/external/chromium_org/base/debug/
H A Dtrace_event_argument_unittest.cc12 scoped_refptr<TracedValue> value = new TracedValue(); local
13 value->SetInteger("int", 2014);
14 value->SetDouble("double", 0.0);
15 value->SetBoolean("bool", true);
16 value->SetString("string", "string");
18 value->AppendAsTraceFormat(&json);
24 scoped_refptr<TracedValue> value = new TracedValue(); local
25 value->SetInteger("i0", 2014);
26 value->BeginDictionary("dict1");
27 value
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DTracedValueTest.cpp17 RefPtr<TracedValue> value = TracedValue::create(); local
18 value->setInteger("int", 2014);
19 value->setDouble("double", 0.0);
20 value->setBoolean("bool", true);
21 value->setString("string", "string");
22 String json = value->asTraceFormat();
28 RefPtr<TracedValue> value = TracedValue::create(); local
29 value->setInteger("i0", 2014);
30 value->beginDictionary("dict1");
31 value
[all...]
/external/clang/test/SemaTemplate/
H A Dfibonacci.cpp8 enum { value = FibonacciEval<I-1>::value + FibonacciEval<I-2>::value }; enumerator in enum:Fibonacci::__anon19448
13 enum { value = Fibonacci<I>::value }; enumerator in enum:FibonacciEval::__anon19449
17 enum { value = 0 }; enumerator in enum:Fibonacci::__anon19450
21 enum { value = 1 }; enumerator in enum:Fibonacci::__anon19451
24 int array5[Fibonacci<5>::value == 5? 1 : -1];
25 int array10[Fibonacci<10>::value == 55? 1 : -1];
32 static const unsigned value member in struct:Fibonacci2
38 static const unsigned value = Fibonacci2<I>::value; member in struct:FibonacciEval2
42 static const unsigned value = 0; member in struct:Fibonacci2
46 static const unsigned value = 1; member in struct:Fibonacci2
54 static const unsigned value = Fibonacci3<I-1>::value + Fibonacci3<I-2>::value; member in struct:Fibonacci3
58 static const unsigned value = 0; member in struct:Fibonacci3
62 static const unsigned value = 1; member in struct:Fibonacci3
[all...]
H A Dtemp_class_spec_blocks.cpp5 static const bool value = false; member in struct:is_unary_block
10 static const bool value = true; member in struct:is_unary_block
13 int is_unary_block0[is_unary_block<int>::value ? -1 : 1];
14 int is_unary_block1[is_unary_block<int (^)()>::value ? -1 : 1];
15 int is_unary_block2[is_unary_block<int (^)(int, bool)>::value ? -1 : 1];
16 int is_unary_block3[is_unary_block<int (^)(bool)>::value ? 1 : -1];
17 int is_unary_block4[is_unary_block<int (^)(int)>::value ? 1 : -1];
21 static const bool value = false; member in struct:is_unary_block_with_same_return_type_as_argument_type
26 static const bool value = true; member in struct:is_unary_block_with_same_return_type_as_argument_type
29 int is_unary_block5[is_unary_block_with_same_return_type_as_argument_type<int>::value
[all...]
/external/chromium_org/remoting/webapp/
H A Dtypecheck.js7 * array value.
10 * a default value is specified in |opt_default|.
14 * @param {Array=} opt_default The value to return if the key is not a bool.
15 * @return {Array} The |key| attribute value as an object.
18 var value = /** @type {Array} */ (dict[key]);
19 if (!(value instanceof Array)) {
22 ' (expected: array, actual: ' + typeof value + ')';
27 return value;
32 * boolean value.
35 * a default value i
[all...]
/external/clang/test/SemaCXX/
H A Dcxx11-user-defined-literals-unused.cpp4 double operator"" _x(long double value) { return double(value); } argument
5 int operator"" _ii(long double value) { return int(value); } // expected-warning {{not needed and will not be emitted}} argument
9 template<class T> double value() { return 3.2_x; } function in namespace:rdar13589856
12 double get_value() { return value<double>(); }
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1Boolean.java6 public ASN1Boolean(boolean value) argument
8 super(value);
11 ASN1Boolean(byte[] value) argument
13 super(value);
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebFloatKeyframe.h31 WebFloatKeyframe(double time, float value) argument
33 , value(value)
38 float value; member in struct:blink::WebFloatKeyframe
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
H A DAspectRatio.java34 private int value; field in class:AspectRatio
36 private AspectRatio(int value) { argument
37 this.value = value;
40 public static AspectRatio fromValue(int value) { argument
41 if (value == Extended_SAR.value) {
44 return new AspectRatio(value);
48 return value;
/external/proguard/src/proguard/evaluation/value/
H A DConvertedByteValue.java21 package proguard.evaluation.value;
24 * This IntegerValue represents a byte value that is converted from an
25 * integer value.
31 private final IntegerValue value; field in class:ConvertedByteValue
35 * Creates a new converted byte value of the given integer value.
37 public ConvertedByteValue(IntegerValue value) argument
39 this.value = value;
49 this.value
[all...]
H A DConvertedCharacterValue.java21 package proguard.evaluation.value;
24 * This IntegerValue represents a character value that is converted from an
25 * integer value.
31 private final IntegerValue value; field in class:ConvertedCharacterValue
35 * Creates a new converted character value of the given integer value.
37 public ConvertedCharacterValue(IntegerValue value) argument
39 this.value = value;
49 this.value
[all...]

Completed in 660 milliseconds

1234567891011>>