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

1 2 3 4 5 6 78 91011>>

  /external/libcxx/test/libcxx/utilities/utility/
__is_inplace_type.pass.cpp 20 static_assert( std::__is_inplace_type<T>::value, "");
21 static_assert( std::__is_inplace_type<const T>::value, "");
22 static_assert( std::__is_inplace_type<const volatile T>::value, "");
23 static_assert( std::__is_inplace_type<T&>::value, "");
24 static_assert( std::__is_inplace_type<const T&>::value, "");
25 static_assert( std::__is_inplace_type<const volatile T&>::value, "");
26 static_assert( std::__is_inplace_type<T&&>::value, "");
27 static_assert( std::__is_inplace_type<const T&&>::value, "");
28 static_assert( std::__is_inplace_type<const volatile T&&>::value, "");
29 static_assert(!std::__is_inplace_type<std::in_place_index_t<0>>::value, "");
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/utilities/utility/
__is_inplace_index.pass.cpp 20 static_assert( std::__is_inplace_index<I>::value, "");
21 static_assert( std::__is_inplace_index<const I>::value, "");
22 static_assert( std::__is_inplace_index<const volatile I>::value, "");
23 static_assert( std::__is_inplace_index<I&>::value, "");
24 static_assert( std::__is_inplace_index<const I&>::value, "");
25 static_assert( std::__is_inplace_index<const volatile I&>::value, "");
26 static_assert( std::__is_inplace_index<I&&>::value, "");
27 static_assert( std::__is_inplace_index<const I&&>::value, "");
28 static_assert( std::__is_inplace_index<const volatile I&&>::value, "");
29 static_assert(!std::__is_inplace_index<std::in_place_type_t<int>>::value, "");
    [all...]
__is_inplace_type.pass.cpp 20 static_assert( std::__is_inplace_type<T>::value, "");
21 static_assert( std::__is_inplace_type<const T>::value, "");
22 static_assert( std::__is_inplace_type<const volatile T>::value, "");
23 static_assert( std::__is_inplace_type<T&>::value, "");
24 static_assert( std::__is_inplace_type<const T&>::value, "");
25 static_assert( std::__is_inplace_type<const volatile T&>::value, "");
26 static_assert( std::__is_inplace_type<T&&>::value, "");
27 static_assert( std::__is_inplace_type<const T&&>::value, "");
28 static_assert( std::__is_inplace_type<const volatile T&&>::value, "");
29 static_assert(!std::__is_inplace_type<std::in_place_index_t<0>>::value, "");
    [all...]
  /system/chre/apps/chqts/src/shared/
nano_endian_be_test.cc 39 uint32_t value; local
40 ::memcpy(&value, kLittleEndianRepresentation, sizeof(value));
42 value = nanoapp_testing::littleEndianToHost(value);
43 EXPECT_EQ(0, ::memcmp(&value, kBigEndianRepresentation, sizeof(value)));
47 uint32_t value; local
48 ::memcpy(&value, kBigEndianRepresentation, sizeof(value));
    [all...]
nano_endian_le_test.cc 37 uint32_t value; local
38 ::memcpy(&value, kLittleEndianRepresentation, sizeof(value));
40 value = nanoapp_testing::littleEndianToHost(value);
41 EXPECT_EQ(0, ::memcmp(&value, kLittleEndianRepresentation, sizeof(value)));
45 uint32_t value; local
46 ::memcpy(&value, kLittleEndianRepresentation, sizeof(value));
    [all...]
  /system/tpm/attestation/common/
