HomeSort by relevance Sort by last modified time
    Searched refs:value (Results 201 - 225 of 36195) sorted by null

1 2 3 4 5 6 7 891011>>

  /hardware/qcom/display/msm8998/sdm/libs/utils/
debug.cpp 44 int value = 0; local
45 debug_.debug_handler_->GetProperty("sdm.composition_simulation", &value);
47 return value;
51 int value = 0; local
52 debug_.debug_handler_->GetProperty("hw.hdmi.resolution", &value);
54 return value;
69 int value = 0; local
70 debug_.debug_handler_->GetProperty("sdm.boot_anim_layer_count", &value);
72 return value;
76 int value = 0 local
83 int value = 0; local
90 int value = -1; local
109 int value = 0; local
116 int value = 0; local
123 int value = 0; local
130 int value = 0; local
137 int value = 0; local
157 int value = 0; local
164 int value = 0; local
171 int value = 0; local
178 int value = 0; local
185 char value[64] = {}; local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
TypeConverter.java 43 String value = data != null ? data.getValue() : null; local
44 return value != null ? value : "";
66 * In JSilver: A string must be a complete, valid numeric value for parsing. This means {@code
75 public static int parseNumber(String value) throws NumberFormatException {
78 if (value.startsWith("0x") || value.startsWith("0X")) {
79 return Integer.parseInt(value.substring(2), 16);
81 return Integer.parseInt(value);
88 public static int asNumber(String value) {
    [all...]
  /external/proguard/src/proguard/evaluation/value/
ParticularDoubleValue.java 21 package proguard.evaluation.value;
24 * This DoubleValue represents a particular double value.
30 private final double value; field in class:ParticularDoubleValue
34 * Creates a new particular double value.
36 public ParticularDoubleValue(double value)
38 this.value = value;
44 public double value() method in class:ParticularDoubleValue
46 return value;
54 return new ParticularDoubleValue(-value);
    [all...]
ParticularFloatValue.java 21 package proguard.evaluation.value;
24 * This FloatValue represents a particular float value.
30 private final float value; field in class:ParticularFloatValue
34 * Creates a new particular float value.
36 public ParticularFloatValue(float value)
38 this.value = value;
44 public float value() method in class:ParticularFloatValue
46 return value;
54 return new ParticularFloatValue(-value);
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1Boolean.java 25 private final byte[] value; field in class:ASN1Boolean
63 * @param value true or false depending on the ASN1Boolean wanted.
67 boolean value)
69 return (value ? TRUE : FALSE);
73 * return an ASN1Boolean from the passed in value.
74 * @param value non-zero (true) or zero (false) depending on the ASN1Boolean wanted.
78 int value)
80 return (value != 0 ? TRUE : FALSE);
121 byte[] value)
123 if (value.length != 1
    [all...]
  /system/tpm/attestation/common/
print_interface_proto.cc 30 std::string GetProtoDebugString(AttestationStatus value) {
31 return GetProtoDebugStringWithIndent(value, 0);
34 std::string GetProtoDebugStringWithIndent(AttestationStatus value,
36 if (value == STATUS_SUCCESS) {
39 if (value == STATUS_UNEXPECTED_DEVICE_ERROR) {
42 if (value == STATUS_NOT_AVAILABLE) {
45 if (value == STATUS_NOT_READY) {
48 if (value == STATUS_NOT_ALLOWED) {
51 if (value == STATUS_INVALID_PARAMETER) {
54 if (value == STATUS_REQUEST_DENIED_BY_CA)
    [all...]
  /external/aac/libFDK/include/arm/
clz_arm.h 118 inline INT fixnormz_D(LONG value) {
121 asm("clz %w0, %w1 " : "=r"(result) : "r"(value));
123 asm("clz %0, %1 " : "=r"(result) : "r"(value));
130 inline INT fixnorm_D(LONG value) {
131 if (!value) return 0;
132 if (value < 0) value = ~value;
133 return fixnormz_D(value) - 1;
138 inline INT fixnormz_S(SHORT value) {
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugTreeGrammar.g3 56 stat: expr { string result = $expr.value.ToString();
57 Console.Out.WriteLine($expr.value + " (about " + result[0] + "*10^" + (result.Length-1) + ")");
59 | ^('=' ID expr) { globalMemory[$ID.text] = $expr.value; }
63 expr returns [BigInteger value]
64 : ^('+' a=expr b=expr) { $value = $a.value.add($b.value); }
65 | ^('-' a=expr b=expr) { $value = $a.value.subtract($b.value); }
    [all...]
ProfileTreeGrammar.g3 56 stat: expr { string result = $expr.value.ToString();
57 Console.Out.WriteLine($expr.value + " (about " + result[0] + "*10^" + (result.Length-1) + ")");
59 | ^('=' ID expr) { globalMemory[$ID.text] = $expr.value; }
63 expr returns [BigInteger value]
64 : ^('+' a=expr b=expr) { $value = $a.value.add($b.value); }
65 | ^('-' a=expr b=expr) { $value = $a.value.subtract($b.value); }
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
VectorialPointValuePair.java 23 * This class holds a point and the vectorial value of an objective function at this point.
38 /** Vectorial value of the objective function at the point. */
39 private final double[] value; field in class:VectorialPointValuePair
41 /** Build a point/objective function value pair.
44 * @param value value of an objective function at the point
46 public VectorialPointValuePair(final double[] point, final double[] value) {
48 this.value = (value == null) ? null : value.clone()
    [all...]
  /external/clang/test/Analysis/
comparison-implicit-casts.cpp 9 // constrained, it should cast the value to the result type in a binary
27 // Create a value that requires more bits to store than a comparison result.
28 int value = 1; local
29 value <<= 8 * comparisonSize;
30 value += 1;
32 // Constrain the value of x.
33 if (x != value) return;
52 // Constrain the value of x.
59 // Construct a value that cannot be represented by 'char',
61 signed int value = 1 + (1 << 8) local
82 size_t value = 1UL; local
    [all...]
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p18.cpp 6 static const bool value = false; member in struct:is_same
11 static const bool value = true; member in struct:is_same
21 static_assert(is_same<decltype(((r))), float const&>::value,
23 static_assert(is_same<decltype(x), float>::value, "should be float");
24 static_assert(is_same<decltype((x)), const float&>::value,
26 static_assert(is_same<decltype(r), float&>::value, "should be float&");
27 static_assert(is_same<decltype(ir), int&>::value, "should be int&");
28 static_assert(is_same<decltype((ir)), int&>::value, "should be int&");
29 static_assert(is_same<decltype(irc), const int&>::value,
31 static_assert(is_same<decltype((irc)), const int&>::value,
    [all...]
  /external/clang/test/CodeGenObjC/Inputs/
literal-support.h 9 + (NSNumber *)numberWithChar:(char)value;
10 + (NSNumber *)numberWithUnsignedChar:(unsigned char)value;
11 + (NSNumber *)numberWithShort:(short)value;
12 + (NSNumber *)numberWithUnsignedShort:(unsigned short)value;
13 + (NSNumber *)numberWithInt:(int)value;
14 + (NSNumber *)numberWithUnsignedInt:(unsigned int)value;
15 + (NSNumber *)numberWithLong:(long)value;
16 + (NSNumber *)numberWithUnsignedLong:(unsigned long)value;
17 + (NSNumber *)numberWithLongLong:(long long)value;
18 + (NSNumber *)numberWithUnsignedLongLong:(unsigned long long)value;
    [all...]
  /external/clang/test/CodeGenObjCXX/Inputs/
literal-support.h 9 + (NSNumber *)numberWithChar:(char)value;
10 + (NSNumber *)numberWithUnsignedChar:(unsigned char)value;
11 + (NSNumber *)numberWithShort:(short)value;
12 + (NSNumber *)numberWithUnsignedShort:(unsigned short)value;
13 + (NSNumber *)numberWithInt:(int)value;
14 + (NSNumber *)numberWithUnsignedInt:(unsigned int)value;
15 + (NSNumber *)numberWithLong:(long)value;
16 + (NSNumber *)numberWithUnsignedLong:(unsigned long)value;
17 + (NSNumber *)numberWithLongLong:(long long)value;
18 + (NSNumber *)numberWithUnsignedLongLong:(unsigned long long)value;
    [all...]
  /system/tpm/tpm_manager/common/
print_tpm_manager_proto.h 16 std::string GetProtoDebugStringWithIndent(TpmManagerStatus value,
18 std::string GetProtoDebugString(TpmManagerStatus value);
19 std::string GetProtoDebugStringWithIndent(NvramResult value, int indent_size);
20 std::string GetProtoDebugString(NvramResult value);
21 std::string GetProtoDebugStringWithIndent(NvramSpaceAttribute value,
23 std::string GetProtoDebugString(NvramSpaceAttribute value);
24 std::string GetProtoDebugStringWithIndent(NvramSpacePolicy value,
26 std::string GetProtoDebugString(NvramSpacePolicy value);
27 std::string GetProtoDebugStringWithIndent(const NvramPolicyRecord& value,
29 std::string GetProtoDebugString(const NvramPolicyRecord& value);
    [all...]
  /external/curl/lib/
curl_endian.c 92 * value [in] - The 32-bit integer value.
95 void Curl_write32_le(const int value, unsigned char *buffer)
97 buffer[0] = (char)(value & 0x000000FF);
98 buffer[1] = (char)((value & 0x0000FF00) >> 8);
99 buffer[2] = (char)((value & 0x00FF0000) >> 16);
100 buffer[3] = (char)((value & 0xFF000000) >> 24);
112 * value [in] - The 64-bit integer value.
116 void Curl_write64_le(const long long value, unsigned char *buffer
    [all...]
  /external/libchrome/base/memory/
raw_scoped_refptr_mismatch_checker.h 32 value = (std::is_pointer<T>::value && enumerator in enum:base::internal::NeedsScopedRefptrButGetsRawPtr::__anon24210
33 (std::is_convertible<T, subtle::RefCountedBase*>::value ||
34 std::is_convertible<T, subtle::RefCountedThreadSafeBase*>::value))
40 enum { value = 0 }; enumerator in enum:base::internal::ParamsUseScopedRefptrCorrectly::__anon24211
45 enum { value = 1 }; enumerator in enum:base::internal::ParamsUseScopedRefptrCorrectly::__anon24212
50 enum { value = !NeedsScopedRefptrButGetsRawPtr<Head>::value && enumerator in enum:base::internal::ParamsUseScopedRefptrCorrectly::__anon24213
51 ParamsUseScopedRefptrCorrectly<std::tuple<Tail...>>::value };
  /external/swiftshader/src/OpenGL/compiler/
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();
36 bool atou_clamp(const char *str, unsigned int *value)
38 bool success = pp::numeric_lex_int(str, value);
40 *value = std::numeric_limits<unsigned int>::max();
  /test/suite_harness/tools/dex-tools/src/dex/structure/
DexEncodedValueType.java 28 * signed one-byte integer value
36 * signed two-byte integer value, sign-extended
44 * unsigned two-byte integer value, zero-extended
52 * signed four-byte integer value, sign-extended
60 * signed eight-byte integer value, sign-extended
69 * IEEE754 32-bit floating point value
78 * IEEE754 64-bit floating point value
86 * unsigned (zero-extended) four-byte integer value, interpreted as an index
87 * into the string_ids section and representing a string value
95 * unsigned (zero-extended) four-byte integer value, interpreted as an inde
163 private byte value; field in class:DexEncodedValueType
    [all...]
  /cts/tests/tests/location/src/android/location/cts/asn1/base/
Asn1TagClass.java 28 private final int value; field in class:Asn1TagClass
30 private Asn1TagClass(int value) {
31 this.value = value;
46 return value;
  /external/desugar/java/com/google/devtools/common/options/
OptionEffectTag.java 25 * so all @Options will require at least one value.
43 * Please try not to do this. Create a new value and deprecate the old one instead, to avoid
59 * <p>Please do not use this value for new flags. This is meant to aid transition and for a very
152 private final int value; field in class:OptionEffectTag
154 OptionEffectTag(int value) {
155 this.value = value;
159 return value;
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/internal/
SelfDescribingValue.java 7 private T value; field in class:SelfDescribingValue
9 public SelfDescribingValue(T value) {
10 this.value = value;
15 description.appendValue(value);
  /external/icu/android_icu4j/src/main/java/android/icu/util/
OutputInt.java 23 * The value field.
29 public int value; field in class:OutputInt
32 * Constructs an <code>OutputInt</code> with value 0.
42 * Constructs an <code>OutputInt</code> with the given value.
44 * @param value the initial value
49 public OutputInt(int value) {
50 this.value = value;
61 return Integer.toString(value);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
OutputInt.java 21 * The value field.
27 public int value; field in class:OutputInt
30 * Constructs an <code>OutputInt</code> with value 0.
40 * Constructs an <code>OutputInt</code> with the given value.
42 * @param value the initial value
47 public OutputInt(int value) {
48 this.value = value;
59 return Integer.toString(value);
    [all...]
  /external/jcommander/src/main/java/com/beust/jcommander/converters/
BooleanConverter.java 34 public Boolean convert(String value) {
35 if ("false".equalsIgnoreCase(value) || "true".equalsIgnoreCase(value)) {
36 return Boolean.parseBoolean(value);
38 throw new ParameterException(getErrorString(value, "a boolean"));

Completed in 2563 milliseconds

1 2 3 4 5 6 7 891011>>