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

<<11121314151617181920>>

  /dalvik/dexgen/src/com/android/dexgen/util/
IntSet.java 27 * @param value int to add
29 void add(int value);
34 * @param value int to remove
36 void remove(int value);
39 * Checks to see if a value is in the set
41 * @param value int to check
44 boolean has(int value);
  /dalvik/dx/src/com/android/dx/util/
IntSet.java 27 * @param value int to add
29 void add(int value);
34 * @param value int to remove
36 void remove(int value);
39 * Checks to see if a value is in the set
41 * @param value int to check
44 boolean has(int value);
  /external/aac/libSBRdec/src/
huff_dec.cpp 118 \return decoded value
127 int value, bit; local
134 value = index + 64; /* Add offset */
136 return value;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
DoubleArray.java 42 * @param index index to fetch a value from
43 * @return value stored at the specified index
56 * @param index index to store a value in
57 * @param value value to store at the specified index
61 void setElement(int index, double value);
66 * @param value to be added to end of array
68 void addElement(double value);
79 * the entries 2, 3, 4, 5 and the value returned is 1.
82 * @param value the value to be added to the arra
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.class.spec/temp.class.order/
p2.cpp 4 static const int value = 0; member in struct:X
8 static const int value = 1; member in struct:X
12 static const int value = 2; member in struct:X
15 int array0[X<0, 0, float>::value == 0? 1 : -1];
16 int array1[X<0, 1, int>::value == 1? 1 : -1];
17 int array2[X<0, 0, int>::value == 2? 1 : -1];
22 static const unsigned value = 1; member in struct:DependentSubstPartialOrdering::X
27 static const unsigned value = 2; member in struct:DependentSubstPartialOrdering::X
32 static const unsigned value = 3; member in struct:DependentSubstPartialOrdering::X
46 int check_X1[X<X1, void, void>::value == 1? 1 : -1]
    [all...]
  /external/compiler-rt/test/asan/TestCases/Helpers/