print_common_proto.h 28 std::string GetProtoDebugStringWithIndent(KeyType value, int indent_size);
29 std::string GetProtoDebugString(KeyType value);
30 std::string GetProtoDebugStringWithIndent(KeyUsage value, int indent_size);
31 std::string GetProtoDebugString(KeyUsage value);
32 std::string GetProtoDebugStringWithIndent(CertificateProfile value,
34 std::string GetProtoDebugString(CertificateProfile value);
35 std::string GetProtoDebugStringWithIndent(const Quote& value, int indent_size);
36 std::string GetProtoDebugString(const Quote& value);
37 std::string GetProtoDebugStringWithIndent(const EncryptedData& value,
39 std::string GetProtoDebugString(const EncryptedData& value);
    [all...]
print_interface_proto.h 28 std::string GetProtoDebugStringWithIndent(AttestationStatus value,
30 std::string GetProtoDebugString(AttestationStatus value);
32 const CreateGoogleAttestedKeyRequest& value,
34 std::string GetProtoDebugString(const CreateGoogleAttestedKeyRequest& value);
36 const CreateGoogleAttestedKeyReply& value,
38 std::string GetProtoDebugString(const CreateGoogleAttestedKeyReply& value);
39 std::string GetProtoDebugStringWithIndent(const GetKeyInfoRequest& value,
41 std::string GetProtoDebugString(const GetKeyInfoRequest& value);
42 std::string GetProtoDebugStringWithIndent(const GetKeyInfoReply& value,
44 std::string GetProtoDebugString(const GetKeyInfoReply& value);
    [all...]
  /external/libcxx/test/libcxx/utilities/meta/
is_referenceable.pass.cpp 25 static_assert((!std::__is_referenceable<void>::value), "");
26 static_assert(( std::__is_referenceable<int>::value), "");
27 static_assert(( std::__is_referenceable<int[3]>::value), "");
28 static_assert(( std::__is_referenceable<int[]>::value), "");
29 static_assert(( std::__is_referenceable<int &>::value), "");
30 static_assert(( std::__is_referenceable<const int &>::value), "");
31 static_assert(( std::__is_referenceable<int *>::value), "");
32 static_assert(( std::__is_referenceable<const int *>::value), "");
33 static_assert(( std::__is_referenceable<Foo>::value), "");
34 static_assert(( std::__is_referenceable<const Foo>::value), "");
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/utilities/meta/
is_referenceable.pass.cpp 25 static_assert((!std::__is_referenceable<void>::value), "");
26 static_assert(( std::__is_referenceable<int>::value), "");
27 static_assert(( std::__is_referenceable<int[3]>::value), "");
28 static_assert(( std::__is_referenceable<int[]>::value), "");
29 static_assert(( std::__is_referenceable<int &>::value), "");
30 static_assert(( std::__is_referenceable<const int &>::value), "");
31 static_assert(( std::__is_referenceable<int *>::value), "");
32 static_assert(( std::__is_referenceable<const int *>::value), "");
33 static_assert(( std::__is_referenceable<Foo>::value), "");
34 static_assert(( std::__is_referenceable<const Foo>::value), "");
    [all...]
  /external/boringssl/src/crypto/asn1/
a_utf8.c 68 * to the string and the length of the string. It sets 'value' to the value
78 uint32_t value; local
84 /* Check syntax and work out the encoded value (if correct) */
86 value = *p++ & 0x7f;
93 value = (*p++ & 0x1f) << 6;
94 value |= *p++ & 0x3f;
95 if (value < 0x80)
104 value = (*p++ & 0xf) << 12;
105 value |= (*p++ & 0x3f) << 6
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
Leb128Utils.java 32 * given value.
34 * @param value the value in question
37 public static int unsignedLeb128Size(int value) {
40 int remaining = value >> 7;
53 * given value.
55 * @param value the value in question
58 public static int signedLeb128Size(int value) {
61 int remaining = value >> 7
    [all...]
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/pie/
Segment.java 25 private Number value; field in class:Segment
27 public Segment(String title, Number value) {
29 this.setValue(value);
42 return value;
45 public void setValue(Number value) {
46 this.value = value;
  /external/clang/test/CXX/temp/temp.decls/temp.class/temp.static/
p1-inst.cpp 9 static T value; member in struct:X
13 T X<T>::value = 17; // expected-error{{no viable conversion}} member in class:X
24 int &returnInt() { return X<int>::value; }
25 float &returnFloat() { return X<float>::value; }
27 InitOkay &returnInitOkay() { return X<InitOkay>::value; }
29 unsigned long sizeOkay() { return sizeof(X<CannotInit>::value); }
32 return X<CannotInit>::value; // expected-note{{instantiation}}
  /external/jsilver/src/com/google/clearsilver/jsilver/values/
StringValue.java 22 * A simple string value.
24 * @see Value
28 private final String value; field in class:StringValue
30 public StringValue(String value, EscapeMode escapeMode, boolean partiallyEscaped) {
32 this.value = value;
36 protected String value() { method in class:StringValue
37 return value;
47 return value.length() == 0;
  /external/libcxx/test/std/language.support/support.types/
max_align_t.pass.cpp 20 static_assert(std::is_pod<std::max_align_t>::value,
21 "std::is_pod<std::max_align_t>::value");
22 static_assert((std::alignment_of<std::max_align_t>::value >=
23 std::alignment_of<long long>::value),
24 "std::alignment_of<std::max_align_t>::value >= "
25 "std::alignment_of<long long>::value");
26 static_assert(std::alignment_of<std::max_align_t>::value >=
27 std::alignment_of<long double>::value,
28 "std::alignment_of<std::max_align_t>::value >= "
29 "std::alignment_of<long double>::value");
    [all...]
  /external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.comp/
lvalue_ref.pass.cpp 19 static_assert( std::is_reference<T>::value, "");
20 static_assert(!std::is_arithmetic<T>::value, "");
21 static_assert(!std::is_fundamental<T>::value, "");
22 static_assert(!std::is_object<T>::value, "");
23 static_assert(!std::is_scalar<T>::value, "");
24 static_assert( std::is_compound<T>::value, "");
25 static_assert(!std::is_member_pointer<T>::value, "");
rvalue_ref.pass.cpp 21 static_assert( std::is_reference<T>::value, "");
22 static_assert(!std::is_arithmetic<T>::value, "");
23 static_assert(!std::is_fundamental<T>::value, "");
24 static_assert(!std::is_object<T>::value, "");
25 static_assert(!std::is_scalar<T>::value, "");
26 static_assert( std::is_compound<T>::value, "");
27 static_assert(!std::is_member_pointer<T>::value, "");
  /external/llvm/bindings/ocaml/transforms/passmgr_builder/
passmgr_builder_ocaml.c 25 static void llvm_finalize_pmbuilder(value PMB) {
39 static value alloc_pmbuilder(LLVMPassManagerBuilderRef Ref) {
40 value Val = alloc_custom(&pmbuilder_ops,
47 CAMLprim value llvm_pmbuilder_create(value Unit) {
52 CAMLprim value llvm_pmbuilder_set_opt_level(value OptLevel, value PMB) {
58 CAMLprim value llvm_pmbuilder_set_size_level(value SizeLevel, value PMB)
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/tokens/
TagToken.java 21 private final TagTuple value; field in class:TagToken
23 public TagToken(TagTuple value, Mark startMark, Mark endMark) {
25 this.value = value;
29 return this.value;
34 return "value=[" + value.getHandle() + ", " + value.getSuffix() + "]";
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue48/
Bean.java 19 private int value; field in class:Bean
40 return value;
45 return "Bean " + String.valueOf(value);
49 return value;
52 public void setValue(int value) {
53 this.value = value;
  /external/turbine/java/com/google/turbine/model/
Const.java 40 public abstract static class Value extends Const {
85 /** A boolean literal value. */
86 public static class BooleanValue extends Value {
87 private final boolean value; field in class:Const.BooleanValue
89 public BooleanValue(boolean value) {
90 this.value = value;
95 return String.valueOf(value);
103 public boolean value() { method in class:Const.BooleanValue
104 return value;
121 private final int value; field in class:Const.IntValue
137 public int value() { method in class:Const.IntValue
184 private final long value; field in class:Const.LongValue
200 public long value() { method in class:Const.LongValue
247 private final char value; field in class:Const.CharValue
263 public char value() { method in class:Const.CharValue
310 private final float value; field in class:Const.FloatValue
326 public float value() { method in class:Const.FloatValue
373 private final double value; field in class:Const.DoubleValue
389 public double value() { method in class:Const.DoubleValue
436 private final String value; field in class:Const.StringValue
452 public String value() { method in class:Const.StringValue
464 private final short value; field in class:Const.ShortValue
480 public short value() { method in class:Const.ShortValue
528 private final byte value; field in class:Const.ByteValue
539 public byte value() { method in class:Const.ByteValue
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/language.support/support.types/
max_align_t.pass.cpp 20 static_assert(std::is_pod<std::max_align_t>::value,
21 "std::is_pod<std::max_align_t>::value");
22 static_assert((std::alignment_of<std::max_align_t>::value >=
23 std::alignment_of<long long>::value),
24 "std::alignment_of<std::max_align_t>::value >= "
25 "std::alignment_of<long long>::value");
26 static_assert(std::alignment_of<std::max_align_t>::value >=
27 std::alignment_of<long double>::value,
28 "std::alignment_of<std::max_align_t>::value >= "
29 "std::alignment_of<long double>::value");
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/meta/meta.unary/meta.unary.comp/
lvalue_ref.pass.cpp 19 static_assert( std::is_reference<T>::value, "");
20 static_assert(!std::is_arithmetic<T>::value, "");
21 static_assert(!std::is_fundamental<T>::value, "");
22 static_assert(!std::is_object<T>::value, "");
23 static_assert(!std::is_scalar<T>::value, "");
24 static_assert( std::is_compound<T>::value, "");
25 static_assert(!std::is_member_pointer<T>::value, "");
rvalue_ref.pass.cpp 21 static_assert( std::is_reference<T>::value, "");
22 static_assert(!std::is_arithmetic<T>::value, "");
23 static_assert(!std::is_fundamental<T>::value, "");
24 static_assert(!std::is_object<T>::value, "");
25 static_assert(!std::is_scalar<T>::value, "");
26 static_assert( std::is_compound<T>::value, "");
27 static_assert(!std::is_member_pointer<T>::value, "");
  /external/tpm2/
PropertyCap.c 15 // This function accepts a property selection and, if so, sets value to the value of the property.
19 // Return Value Meaning
21 // TRUE referenced property exists and value set
27 UINT32 *value // OUT: property value
34 // For this specification, the value is "2.0".
35 *value = TPM_SPEC_FAMILY;
39 *value = TPM_SPEC_LEVEL;
43 *value = TPM_SPEC_VERSION
455 UINT32 value; local
    [all...]

Completed in 483 milliseconds

1 2 3 4 5 6 78 91011>>