Searched refs:value (Results 151 - 175 of 11587) sorted by relevance

1234567891011>>

/external/compiler-rt/test/asan/TestCases/Helpers/
H A Dinitialization-blacklist-extra.cc8 BadClass() { value = 0; }
9 int value; member in class:badNamespace::BadClass
15 int accessBadObject() { return badNamespace::bad_object.value; }
/external/compiler-rt/test/asan/TestCases/
H A Dinitialization-constexpr.cc18 int value; member in class:Integer
21 constexpr Integer(int x = 0) : value(x) {}
22 int getValue() {return value;}
/external/libchrome/base/strings/
H A Dnullable_string16.cc13 std::ostream& operator<<(std::ostream& out, const NullableString16& value) { argument
14 return value.is_null() ? out << "(null)" : out << UTF16ToUTF8(value.string());
/external/libchrome/base/trace_event/
H A Dtrace_event_argument_unittest.cc19 std::unique_ptr<TracedValue> value(new TracedValue());
20 value->SetInteger("int", 2014);
21 value->SetDouble("double", 0.0);
22 value->SetBoolean("bool", true);
23 value->SetString("string", "string");
25 value->AppendAsTraceFormat(&json);
32 std::unique_ptr<TracedValue> value(new TracedValue());
33 value->SetInteger("in.t", 2014);
34 value->SetDouble("doub.le", 0.0);
35 value
[all...]
/external/libcxx/test/std/depr/depr.c.headers/
H A Dstddef_h.pass.cpp31 static_assert(std::is_unsigned<size_t>::value,
32 "std::is_unsigned<size_t>::value");
33 static_assert(std::is_integral<size_t>::value,
34 "std::is_integral<size_t>::value");
37 static_assert(std::is_signed<ptrdiff_t>::value,
38 "std::is_signed<ptrdiff_t>::value");
39 static_assert(std::is_integral<ptrdiff_t>::value,
40 "std::is_integral<ptrdiff_t>::value");
41 static_assert((std::is_same<decltype(nullptr), nullptr_t>::value),
45 static_assert(std::is_pod<max_align_t>::value,
[all...]
/external/libcxx/test/std/re/re.traits/
H A Dvalue.pass.cpp14 // int value(charT ch, int radix) const;
27 assert(t.value(c, 8) == -1);
28 assert(t.value(c, 10) == -1);
29 assert(t.value(c, 16) == -1);
33 assert(t.value(c, 8) == c - '0');
34 assert(t.value(c, 10) == c - '0');
35 assert(t.value(c, 16) == c - '0');
39 assert(t.value(c, 8) == -1);
40 assert(t.value(c, 10) == c - '0');
41 assert(t.value(
[all...]
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.helper/
H A Dtuple_size.fail.cpp24 (void)std::tuple_size<std::tuple<> &>::value; // expected-error {{implicit instantiation of undefined template}}
25 (void)std::tuple_size<int>::value; // expected-error {{implicit instantiation of undefined template}}
26 (void)std::tuple_size<std::tuple<>*>::value; // expected-error {{implicit instantiation of undefined template}}
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
H A DImmutableArrayEncodedValue.java32 package org.jf.dexlib2.immutable.value;
35 import org.jf.dexlib2.base.value.BaseArrayEncodedValue;
36 import org.jf.dexlib2.iface.value.ArrayEncodedValue;
37 import org.jf.dexlib2.iface.value.EncodedValue;
43 @Nonnull protected final ImmutableList<? extends ImmutableEncodedValue> value; field in class:ImmutableArrayEncodedValue
45 public ImmutableArrayEncodedValue(@Nonnull Collection<? extends EncodedValue> value) { argument
46 this.value = ImmutableEncodedValueFactory.immutableListOf(value);
49 public ImmutableArrayEncodedValue(@Nonnull ImmutableList<ImmutableEncodedValue> value) { argument
50 this.value
[all...]
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkStrUtilImpl.inl57 const char* getPipelineCacheHeaderVersionName (VkPipelineCacheHeaderVersion value)
59 switch (value)
66 const char* getResultName (VkResult value)
68 switch (value)
100 const char* getStructureTypeName (VkStructureType value)
102 switch (value)
205 const char* getSystemAllocationScopeName (VkSystemAllocationScope value)
207 switch (value)
218 const char* getInternalAllocationTypeName (VkInternalAllocationType value)
220 switch (value)
[all...]
/external/skia/src/sfnt/
H A DSkOTTable_OS_2_V2.h35 SK_OT_USHORT value; member in struct:SkOTTableOS2_V2
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;
263 static const SK_OT_ULONG BasicLatinMask = SkOTSetULONGBit<0>::value;
264 static const SK_OT_ULONG Latin1SupplementMask = SkOTSetULONGBit<1>::value;
[all...]
/external/caliper/caliper/src/main/java/com/google/caliper/bridge/
H A DVmOptionLogMessage.java27 private final String value; field in class:VmOptionLogMessage
29 VmOptionLogMessage(String name, String value) { argument
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/
H A Dp5-0x.cpp5 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];
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/
H A Dp1.cpp7 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/
H A Ddecltype-this.cpp5 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/
H A Dsparc_attrs.c41 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];
40 sparc_check_object_attribute(Ebl *ebl __attribute__ ((unused)), const char *vendor, int tag, uint64_t value, const char **tag_name, const char **value_name) argument
/external/fonttools/Lib/fontTools/ttLib/tables/
H A D_h_e_a_d.py52 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[
[all...]
/external/fonttools/Tools/fontTools/ttLib/tables/
H A D_h_e_a_d.py52 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[
[all...]
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/tokens/
H A DAliasToken.java21 private final String value; field in class:AliasToken
23 public AliasToken(String value, Mark startMark, Mark endMark) { argument
25 this.value = value;
29 return this.value;
34 return "value=" + value;
H A DAnchorToken.java21 private final String value; field in class:AnchorToken
23 public AnchorToken(String value, Mark startMark, Mark endMark) { argument
25 this.value = value;
29 return this.value;
34 return "value=" + value;
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
H A DRealPointValuePair.java24 * This class holds a point and the value of an objective function at this point.
39 private final double value; field in class:RealPointValuePair
41 /** Build a point/objective function value pair.
44 * @param value value of an objective function at the point
46 public RealPointValuePair(final double[] point, final double value) { argument
48 this.value = value;
51 /** Build a point/objective function value pair.
54 * @param value valu
58 RealPointValuePair(final double[] point, final double value, final boolean copyArray) argument
[all...]
/external/bison/lib/
H A Dcloexec.h32 int set_cloexec_flag (int desc, bool value);
/external/clang/test/SemaTemplate/
H A Dinstantiate-declref-ice.cpp15 static const unsigned value = sizeof(T); member in struct:X0
19 const unsigned X0<T>::value; member in class:X0
21 int array1[X0<int>::value == sizeof(int)? 1 : -1];
23 const unsigned& testX0() { return X0<int>::value; }
25 int array2[X0<int>::value == sizeof(int)? 1 : -1];
29 static const unsigned value; member in struct:X1
33 const unsigned X1<T>::value = sizeof(T); member in class:X1
35 int array3[X1<int>::value == sizeof(int)? 1 : -1];
H A Dtemp_class_order.cpp5 static const int value = 0; member in struct:X1
10 static const int value = 1; member in struct:X1
15 static const int value = 2; member in struct:X1
20 static const int value = 3; member in struct:X1
23 int array0[X1<int, int>::value == 0? 1 : -1];
24 int array1[X1<int*, float*>::value == 1? 1 : -1];
25 int array2[X1<int*, int*>::value == 2? 1 : -1];
27 int array3[X1<const int*, CIP>::value == 3? 1 : -1];
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/data/
H A DCompactDataInput.java37 * Reads a variable length representation of an integer value.
39 * @return read value
44 final int value = 0xFF & readByte();
45 if ((value & 0x80) == 0) {
46 return value;
48 return (value & 0x7F) | (readVarInt() << 7);
59 final boolean[] value = new boolean[readVarInt()];
61 for (int i = 0; i < value.length; i++) {
65 value[i] = (buffer & 0x01) != 0;
68 return value;
[all...]
H A DCompactDataOutput.java37 * Writes a variable length representation of an integer value that reduces
39 * given value 1 to 5 bytes will be written to the underlying stream.
41 * @param value
42 * value to write
46 public void writeVarInt(final int value) throws IOException { argument
47 if ((value & 0xFFFFFF80) == 0) {
48 writeByte(value);
50 writeByte(0x80 | (value & 0x7F));
51 writeVarInt(value >>> 7);
59 * @param value
64 writeBooleanArray(final boolean[] value) argument
[all...]

Completed in 1074 milliseconds

1234567891011>>