echo-env.cc 12 const char *value = getenv(argv[1]); local
13 if (value) {
14 printf("%s = %s\n", argv[1], value);
initialization-blacklist-extra.cc 8 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/
initialization-constexpr.cc 18 int value; member in class:Integer
21 constexpr Integer(int x = 0) : value(x) {}
22 int getValue() {return value;}
  /external/curl/lib/
curl_endian.h 35 void Curl_write32_le(const int value, unsigned char *buffer);
40 void Curl_write64_le(const long long value, unsigned char *buffer);
42 void Curl_write64_le(const __int64 value, unsigned char *buffer);
  /external/libchrome/base/strings/
nullable_string16.cc 13 std::ostream& operator<<(std::ostream& out, const NullableString16& value) {
14 return value.is_null() ? out << "(null)" : out << UTF16ToUTF8(value.string());
  /external/libchrome/base/trace_event/
trace_event_argument_unittest.cc 19 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->SetBoolean("bo.ol", true)
    [all...]
  /external/libcxx/test/std/depr/depr.c.headers/
stddef_h.pass.cpp 31 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/
value.pass.cpp 14 // 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(c, 16) == c - '0')
    [all...]
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.helper/
tuple_size.fail.cpp 24 (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/libtextclassifier/util/strings/
numbers.h 33 // Stores parsed number into *value. Returns true on success, false on error.
38 bool ParseInt32(const char *c_str, int32 *value);
41 bool ParseInt64(const char *c_str, int64 *value);
44 bool ParseDouble(const char *c_str, double *value);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
ImmutableArrayEncodedValue.java 32 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) {
46 this.value = ImmutableEncodedValueFactory.immutableListOf(value);
49 public ImmutableArrayEncodedValue(@Nonnull ImmutableList<ImmutableEncodedValue> value) {
50 this.value = value
    [all...]
  /frameworks/av/media/libstagefright/foundation/tests/
TypeTraits_test.cpp 38 static_assert(!std::is_integral<A>::value, "enums should not be integral");
39 static_assert(!std::is_integral<UA>::value, "enums should not be integral");
40 static_assert(!std::is_integral<IA>::value, "enums should not be integral");
41 static_assert(is_integral_or_enum<A>::value, "enums should be integral_or_enum");
42 static_assert(is_integral_or_enum<UA>::value, "enums should be integral_or_enum");
43 static_assert(is_integral_or_enum<IA>::value, "enums should be integral_or_enum");
44 static_assert(is_integral_or_enum<int>::value, "ints should be integral_or_enum");
45 static_assert(is_integral_or_enum<unsigned>::value, "unsigned ints should be integral_or_enum");
46 static_assert(!is_integral_or_enum<float>::value, "floats should not be integral_or_enum");
50 static_assert(!std::is_unsigned<UA>::value,
    [all...]
  /hardware/interfaces/configstore/1.0/
types.hal 20 bool value;
25 int32_t value;
30 uint32_t value;
35 int64_t value;
40 uint64_t value;
45 string value;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/depr/depr.c.headers/
stddef_h.pass.cpp 31 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...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/re/re.traits/
value.pass.cpp 14 // 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(c, 16) == c - '0')
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.helper/
tuple_size.fail.cpp 24 (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/clang/test/SemaTemplate/
temp_class_spec.cpp 4 static const bool value = false; member in struct:is_pointer
9 static const bool value = true; member in struct:is_pointer
14 static const bool value = true; member in struct:is_pointer
17 int array0[is_pointer<int>::value? -1 : 1];
18 int array1[is_pointer<int*>::value? 1 : -1];
19 int array2[is_pointer<const int*>::value? 1 : -1];
23 static const bool value = false; member in struct:is_lvalue_reference
28 static const bool value = true; member in struct:is_lvalue_reference
31 int lvalue_ref0[is_lvalue_reference<int>::value? -1 : 1];
32 int lvalue_ref1[is_lvalue_reference<const int&>::value? 1 : -1]
36 static const bool value = false; member in struct:is_const
41 static const bool value = true; member in struct:is_const
53 static const bool value = false; member in struct:is_volatile
58 static const bool value = true; member in struct:is_volatile
68 static const bool value = false; member in struct:is_same
73 static const bool value = true; member in struct:is_same
112 static const bool value = false; member in struct:is_incomplete_array
117 static const bool value = true; member in struct:is_incomplete_array
127 static const bool value = false; member in struct:is_array_with_4_elements
132 static const bool value = true; member in struct:is_array_with_4_elements
145 static const unsigned value = N; member in struct:get_array_size
170 static const bool value = false; member in struct:is_unary_function
175 static const bool value = true; member in struct:is_unary_function
186 static const bool value = false; member in struct:is_unary_function_with_same_return_type_as_argument_type
191 static const bool value = true; member in struct:is_unary_function_with_same_return_type_as_argument_type
204 static const bool value = false; member in struct:is_binary_function
209 static const bool value = true; member in struct:is_binary_function
216 static const bool value = false; member in struct:is_member_pointer
221 static const bool value = true; member in struct:is_member_pointer
235 static const bool value = false; member in struct:is_member_function_pointer
240 static const bool value = true; member in struct:is_member_function_pointer
245 static const bool value = true; member in struct:is_member_function_pointer
250 static const bool value = true; member in struct:is_member_function_pointer
255 static const bool value = true; member in struct:is_member_function_pointer
260 static const bool value = true; member in struct:is_member_function_pointer
265 static const bool value = true; member in struct:is_member_function_pointer
270 static const bool value = true; member in struct:is_member_function_pointer
275 static const bool value = true; member in struct:is_member_function_pointer
293 static const bool value = false; member in struct:is_nested_value_type_identity
298 static const bool value = true; member in struct:is_nested_value_type_identity
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigIntegerToStringTest.java 36 String value = "442429234853876401"; local
38 BigInteger aNumber = new BigInteger(value, radix);
40 assertTrue(result.equals(value));
47 String value = "-101001100010010001001010101110000101010110001010010101010101010101010101010101010101010101010010101"; local
49 BigInteger aNumber = new BigInteger(value, radix);
51 assertTrue(result.equals(value));
58 String value = "101000011111000000110101010101010101010001001010101010101010010101010101010000100010010"; local
60 BigInteger aNumber = new BigInteger(value, radix);
62 assertTrue(result.equals(value));
69 String value = "-2489756308572364789878394872984" local
80 String value = "2387627892347567398736473476"; local
91 String value = "-287628a883451b800865c67e8d7ff20"; local
102 String value = "287628a883451b800865c67e8d7ff20"; local
113 String value = "-287628a88gmn3451b8ijk00865c67e8d7ff20"; local
124 String value = "287628a883451bg80ijhk0865c67e8d7ff20"; local
135 String value = "-uhguweut98iu4h3478tq3985pq98yeiuth33485yq4aiuhalai485yiaehasdkr8tywi5uhslei8"; local
146 String value = "23895lt45y6vhgliuwhgi45y845htsuerhsi4586ysuerhtsio5y68peruhgsil4568ypeorihtse48y6"; local
    [all...]
  /system/tpm/attestation/common/
print_common_proto.cc 28 std::string GetProtoDebugString(KeyType value) {
29 return GetProtoDebugStringWithIndent(value, 0);
32 std::string GetProtoDebugStringWithIndent(KeyType value, int indent_size) {
33 if (value == KEY_TYPE_RSA) {
36 if (value == KEY_TYPE_ECC) {
42 std::string GetProtoDebugString(KeyUsage value) {
43 return GetProtoDebugStringWithIndent(value, 0);
46 std::string GetProtoDebugStringWithIndent(KeyUsage value, int indent_size) {
47 if (value == KEY_USAGE_SIGN) {
50 if (value == KEY_USAGE_DECRYPT)
    [all...]
  /external/skia/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...]

Completed in 1254 milliseconds

<<11121314151617181920>>