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

<<11121314151617181920>>

  /external/skqp/src/sfnt/
SkOTTable_OS_2_V2.h 24 enum Value : SK_OT_USHORT {
35 SK_OT_USHORT value; member in struct:SkOTTableOS2_V2
38 enum Value : SK_OT_USHORT {
48 } value; variable in typeref:struct:WidthClass
75 static const SK_OT_USHORT RestrictedMask = SkOTSetUSHORTBit<1>::value;
76 static const SK_OT_USHORT PreviewPrintMask = SkOTSetUSHORTBit<2>::value;
77 static const SK_OT_USHORT EditableMask = SkOTSetUSHORTBit<3>::value;
78 static const SK_OT_USHORT NoSubsettingMask = SkOTSetUSHORTBit<8>::value;
79 static const SK_OT_USHORT BitmapMask = SkOTSetUSHORTBit<9>::value;
80 SK_OT_USHORT value;
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
Output.java 34 * Asserts that the cursor is the given value.
36 * @param expectedCursor the expected cursor value
45 * @param value the value to write; all but the low 8 bits are ignored
47 public void writeByte(int value);
52 * @param value the value to write; all but the low 16 bits are ignored
54 public void writeShort(int value);
59 * @param value the value to writ
    [all...]
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttAnnotationDefault.java 28 /** {@code non-null;} the annotation default value */
29 private final Constant value; field in class:AttAnnotationDefault
38 * @param value {@code non-null;} the annotation default value
42 public AttAnnotationDefault(Constant value, int byteLength) {
45 if (value == null) {
46 throw new NullPointerException("value == null");
49 this.value = value;
61 * Gets the annotation default value
    [all...]
  /dalvik/dx/src/com/android/dx/util/
Output.java 36 * Asserts that the cursor is the given value.
38 * @param expectedCursor the expected cursor value
47 * @param value the value to write; all but the low 8 bits are ignored
50 public void writeByte(int value);
55 * @param value the value to write; all but the low 16 bits are ignored
57 public void writeShort(int value);
62 * @param value the value to writ
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/bridge/
VmOptionLogMessage.java 27 private final String value; field in class:VmOptionLogMessage
29 VmOptionLogMessage(String name, String value) {
31 this.value = checkNotNull(value);
38 public String value() { method in class:VmOptionLogMessage
39 return value;
  /external/clang/test/CXX/expr/expr.unary/expr.sizeof/
p5-0x.cpp 5 static const unsigned value = sizeof...(Types); member in struct:count_types
9 static const unsigned value = sizeof...(Values); member in struct:count_ints
13 int check_types[count_types<short, int, long>::value == 3? 1 : -1];
14 int check_ints[count_ints<1, 2, 3, 4, 5>::value == 5? 1 : -1];
29 template<int Value> struct count_ints_2 {
30 static const unsigned value = sizeof...(Value); // expected-error{{'Value' does not refer to the name of a parameter pack}} member in struct:count_ints_2
35 static const unsigned value = sizeof... Type; // expected-error{{missing parentheses around the size of parameter pack 'Type'}} \ member in struct:count_types_2
  /external/clang/test/CXX/temp/temp.decls/temp.class/temp.static/
p1.cpp 7 static T value; member in struct:X0
11 T X0<T>::value = 0; // expected-error{{no viable conversion}} member in class:X0
22 int& get_int() { return X0<int>::value; }
23 X1& get_X1() { return X0<X1>::value; }
25 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 *'}}
28 return X0<X2>::value; // expected-note{{instantiation}}
  /external/clang/test/SemaCXX/
decltype-this.cpp 5 static const bool value = false; member in struct:is_same
9 static const bool value = true; member in struct:is_same
13 void f() { static_assert(is_same<decltype(this), S*>::value, ""); }
14 void g() const { static_assert(is_same<decltype(this), const S*>::value, ""); }
15 void h() volatile { static_assert(is_same<decltype(this), volatile S*>::value, ""); }
16 void i() const volatile { static_assert(is_same<decltype(this), const volatile S*>::value, ""); }
  /external/elfutils/backends/
sparc_attrs.c 41 const char *vendor, int tag, uint64_t value,
57 if (value < 30 && hwcaps[value] != NULL)
58 *value_name = hwcaps[value];
68 if (value < 11)
69 *value_name = hwcaps2[value];
  /external/fonttools/Lib/fontTools/ttLib/tables/
_h_e_a_d.py 52 value = getattr(self, name)
55 value = time.asctime(time.gmtime(max(0, value + mac_epoch_diff)))
57 value = time.asctime(time.gmtime(0))
59 if value < 0:
60 value = value + 0x100000000
61 value = hex(value)
62 if value[-1:] == "L"
    [all...]
  /external/libchrome/base/
template_util_unittest.cc 28 static_assert(!is_non_const_reference<int>::value, "IsNonConstReference");
29 static_assert(!is_non_const_reference<const int&>::value,
31 static_assert(is_non_const_reference<int&>::value, "IsNonConstReference");
34 static_assert(internal::SupportsOstreamOperator<int>::value,
36 static_assert(internal::SupportsOstreamOperator<const char*>::value,
38 static_assert(internal::SupportsOstreamOperator<std::string>::value,
42 static_assert(internal::SupportsOstreamOperator<SimpleEnum>::value,
43 "simple enum should be printable by value");
44 static_assert(internal::SupportsOstreamOperator<const SimpleEnum&>::value,
46 static_assert(internal::SupportsOstreamOperator<EnumWithExplicitType>::value,
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/tokens/
AliasToken.java 21 private final String value; field in class:AliasToken
23 public AliasToken(String value, Mark startMark, Mark endMark) {
25 this.value = value;
29 return this.value;
34 return "value=" + value;
AnchorToken.java 21 private final String value; field in class:AnchorToken
23 public AnchorToken(String value, Mark startMark, Mark endMark) {
25 this.value = value;
29 return this.value;
34 return "value=" + value;
  /external/tensorflow/tensorflow/contrib/lite/java/src/main/java/org/tensorflow/lite/
DataType.java 35 private final int value; field in class:DataType
37 DataType(int value) {
38 this.value = value;
41 /** Corresponding value of the kTfLite* enum in the TensorFlow Lite CC API. */
43 return value;
49 if (t.value == c) {
  /external/tensorflow/tensorflow/core/lib/monitoring/
gauge_test.cc 28 EXPECT_EQ(0, gauge_with_labels->GetCell("Empty")->value());
33 EXPECT_EQ(0, cell->value());
36 EXPECT_EQ(1, cell->value());
39 EXPECT_EQ(1, same_cell->value());
42 EXPECT_EQ(10, cell->value());
43 EXPECT_EQ(10, same_cell->value());
50 EXPECT_EQ(0, gauge_without_labels->GetCell()->value());
55 EXPECT_EQ(0, cell->value());
58 EXPECT_EQ(1, cell->value());
61 EXPECT_EQ(1, same_cell->value());
    [all...]
  /frameworks/base/core/java/android/security/keymaster/
KeymasterLongArgument.java 25 public final long value; field in class:KeymasterLongArgument
27 public KeymasterLongArgument(int tag, long value) {
36 this.value = value;
41 value = in.readLong();
46 out.writeLong(value);
  /frameworks/support/core/ktx/src/main/java/androidx/core/content/
ContentValues.kt 22 * Returns a new [ContentValues] with the given key/value pairs as elements.
24 * @throws IllegalArgumentException When a value is not a supported type of [ContentValues].
27 for ((key, value) in pairs) {
28 when (value) {
30 is String -> put(key, value)
31 is Int -> put(key, value)
32 is Long -> put(key, value)
33 is Boolean -> put(key, value)
34 is Float -> put(key, value)
35 is Double -> put(key, value)
    [all...]
  /hardware/interfaces/keymaster/4.0/support/include/keymasterV4_0/
key_param_output.h 28 inline ::std::ostream& operator<<(::std::ostream& os, Algorithm value) {
29 return os << toString(value);
32 inline ::std::ostream& operator<<(::std::ostream& os, BlockMode value) {
33 return os << toString(value);
36 inline ::std::ostream& operator<<(::std::ostream& os, Digest value) {
37 return os << toString(value);
40 inline ::std::ostream& operator<<(::std::ostream& os, EcCurve value) {
41 return os << toString(value);
44 inline ::std::ostream& operator<<(::std::ostream& os, ErrorCode value) {
45 return os << toString(value);
    [all...]
  /test/suite_harness/tools/dex-tools/src/dex/structure/
DexAnnotation.java 46 private byte value; field in class:DexAnnotation.Visibility
48 private Visibility(byte value) {
49 this.value = value;
54 * pre: 0 <= {@code value} <=2
56 * @param value
57 * the {@code byte} value which identifies a {@code
61 public static Visibility get(byte value) {
63 switch (value) {
  /art/test/078-polymorphic-virtual/src/
Base.java 18 int value; field in class:Base
30 return value;
  /art/test/438-volatile/src/
Main.java 41 public static void checkVolatileUpdate(long value) {
42 if (value != $opt$update(value)) {
43 throw new RuntimeException("Volatile update failed for long:" + value);
47 public static void checkVolatileUpdate(double value) {
48 if (value != $opt$update(value)) {
49 throw new RuntimeException("Volatile update failed for double:" + value);
  /art/tools/amm/AmmTest/src/com/android/amm/test/
SoCodeUse.java 20 private int value; field in class:SoCodeUse
26 value = nGetANumber();
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aput/d/
T_aput_1.java 20 public void run(int[] arr, int idx, int value) {
21 arr[idx] = value;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aput_boolean/d/
T_aput_boolean_1.java 20 public void run(boolean[] arr, int idx, boolean value) {
21 arr[idx] = value;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aput_byte/d/
T_aput_byte_1.java 20 public void run(byte[] arr, int idx, byte value) {
21 arr[idx] = value;

Completed in 566 milliseconds

<<11121314151617181920>>