Searched refs:value (Results 76 - 100 of 16071) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2007-02-04-AddrLValue.c7 char *value; member in struct:__anon18537
13 char *value; member in struct:__anon18538
/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/freetype/src/cff/
H A Dcf2error.c45 FT_Error value )
48 *error = value;
/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/nanopb-c/examples/using_double_on_avr/
H A Ddouble_conversion.h2 * is equal to float, i.e. 32 bit value. If you need to communicate
16 extern uint64_t float_to_double(float value);
22 extern float double_to_float(uint64_t value);
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
H A Dcf2error.c45 FT_Error value )
48 *error = value;
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
H A DImmutableByteEncodedValue.java32 package org.jf.dexlib2.immutable.value;
34 import org.jf.dexlib2.base.value.BaseByteEncodedValue;
35 import org.jf.dexlib2.iface.value.ByteEncodedValue;
38 protected final byte value; field in class:ImmutableByteEncodedValue
40 public ImmutableByteEncodedValue(byte value) { argument
41 this.value = value;
51 @Override public byte getValue() { return value; }
H A DImmutableCharEncodedValue.java32 package org.jf.dexlib2.immutable.value;
34 import org.jf.dexlib2.base.value.BaseCharEncodedValue;
35 import org.jf.dexlib2.iface.value.CharEncodedValue;
38 protected final char value; field in class:ImmutableCharEncodedValue
40 public ImmutableCharEncodedValue(char value) { argument
41 this.value = value;
51 @Override public char getValue() { return value; }
H A DImmutableDoubleEncodedValue.java32 package org.jf.dexlib2.immutable.value;
34 import org.jf.dexlib2.base.value.BaseDoubleEncodedValue;
35 import org.jf.dexlib2.iface.value.DoubleEncodedValue;
38 protected final double value; field in class:ImmutableDoubleEncodedValue
40 public ImmutableDoubleEncodedValue(double value) { argument
41 this.value = value;
51 @Override public double getValue() { return value; }
H A DImmutableFloatEncodedValue.java32 package org.jf.dexlib2.immutable.value;
34 import org.jf.dexlib2.base.value.BaseFloatEncodedValue;
35 import org.jf.dexlib2.iface.value.FloatEncodedValue;
38 protected final float value; field in class:ImmutableFloatEncodedValue
40 public ImmutableFloatEncodedValue(float value) { argument
41 this.value = value;
51 @Override public float getValue() { return value; }
H A DImmutableIntEncodedValue.java32 package org.jf.dexlib2.immutable.value;
34 import org.jf.dexlib2.base.value.BaseIntEncodedValue;
35 import org.jf.dexlib2.iface.value.IntEncodedValue;
38 protected final int value; field in class:ImmutableIntEncodedValue
40 public ImmutableIntEncodedValue(int value) { argument
41 this.value = value;
51 @Override public int getValue() { return value; }
H A DImmutableLongEncodedValue.java32 package org.jf.dexlib2.immutable.value;
34 import org.jf.dexlib2.base.value.BaseLongEncodedValue;
35 import org.jf.dexlib2.iface.value.LongEncodedValue;
38 protected final long value; field in class:ImmutableLongEncodedValue
40 public ImmutableLongEncodedValue(long value) { argument
41 this.value = value;
51 @Override public long getValue() { return value; }
H A DImmutableShortEncodedValue.java32 package org.jf.dexlib2.immutable.value;
34 import org.jf.dexlib2.base.value.BaseShortEncodedValue;
35 import org.jf.dexlib2.iface.value.ShortEncodedValue;
38 protected final short value; field in class:ImmutableShortEncodedValue
40 public ImmutableShortEncodedValue(short value) { argument
41 this.value = value;
51 @Override public short getValue() { return 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/chromium_org/third_party/polymer/components-chromium/core-range/
H A Dcore-range-extracted.js6 * The number that represents the current value.
8 * @attribute value
12 value: 0,
15 * The number that indicates the minimum value of the range.
24 * The number that indicates the maximum value of the range.
33 * Specifies the value granularity of the range's value.
42 * Returns the ratio of the value.
51 'value min max step': 'update'
54 calcRatio: function(value) {
[all...]
/external/chromium_org/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/chromium_org/v8/test/webkit/fast/js/
H A DPromise-onRejected-deep.js33 promise = promise.then(function (value) { testFailed('fulfilled'); throw value + 1; }, function (value) { throw value + 1; });
36 promise.catch(function (value) {
37 result = value;
/external/clang/test/CXX/basic/basic.scope/basic.scope.pdecl/
H A Dp9.cpp7 template<> struct X0<unsigned char> { static const bool value = true; }; member in struct:X0
8 int array0[X0<>::value? 1 : -1];
13 template<> struct X1<17> { static const bool value = true; }; member in struct:X1
14 int array1[X1<>::value? 1 : -1];
18 template<> struct X2<X0> { static const bool value = true; }; member in struct:X2
19 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/lldb/test/functionalities/inline-stepping/
H A Dcalling.cpp3 inline int inline_ref_1 (int &value) __attribute__((always_inline));
4 inline int inline_ref_2 (int &value) __attribute__((always_inline));
6 int caller_ref_1 (int &value);
7 int caller_ref_2 (int &value);
9 int called_by_inline_ref (int &value);
28 caller_ref_1 (int &value) argument
30 int increment = caller_ref_2(value); // In caller_ref_1.
31 value += increment; // At increment in caller_ref_1.
32 return value;
36 caller_ref_2 (int &value) argument
44 called_by_inline_ref(int &value) argument
51 inline_ref_1(int &value) argument
59 inline_ref_2(int &value) argument
[all...]
/external/vixl/src/
H A Dutils-vixl.cc32 uint32_t float_to_rawbits(float value) { argument
34 memcpy(&bits, &value, 4);
39 uint64_t double_to_rawbits(double value) { argument
41 memcpy(&bits, &value, 8);
47 float value = 0.0; local
48 memcpy(&value, &bits, 4);
49 return value;
54 double value = 0.0; local
55 memcpy(&value, &bits, 8);
56 return value;
60 CountLeadingZeros(uint64_t value, int width) argument
72 CountLeadingSignBits(int64_t value, int width) argument
82 CountTrailingZeros(uint64_t value, int width) argument
92 CountSetBits(uint64_t value, int width) argument
[all...]
/external/chromium_org/v8/src/
H A Dmisc-intrinsics.h17 int IntegerLog2(uint32_t value);
21 inline int IntegerLog2(uint32_t value) { argument
22 return 31 - __builtin_clz(value);
29 inline int IntegerLog2(uint32_t value) { argument
31 _BitScanReverse(&result, value);
39 inline int IntegerLog2(uint32_t value) { argument
42 shift = (value > 0xFFFF) << 4;
43 value >>= shift;
46 shift = (value > 0xFF) << 3;
47 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...]

Completed in 1527 milliseconds

1234567891011>>