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

1234567891011>>

/external/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/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/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/clang/test/SemaTemplate/
H A Dfibonacci.cpp8 enum { value = FibonacciEval<I-1>::value + FibonacciEval<I-2>::value }; enumerator in enum:Fibonacci::__anon5014
13 enum { value = Fibonacci<I>::value }; enumerator in enum:FibonacciEval::__anon5015
17 enum { value = 0 }; enumerator in enum:Fibonacci::__anon5016
21 enum { value = 1 }; enumerator in enum:Fibonacci::__anon5017
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/clang/test/CodeGenCXX/
H A Dforward-enum.cpp4 void bar(MyEnum value) { } argument
7 void foo(MyEnum value) argument
10 bar(value);
/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/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...]
H A DConvertedDoubleValue.java21 package proguard.evaluation.value;
24 * This DoubleValue represents a double value that is converted from another
25 * scalar value.
31 private final Value value; field in class:ConvertedDoubleValue
35 * Creates a new converted double value of the given value.
37 public ConvertedDoubleValue(Value value) argument
39 this.value = value;
49 this.value
[all...]
H A DConvertedFloatValue.java21 package proguard.evaluation.value;
24 * This FloatValue represents a float value that is converted from another
25 * scalar value.
31 private final Value value; field in class:ConvertedFloatValue
35 * Creates a new converted float value of the given value.
37 public ConvertedFloatValue(Value value) argument
39 this.value = value;
49 this.value
[all...]
H A DConvertedIntegerValue.java21 package proguard.evaluation.value;
24 * This IntegerValue represents a integer value that is converted from another
25 * scalar value.
31 private final Value value; field in class:ConvertedIntegerValue
35 * Creates a new converted integer value of the given value.
37 public ConvertedIntegerValue(Value value) argument
39 this.value = value;
49 this.value
[all...]
H A DConvertedLongValue.java21 package proguard.evaluation.value;
24 * This LongValue represents a long value that is converted from another
25 * scalar value.
31 private final Value value; field in class:ConvertedLongValue
35 * Creates a new converted long value of the given value.
37 public ConvertedLongValue(Value value) argument
39 this.value = value;
49 this.value
[all...]
H A DConvertedShortValue.java21 package proguard.evaluation.value;
24 * This IntegerValue represents a short value that is converted from an
25 * integer value.
31 private final IntegerValue value; field in class:ConvertedShortValue
35 * Creates a new converted short value of the given integer value.
37 public ConvertedShortValue(IntegerValue value) argument
39 this.value = value;
49 this.value
[all...]
/external/qemu/
H A Dvarint.c27 // Encodes the 64-bit value "value" using the varint encoding. The varint
42 char *varint_encode(uint64_t value, char *buf) { argument
43 if (value < k2Exp7) {
44 *buf++ = value;
45 } else if (value < k2Exp14) {
46 *buf++ = (2 << 6) | (value >> 8);
47 *buf++ = value & 0xff;
48 } else if (value < k2Exp21) {
49 *buf++ = (6 << 5) | (value >> 1
95 varint_encode_signed(int64_t value, char *buf) argument
[all...]
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/atomic/
H A DAtomicInteger.java27 private int value; field in class:AtomicInteger
30 value = initialValue;
37 return value;
41 value = newValue;
49 int current = value;
50 value = newValue;
55 if (value == expect) {
56 value = update;
64 return value++;
68 return value
[all...]
H A DAtomicLong.java27 private long value; field in class:AtomicLong
30 this.value = initialValue;
37 return value;
41 value = newValue;
49 long current = value;
50 value = newValue;
55 if (value == expect) {
56 value = update;
64 return value++;
68 return value
[all...]
/external/aac/libFDK/include/arm/
H A Dclz_arm.h99 inline INT fixnormz_D(LONG value) argument
102 asm("clz %0, %1 ": "=r"(result) : "r"(value) );
106 inline INT fixnorm_D(LONG value) argument
109 if (value == 0) {
112 if (value < 0) {
113 value = ~value;
115 result = fixnormz_D(value);
/external/chromium/net/socket/
H A Dtcp_client_socket.cc11 void set_tcp_fastopen_enabled(bool value) { argument
12 g_tcp_fastopen_enabled = value;

Completed in 3360 milliseconds

1234567891011>>