HomeSort by relevance Sort by last modified time
    Searched refs:value (Results 126 - 150 of 31402) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/clang/test/Headers/
x86_64-apple-macosx-types.cpp 5 static constexpr const bool value = true; member in struct:true_type
9 static constexpr const bool value = false; member in struct:false_type
16 static_assert(is_same<char, char>::value, "is_same is broken");
17 static_assert(!is_same<char, char *>::value, "is_same is broken");
21 static constexpr const bool value = member in struct:check_type
29 static_assert(check_type<bool, 1, 1>::value, "bool is wrong");
31 static_assert(check_type<char, 1, 1>::value, "char is wrong");
32 static_assert(check_type<signed char, 1, 1>::value, "signed char is wrong");
33 static_assert(check_type<unsigned char, 1, 1>::value, "unsigned char is wrong");
35 static_assert(check_type<char16_t, 2, 2>::value, "char16_t is wrong")
    [all...]
  /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/hamcrest/hamcrest-core/src/test/java/org/hamcrest/core/
SampleSubClass.java 5 public SampleSubClass(String value) {
6 super(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/third_party/freetype/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; }
  /external/swiftshader/src/OpenGL/compiler/
util.h 24 // 2. it clamps the value to -FLT_MAX or FLT_MAX if overflow happens.
26 bool atof_clamp(const char *str, float *value);
28 // If overflow happens, clamp the value to INT_MIN or INT_MAX.
30 bool atoi_clamp(const char *str, int *value);
util.cpp 20 bool atof_clamp(const char *str, float *value)
22 bool success = pp::numeric_lex_float(str, value);
24 *value = std::numeric_limits<float>::max();
28 bool atoi_clamp(const char *str, int *value)
30 bool success = pp::numeric_lex_int(str, value);
32 *value = std::numeric_limits<int>::max();
  /frameworks/base/media/mca/filterfw/native/core/
value.cpp 21 #include "value.h"
34 POD GetPODValue(Value value) {
35 return value.type == TYPEID ? *reinterpret_cast<POD*>(value.value) : POD();
39 PTR GetPtrValue(Value value) {
40 return value.type == TYPEID ? reinterpret_cast<PTR>(value.value) : NULL
    [all...]
  /libcore/ojluni/src/main/java/sun/util/locale/
Extension.java 37 private String value, id; field in class:Extension
43 Extension(char key, String value) {
45 setValue(value);
48 protected void setValue(String value) {
49 this.value = value;
50 this.id = key + LanguageTag.SEP + value;
58 return value;
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/
instruction.cpp 29 void spvInstructionAddWord(spv_instruction_t* inst, uint32_t value) {
30 inst->words.push_back(value);
  /external/valgrind/none/tests/
unit_debuglog.c 51 double value; local
53 fprintf(stderr, "...testing value 0\n");
54 value = 0.0;
55 run("|%f|", value);
56 run("|%2f|", value);
57 run("|%9f|", value);
58 run("|%8.0f|", value);
59 run("|%8.1f|", value);
60 run("|%8.2f|", value);
63 fprintf(stderr, "...testing value 3.7 (with rounding)\n")
    [all...]
  /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/flatbuffers/net/FlatBuffers/
Offset.cs 24 public int Value;
25 public Offset(int value)
27 Value = value;
33 public int Value;
34 public StringOffset(int value)
36 Value = value;
42 public int Value;
43 public VectorOffset(int value)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
Output.java 18 * The value field
21 public T value; field in class:Output
29 return value == null ? "null" : value.toString();
41 * Constructs an <code>Output</code> with the given value.
42 * @param value the initial value
45 public Output(T value) {
46 this.value = value;
    [all...]
  /frameworks/base/keystore/java/android/security/keystore/
Utils.java 29 static Date cloneIfNotNull(Date value) {
30 return (value != null) ? (Date) value.clone() : null;
33 static byte[] cloneIfNotNull(byte[] value) {
34 return (value != null) ? value.clone() : null;

Completed in 687 milliseconds

1 2 3 4 56 7 8 91011>>