HomeSort by relevance Sort by last modified time
    Searched refs:value (Results 76 - 100 of 25190) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/guava/guava-testlib/src/com/google/common/collect/testing/
UnhashableObject.java 27 private final int value; field in class:UnhashableObject
29 public UnhashableObject(int value) {
30 this.value = value;
36 return this.value == that.value;
47 return "DontHashMe" + value;
52 return (this.value < o.value) ? -1 : (this.value > o.value) ? 1 : 0
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
type_traits_unittest.cc 172 EXPECT_TRUE(is_integral<bool>::value);
173 EXPECT_TRUE(is_integral<char>::value);
174 EXPECT_TRUE(is_integral<unsigned char>::value);
175 EXPECT_TRUE(is_integral<signed char>::value);
176 EXPECT_TRUE(is_integral<wchar_t>::value);
177 EXPECT_TRUE(is_integral<int>::value);
178 EXPECT_TRUE(is_integral<unsigned int>::value);
179 EXPECT_TRUE(is_integral<short>::value);
180 EXPECT_TRUE(is_integral<unsigned short>::value);
181 EXPECT_TRUE(is_integral<long>::value);
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Integers.java 5 public static Integer valueOf(int value)
7 return Integer.valueOf(value);
  /external/chromium_org/third_party/freetype/src/cff/
cf2error.c 45 FT_Error value )
48 *error = value;
  /external/clang/test/CodeGen/
2007-02-04-AddrLValue.c 7 char *value; member in struct:__anon2242
13 char *value; member in struct:__anon2243
  /external/clang/test/CodeGenCXX/
debug-info-ctor.cpp 6 int value; member in struct:X
12 value = v;
  /external/clang/test/Misc/
diag-trailing-null-bytes.cpp 5 #define NET_ERROR(label, value) ERR_ ## label = value,
  /external/clang/test/PCH/
objc_property.h 4 int value; variable
10 @property int value; variable
  /external/freetype/src/cff/
cf2error.c 45 FT_Error value )
48 *error = value;
  /external/jsilver/src/com/google/clearsilver/jsilver/values/
NumberValue.java 22 * A simple numeric value.
24 * @see Value
26 class NumberValue extends Value {
28 private final int value; field in class:NumberValue
30 public NumberValue(int value, EscapeMode escapeMode, boolean partiallyEscaped) {
32 this.value = value;
37 return value != 0;
42 return Integer.toString(value);
47 return value;
    [all...]
  /external/nanopb-c/examples/using_double_on_avr/
double_conversion.h 2 * 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/
cf2error.c 45 FT_Error value )
48 *error = value;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
ImmutableByteEncodedValue.java 32 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) {
41 this.value = value;
51 @Override public byte getValue() { return value; }
ImmutableCharEncodedValue.java 32 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) {
41 this.value = value;
51 @Override public char getValue() { return value; }
ImmutableDoubleEncodedValue.java 32 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) {
41 this.value = value;
51 @Override public double getValue() { return value; }
ImmutableFloatEncodedValue.java 32 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) {
41 this.value = value;
51 @Override public float getValue() { return value; }
ImmutableIntEncodedValue.java 32 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) {
41 this.value = value;
51 @Override public int getValue() { return value; }
ImmutableLongEncodedValue.java 32 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) {
41 this.value = value;
51 @Override public long getValue() { return value; }
ImmutableShortEncodedValue.java 32 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) {
41 this.value = value;
51 @Override public short getValue() { return value; }
  /frameworks/base/media/mca/filterfw/native/core/
value.cpp 20 #include "value.h"
33 POD GetPODValue(Value value) {
34 return value.type == TYPEID ? *reinterpret_cast<POD*>(value.value) : POD();
38 PTR GetPtrValue(Value value) {
39 return value.type == TYPEID ? reinterpret_cast<PTR>(value.value) : NULL
    [all...]
  /bionic/libc/private/
bionic_macros.h 36 #define BIONIC_ALIGN(value, alignment) \
37 (((value) + (alignment) - 1) & ~((alignment) - 1))
39 #define BIONIC_ROUND_UP_POWER_OF_2(value) \
40 (sizeof(value) == 8) \
41 ? (1UL << (64 - __builtin_clzl(static_cast<unsigned long>(value)))) \
42 : (1UL << (32 - __builtin_clz(static_cast<unsigned int>(value))))
  /external/clang/test/CXX/basic/basic.scope/basic.scope.pdecl/
p9.cpp 7 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/lldb/test/functionalities/inline-stepping/
calling.cpp 3 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)
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)
    [all...]
  /external/vixl/src/
utils-vixl.cc 32 uint32_t float_to_rawbits(float value) {
34 memcpy(&bits, &value, 4);
39 uint64_t double_to_rawbits(double value) {
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;
    [all...]
  /external/chromium_org/third_party/jinja2/
tests.py 23 def test_odd(value):
25 return value % 2 == 1
28 def test_even(value):
30 return value % 2 == 0
33 def test_divisibleby(value, num):
35 return value % num == 0
38 def test_defined(value):
44 value of variable: {{ variable }}
52 return not isinstance(value, Undefined)
55 def test_undefined(value)
    [all...]

Completed in 744 milliseconds

1 2 34 5 6 7 8 91011>>