/external/protobuf/java/src/main/java/com/google/protobuf/nano/ |
D | CodedOutputByteBufferNano.java | 87 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/ |
D | dfg-double-vote-fuzz-expected.txt | 29 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 …]
|
D | dfg-create-inlined-arguments-in-closure-inline-expected.txt | 29 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/ |
D | CodedOutputStreamMicro.java | 120 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/ |
D | type_traits_unittest.cc | 172 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/ |
D | CodedOutputStream.java | 134 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/v8/src/base/ |
D | bits.h | 22 inline uint32_t CountPopulation32(uint32_t value) { in CountPopulation32() argument 24 return __builtin_popcount(value); in CountPopulation32() 26 value = ((value >> 1) & 0x55555555) + (value & 0x55555555); in CountPopulation32() 27 value = ((value >> 2) & 0x33333333) + (value & 0x33333333); in CountPopulation32() 28 value = ((value >> 4) & 0x0f0f0f0f) + (value & 0x0f0f0f0f); in CountPopulation32() 29 value = ((value >> 8) & 0x00ff00ff) + (value & 0x00ff00ff); in CountPopulation32() 30 value = ((value >> 16) & 0x0000ffff) + (value & 0x0000ffff); in CountPopulation32() 31 return value; in CountPopulation32() 38 inline uint32_t CountLeadingZeros32(uint32_t value) { in CountLeadingZeros32() argument 40 return value ? __builtin_clz(value) : 32; in CountLeadingZeros32() [all …]
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowBundle.java | 44 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/chromium_org/third_party/boringssl/src/crypto/asn1/ |
D | a_utf8.c | 78 unsigned long value; in UTF8_getc() local 85 value = *p++ & 0x7f; in UTF8_getc() 90 value = (*p++ & 0x1f) << 6; in UTF8_getc() 91 value |= *p++ & 0x3f; in UTF8_getc() 92 if(value < 0x80) return -4; in UTF8_getc() 98 value = (*p++ & 0xf) << 12; in UTF8_getc() 99 value |= (*p++ & 0x3f) << 6; in UTF8_getc() 100 value |= *p++ & 0x3f; in UTF8_getc() 101 if(value < 0x800) return -4; in UTF8_getc() 108 value = ((unsigned long)(*p++ & 0x7)) << 18; in UTF8_getc() [all …]
|
/external/openssl/crypto/asn1/ |
D | a_utf8.c | 79 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/apache-http/src/org/apache/commons/codec/language/ |
D | DoubleMetaphone.java | 78 public String doubleMetaphone(String value) { in doubleMetaphone() argument 79 return doubleMetaphone(value, false); in doubleMetaphone() 90 public String doubleMetaphone(String value, boolean alternate) { in doubleMetaphone() argument 91 value = cleanInput(value); in doubleMetaphone() 92 if (value == null) { in doubleMetaphone() 96 boolean slavoGermanic = isSlavoGermanic(value); in doubleMetaphone() 97 int index = isSilentStart(value) ? 1 : 0; in doubleMetaphone() 101 while (!result.isComplete() && index <= value.length() - 1) { in doubleMetaphone() 102 switch (value.charAt(index)) { in doubleMetaphone() 109 index = handleAEIOUY(value, result, index); in doubleMetaphone() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | DOMMatrix.h | 17 void setA(double value) { m_matrix.setM11(value); } in setA() argument 18 void setB(double value) { m_matrix.setM12(value); } in setB() argument 19 void setC(double value) { m_matrix.setM21(value); } in setC() argument 20 void setD(double value) { m_matrix.setM22(value); } in setD() argument 21 void setE(double value) { m_matrix.setM41(value); } in setE() argument 22 void setF(double value) { m_matrix.setM42(value); } in setF() argument 24 void setM11(double value) { m_matrix.setM11(value); } in setM11() argument 25 void setM12(double value) { m_matrix.setM12(value); } in setM12() argument 26 void setM13(double value) { m_matrix.setM13(value); setIs2D(!value); } in setM13() argument 27 void setM14(double value) { m_matrix.setM14(value); setIs2D(!value); } in setM14() argument [all …]
|
/external/deqp/framework/opengl/ |
D | gluStrUtilPrototypes.inl | 4 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/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/ |
D | DexDataWriter.java | 90 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/clang/test/SemaTemplate/ |
D | temp_class_spec.cpp | 4 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/chromium_org/third_party/skia/src/sfnt/ |
D | SkOTTable_OS_2_V4.h | 37 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 …]
|
D | SkOTTable_OS_2_V3.h | 37 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 …]
|
/external/skia/src/sfnt/ |
D | SkOTTable_OS_2_V4.h | 37 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 …]
|
D | SkOTTable_OS_2_V3.h | 37 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 …]
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
D | TypeTraits.cpp | 29 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/ |
D | cmath.disabled.cpp | 26 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/ |
D | media_galleries_permission_unittest.cc | 21 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/ |
D | math_h.disabled.cpp | 20 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/ |
D | value.c | 47 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 …]
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | MediaQueryEvaluator.cpp | 116 static bool applyRestrictor(MediaQuery::Restrictor r, bool value) in applyRestrictor() argument 118 return r == MediaQuery::Not ? !value : value; in applyRestrictor() 172 static bool compareAspectRatioValue(const MediaQueryExpValue& value, int width, int height, MediaFe… in compareAspectRatioValue() argument 174 if (value.isRatio) in compareAspectRatioValue() 175 …return compareValue(width * static_cast<int>(value.denominator), height * static_cast<int>(value.n… in compareAspectRatioValue() 180 static bool numberValue(const MediaQueryExpValue& value, float& result) in numberValue() argument 182 if (value.isValue && value.unit == CSSPrimitiveValue::CSS_NUMBER) { in numberValue() 183 result = value.value; in numberValue() 189 static bool colorMediaFeatureEval(const MediaQueryExpValue& value, MediaFeaturePrefix op, const Med… in colorMediaFeatureEval() argument 193 if (value.isValid()) in colorMediaFeatureEval() [all …]
|