Home
last modified time | relevance | path

Searched refs:value (Results 1 – 25 of 8731) sorted by relevance

12345678910>>...350

/external/protobuf/java/src/main/java/com/google/protobuf/nano/
DCodedOutputByteBufferNano.java87 public void writeDouble(final int fieldNumber, final double value) in writeDouble() argument
90 writeDoubleNoTag(value); in writeDouble()
94 public void writeFloat(final int fieldNumber, final float value) in writeFloat() argument
97 writeFloatNoTag(value); in writeFloat()
101 public void writeUInt64(final int fieldNumber, final long value) in writeUInt64() argument
104 writeUInt64NoTag(value); in writeUInt64()
108 public void writeInt64(final int fieldNumber, final long value) in writeInt64() argument
111 writeInt64NoTag(value); in writeInt64()
115 public void writeInt32(final int fieldNumber, final int value) in writeInt32() argument
118 writeInt32NoTag(value); in writeInt32()
[all …]
/external/chromium_org/v8/test/webkit/
Ddfg-double-vote-fuzz-expected.txt29 Result value is 54939
30 Result value is 55039
31 Result value is 55039
32 Result value is 55139
33 Result value is 55039
34 Result value is 55139
35 Result value is 55139
36 Result value is 55239
37 Result value is 55039
38 Result value is 55139
[all …]
Ddfg-create-inlined-arguments-in-closure-inline-expected.txt29 PASS value is 5
30 PASS value is 6
31 PASS value is 7
32 PASS value is 8
33 PASS value is 9
34 PASS value is 10
35 PASS value is 11
36 PASS value is 12
37 PASS value is 13
38 PASS value is 14
[all …]
/external/protobuf/java/src/main/java/com/google/protobuf/micro/
DCodedOutputStreamMicro.java120 public void writeDouble(final int fieldNumber, final double value) in writeDouble() argument
123 writeDoubleNoTag(value); in writeDouble()
127 public void writeFloat(final int fieldNumber, final float value) in writeFloat() argument
130 writeFloatNoTag(value); in writeFloat()
134 public void writeUInt64(final int fieldNumber, final long value) in writeUInt64() argument
137 writeUInt64NoTag(value); in writeUInt64()
141 public void writeInt64(final int fieldNumber, final long value) in writeInt64() argument
144 writeInt64NoTag(value); in writeInt64()
148 public void writeInt32(final int fieldNumber, final int value) in writeInt32() argument
151 writeInt32NoTag(value); in writeInt32()
[all …]
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
Dtype_traits_unittest.cc172 EXPECT_TRUE(is_integral<bool>::value); in TEST()
173 EXPECT_TRUE(is_integral<char>::value); in TEST()
174 EXPECT_TRUE(is_integral<unsigned char>::value); in TEST()
175 EXPECT_TRUE(is_integral<signed char>::value); in TEST()
176 EXPECT_TRUE(is_integral<wchar_t>::value); in TEST()
177 EXPECT_TRUE(is_integral<int>::value); in TEST()
178 EXPECT_TRUE(is_integral<unsigned int>::value); in TEST()
179 EXPECT_TRUE(is_integral<short>::value); in TEST()
180 EXPECT_TRUE(is_integral<unsigned short>::value); in TEST()
181 EXPECT_TRUE(is_integral<long>::value); in TEST()
[all …]
/external/protobuf/java/src/main/java/com/google/protobuf/
DCodedOutputStream.java134 public void writeDouble(final int fieldNumber, final double value) in writeDouble() argument
137 writeDoubleNoTag(value); in writeDouble()
141 public void writeFloat(final int fieldNumber, final float value) in writeFloat() argument
144 writeFloatNoTag(value); in writeFloat()
148 public void writeUInt64(final int fieldNumber, final long value) in writeUInt64() argument
151 writeUInt64NoTag(value); in writeUInt64()
155 public void writeInt64(final int fieldNumber, final long value) in writeInt64() argument
158 writeInt64NoTag(value); in writeInt64()
162 public void writeInt32(final int fieldNumber, final int value) in writeInt32() argument
165 writeInt32NoTag(value); in writeInt32()
[all …]
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
DCodedOutputStream.java135 public void writeDouble(final int fieldNumber, final double value) in writeDouble() argument
138 writeDoubleNoTag(value); in writeDouble()
142 public void writeFloat(final int fieldNumber, final float value) in writeFloat() argument
145 writeFloatNoTag(value); in writeFloat()
149 public void writeUInt64(final int fieldNumber, final long value) in writeUInt64() argument
152 writeUInt64NoTag(value); in writeUInt64()
156 public void writeInt64(final int fieldNumber, final long value) in writeInt64() argument
159 writeInt64NoTag(value); in writeInt64()
163 public void writeInt32(final int fieldNumber, final int value) in writeInt32() argument
166 writeInt32NoTag(value); in writeInt32()
[all …]
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/
Da_utf8.c79 unsigned long value; in UTF8_getc() local
86 value = *p++ & 0x7f; in UTF8_getc()
91 value = (*p++ & 0x1f) << 6; in UTF8_getc()
92 value |= *p++ & 0x3f; in UTF8_getc()
93 if(value < 0x80) return -4; in UTF8_getc()
99 value = (*p++ & 0xf) << 12; in UTF8_getc()
100 value |= (*p++ & 0x3f) << 6; in UTF8_getc()
101 value |= *p++ & 0x3f; in UTF8_getc()
102 if(value < 0x800) return -4; in UTF8_getc()
109 value = ((unsigned long)(*p++ & 0x7)) << 18; in UTF8_getc()
[all …]
/external/openssl/crypto/asn1/
Da_utf8.c79 unsigned long value; in UTF8_getc() local
86 value = *p++ & 0x7f; in UTF8_getc()
91 value = (*p++ & 0x1f) << 6; in UTF8_getc()
92 value |= *p++ & 0x3f; in UTF8_getc()
93 if(value < 0x80) return -4; in UTF8_getc()
99 value = (*p++ & 0xf) << 12; in UTF8_getc()
100 value |= (*p++ & 0x3f) << 6; in UTF8_getc()
101 value |= *p++ & 0x3f; in UTF8_getc()
102 if(value < 0x800) return -4; in UTF8_getc()
109 value = ((unsigned long)(*p++ & 0x7)) << 18; in UTF8_getc()
[all …]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowBundle.java44 public void putString(String key, String value) { in putString() argument
45 map.put(key, value); in putString()
50 Object value = map.get(key); in getString() local
51 return value == null || !(value instanceof String) ? null : (String) value; in getString()
59 Object value = map.get(key); in getString() local
60 return value == null || !(value instanceof String) ? defaultValue : (String) value; in getString()
64 public void putLong(String key, long value) { in putLong() argument
65 map.put(key, value); in putLong()
75 Object value = map.get(key); in getLong() local
76 return value == null || !(value instanceof Long) ? defaultValue : (Long) value; in getLong()
[all …]
/external/apache-http/src/org/apache/commons/codec/language/
DDoubleMetaphone.java73 public String doubleMetaphone(String value) { in doubleMetaphone() argument
74 return doubleMetaphone(value, false); in doubleMetaphone()
85 public String doubleMetaphone(String value, boolean alternate) { in doubleMetaphone() argument
86 value = cleanInput(value); in doubleMetaphone()
87 if (value == null) { in doubleMetaphone()
91 boolean slavoGermanic = isSlavoGermanic(value); in doubleMetaphone()
92 int index = isSilentStart(value) ? 1 : 0; in doubleMetaphone()
96 while (!result.isComplete() && index <= value.length() - 1) { in doubleMetaphone()
97 switch (value.charAt(index)) { in doubleMetaphone()
104 index = handleAEIOUY(value, result, index); in doubleMetaphone()
[all …]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DDexDataWriter.java90 public void writeLong(long value) throws IOException { in writeLong() argument
91 writeInt((int)value); in writeLong()
92 writeInt((int)(value >> 32)); in writeLong()
95 public static void writeInt(OutputStream out, int value) throws IOException { in writeInt() argument
96 out.write(value); in writeInt()
97 out.write(value >> 8); in writeInt()
98 out.write(value >> 16); in writeInt()
99 out.write(value >> 24); in writeInt()
102 public void writeInt(int value) throws IOException { in writeInt() argument
103 writeInt(this, value); in writeInt()
[all …]
/external/deqp/framework/opengl/
DgluStrUtilPrototypes.inl4 const char* getErrorName (int value);
5 const char* getTypeName (int value);
6 const char* getParamQueryName (int value);
7 const char* getProgramParamName (int value);
8 const char* getUniformParamName (int value);
9 const char* getFramebufferAttachmentName (int value);
10 const char* getFramebufferAttachmentParameterName (int value);
11 const char* getFramebufferTargetName (int value);
12 const char* getFramebufferStatusName (int value);
13 const char* getFramebufferAttachmentTypeName (int value);
[all …]
/external/clang/test/SemaTemplate/
Dtemp_class_spec.cpp4 static const bool value = false; member
9 static const bool value = true; member
14 static const bool value = true; member
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
28 static const bool value = true; member
31 int lvalue_ref0[is_lvalue_reference<int>::value? -1 : 1];
32 int lvalue_ref1[is_lvalue_reference<const int&>::value? 1 : -1];
[all …]
/external/skia/src/sfnt/
DSkOTTable_OS_2_V4.h37 SK_OT_USHORT value;
51 (value)SK_SEQ_END)
78 static const SK_OT_USHORT RestrictedMask = SkOTSetUSHORTBit<1>::value;
79 static const SK_OT_USHORT PreviewPrintMask = SkOTSetUSHORTBit<2>::value;
80 static const SK_OT_USHORT EditableMask = SkOTSetUSHORTBit<3>::value;
81 static const SK_OT_USHORT NoSubsettingMask = SkOTSetUSHORTBit<8>::value;
82 static const SK_OT_USHORT BitmapMask = SkOTSetUSHORTBit<9>::value;
83 SK_OT_USHORT value; member
266 static const SK_OT_ULONG BasicLatinMask = SkOTSetULONGBit<0>::value;
267 static const SK_OT_ULONG Latin1SupplementMask = SkOTSetULONGBit<1>::value;
[all …]
DSkOTTable_OS_2_V3.h37 SK_OT_USHORT value;
51 (value)SK_SEQ_END)
78 static const SK_OT_USHORT RestrictedMask = SkOTSetUSHORTBit<1>::value;
79 static const SK_OT_USHORT PreviewPrintMask = SkOTSetUSHORTBit<2>::value;
80 static const SK_OT_USHORT EditableMask = SkOTSetUSHORTBit<3>::value;
81 static const SK_OT_USHORT NoSubsettingMask = SkOTSetUSHORTBit<8>::value;
82 static const SK_OT_USHORT BitmapMask = SkOTSetUSHORTBit<9>::value;
83 SK_OT_USHORT value; member
266 static const SK_OT_ULONG BasicLatinMask = SkOTSetULONGBit<0>::value;
267 static const SK_OT_ULONG Latin1SupplementMask = SkOTSetULONGBit<1>::value;
[all …]
DSkOTTable_OS_2_V2.h37 SK_OT_USHORT value;
50 (value)SK_SEQ_END)
77 static const SK_OT_USHORT RestrictedMask = SkOTSetUSHORTBit<1>::value;
78 static const SK_OT_USHORT PreviewPrintMask = SkOTSetUSHORTBit<2>::value;
79 static const SK_OT_USHORT EditableMask = SkOTSetUSHORTBit<3>::value;
80 static const SK_OT_USHORT NoSubsettingMask = SkOTSetUSHORTBit<8>::value;
81 static const SK_OT_USHORT BitmapMask = SkOTSetUSHORTBit<9>::value;
82 SK_OT_USHORT value; member
265 static const SK_OT_ULONG BasicLatinMask = SkOTSetULONGBit<0>::value;
266 static const SK_OT_ULONG Latin1SupplementMask = SkOTSetULONGBit<1>::value;
[all …]
/external/chromium_org/third_party/skia/src/sfnt/
DSkOTTable_OS_2_V4.h37 SK_OT_USHORT value;
51 (value)SK_SEQ_END)
78 static const SK_OT_USHORT RestrictedMask = SkOTSetUSHORTBit<1>::value;
79 static const SK_OT_USHORT PreviewPrintMask = SkOTSetUSHORTBit<2>::value;
80 static const SK_OT_USHORT EditableMask = SkOTSetUSHORTBit<3>::value;
81 static const SK_OT_USHORT NoSubsettingMask = SkOTSetUSHORTBit<8>::value;
82 static const SK_OT_USHORT BitmapMask = SkOTSetUSHORTBit<9>::value;
83 SK_OT_USHORT value; member
266 static const SK_OT_ULONG BasicLatinMask = SkOTSetULONGBit<0>::value;
267 static const SK_OT_ULONG Latin1SupplementMask = SkOTSetULONGBit<1>::value;
[all …]
DSkOTTable_OS_2_V3.h37 SK_OT_USHORT value;
51 (value)SK_SEQ_END)
78 static const SK_OT_USHORT RestrictedMask = SkOTSetUSHORTBit<1>::value;
79 static const SK_OT_USHORT PreviewPrintMask = SkOTSetUSHORTBit<2>::value;
80 static const SK_OT_USHORT EditableMask = SkOTSetUSHORTBit<3>::value;
81 static const SK_OT_USHORT NoSubsettingMask = SkOTSetUSHORTBit<8>::value;
82 static const SK_OT_USHORT BitmapMask = SkOTSetUSHORTBit<9>::value;
83 SK_OT_USHORT value; member
266 static const SK_OT_ULONG BasicLatinMask = SkOTSetULONGBit<0>::value;
267 static const SK_OT_ULONG Latin1SupplementMask = SkOTSetULONGBit<1>::value;
[all …]
DSkOTTable_OS_2_V2.h37 SK_OT_USHORT value;
50 (value)SK_SEQ_END)
77 static const SK_OT_USHORT RestrictedMask = SkOTSetUSHORTBit<1>::value;
78 static const SK_OT_USHORT PreviewPrintMask = SkOTSetUSHORTBit<2>::value;
79 static const SK_OT_USHORT EditableMask = SkOTSetUSHORTBit<3>::value;
80 static const SK_OT_USHORT NoSubsettingMask = SkOTSetUSHORTBit<8>::value;
81 static const SK_OT_USHORT BitmapMask = SkOTSetUSHORTBit<9>::value;
82 SK_OT_USHORT value; member
265 static const SK_OT_ULONG BasicLatinMask = SkOTSetULONGBit<0>::value;
266 static const SK_OT_ULONG Latin1SupplementMask = SkOTSetULONGBit<1>::value;
[all …]
/external/chromium_org/third_party/WebKit/Source/wtf/
DTypeTraits.cpp29 COMPILE_ASSERT(IsInteger<bool>::value, WTF_IsInteger_bool_true);
30 COMPILE_ASSERT(IsInteger<char>::value, WTF_IsInteger_char_true);
31 COMPILE_ASSERT(IsInteger<signed char>::value, WTF_IsInteger_signed_char_true);
32 COMPILE_ASSERT(IsInteger<unsigned char>::value, WTF_IsInteger_unsigned_char_true);
33 COMPILE_ASSERT(IsInteger<short>::value, WTF_IsInteger_short_true);
34 COMPILE_ASSERT(IsInteger<unsigned short>::value, WTF_IsInteger_unsigned_short_true);
35 COMPILE_ASSERT(IsInteger<int>::value, WTF_IsInteger_int_true);
36 COMPILE_ASSERT(IsInteger<unsigned>::value, WTF_IsInteger_unsigned_int_true);
37 COMPILE_ASSERT(IsInteger<long>::value, WTF_IsInteger_long_true);
38 COMPILE_ASSERT(IsInteger<unsigned long>::value, WTF_IsInteger_unsigned_long_true);
[all …]
/external/libcxx/test/numerics/c.math/
Dcmath.disabled.cpp26 static_assert((std::is_same<decltype(std::abs((float)0)), float>::value), ""); in test_abs()
27 static_assert((std::is_same<decltype(std::abs((double)0)), double>::value), ""); in test_abs()
28 static_assert((std::is_same<decltype(std::abs((long double)0)), long double>::value), ""); in test_abs()
34 static_assert((std::is_same<decltype(std::acos((float)0)), float>::value), ""); in test_acos()
35 static_assert((std::is_same<decltype(std::acos((bool)0)), double>::value), ""); in test_acos()
36 static_assert((std::is_same<decltype(std::acos((unsigned short)0)), double>::value), ""); in test_acos()
37 static_assert((std::is_same<decltype(std::acos((int)0)), double>::value), ""); in test_acos()
38 static_assert((std::is_same<decltype(std::acos((unsigned int)0)), double>::value), ""); in test_acos()
39 static_assert((std::is_same<decltype(std::acos((long)0)), double>::value), ""); in test_acos()
40 static_assert((std::is_same<decltype(std::acos((unsigned long)0)), double>::value), ""); in test_acos()
[all …]
/external/chromium_org/chrome/common/extensions/permissions/
Dmedia_galleries_permission_unittest.cc21 void CheckFromValue(APIPermission* permission, base::ListValue* value, in CheckFromValue() argument
25 EXPECT_EQ(success_expected, permission->FromValue(value, &error, &unhandled)); in CheckFromValue()
38 scoped_ptr<base::ListValue> value(new base::ListValue()); in TEST() local
39 value->AppendString(MediaGalleriesPermission::kAllAutoDetectedPermission); in TEST()
40 value->AppendString(MediaGalleriesPermission::kReadPermission); in TEST()
41 CheckFromValue(permission.get(), value.get(), true); in TEST()
43 value.reset(new base::ListValue()); in TEST()
44 value->AppendString(MediaGalleriesPermission::kAllAutoDetectedPermission); in TEST()
45 value->AppendString(MediaGalleriesPermission::kCopyToPermission); in TEST()
46 value->AppendString(MediaGalleriesPermission::kReadPermission); in TEST()
[all …]
/external/libcxx/test/depr/depr.c.headers/
Dmath_h.disabled.cpp20 static_assert((std::is_same<decltype(acos((double)0)), double>::value), ""); in test_acos()
21 static_assert((std::is_same<decltype(acosf(0)), float>::value), ""); in test_acos()
22 static_assert((std::is_same<decltype(acosl(0)), long double>::value), ""); in test_acos()
28 static_assert((std::is_same<decltype(asin((double)0)), double>::value), ""); in test_asin()
29 static_assert((std::is_same<decltype(asinf(0)), float>::value), ""); in test_asin()
30 static_assert((std::is_same<decltype(asinl(0)), long double>::value), ""); in test_asin()
36 static_assert((std::is_same<decltype(atan((double)0)), double>::value), ""); in test_atan()
37 static_assert((std::is_same<decltype(atanf(0)), float>::value), ""); in test_atan()
38 static_assert((std::is_same<decltype(atanl(0)), long double>::value), ""); in test_atan()
44 static_assert((std::is_same<decltype(atan2((double)0, (double)0)), double>::value), ""); in test_atan2()
[all …]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
Dvalue.c47 yasm_value_initialize(/*@out@*/ yasm_value *value, in yasm_value_initialize() argument
50 value->abs = e; in yasm_value_initialize()
51 value->rel = NULL; in yasm_value_initialize()
52 value->wrt = NULL; in yasm_value_initialize()
53 value->seg_of = 0; in yasm_value_initialize()
54 value->rshift = 0; in yasm_value_initialize()
55 value->curpos_rel = 0; in yasm_value_initialize()
56 value->ip_rel = 0; in yasm_value_initialize()
57 value->jump_target = 0; in yasm_value_initialize()
58 value->section_rel = 0; in yasm_value_initialize()
[all …]

12345678910>>...350