/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/ |
D | regress-96526-003.js | 55 if(IDText.value==""){ 59 else if(IDText.value=="x522"){ 64 else if(IDText.value=="x91"){ 69 else if(IDText.value=="x92"){ 74 else if(IDText.value=="x93"){ 79 else if(IDText.value=="x95"){ 84 else if(IDText.value=="521"){ 89 else if(IDText.value=="522"){ 94 else if(IDText.value=="528"){ 99 else if(IDText.value=="529"){ [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/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/qemu/ |
D | varint.c | 42 char *varint_encode(uint64_t value, char *buf) { in varint_encode() argument 43 if (value < k2Exp7) { in varint_encode() 44 *buf++ = value; in varint_encode() 45 } else if (value < k2Exp14) { in varint_encode() 46 *buf++ = (2 << 6) | (value >> 8); in varint_encode() 47 *buf++ = value & 0xff; in varint_encode() 48 } else if (value < k2Exp21) { in varint_encode() 49 *buf++ = (6 << 5) | (value >> 16); in varint_encode() 50 *buf++ = (value >> 8) & 0xff; in varint_encode() 51 *buf++ = value & 0xff; in varint_encode() [all …]
|
/external/apache-http/src/org/apache/commons/codec/language/ |
D | DoubleMetaphone.java | 73 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/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/webkit/Source/JavaScriptCore/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 int>::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/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/bluetooth/glib/tests/gobject/ |
D | gvalue-test.c | 95 GValue value = { 0, }; in test_gtype_value() local 98 g_value_init (&value, G_TYPE_GTYPE); in test_gtype_value() 100 g_value_set_gtype (&value, G_TYPE_BOXED); in test_gtype_value() 101 type = g_value_get_gtype (&value); in test_gtype_value() 105 g_value_copy (&value, ©); in test_gtype_value() 111 collect (GValue *value, ...) in collect() argument 118 va_start (var_args, value); in collect() 119 G_VALUE_COLLECT (value, var_args, 0, &error); in collect() 126 lcopy (GValue *value, ...) in lcopy() argument 133 va_start (var_args, value); in lcopy() [all …]
|
D | paramspec-test.c | 39 GValue value = { 0, }; in test_param_spec_char() local 49 g_value_init (&value, G_TYPE_CHAR); in test_param_spec_char() 50 g_value_set_char (&value, 30); in test_param_spec_char() 52 g_assert (g_param_value_defaults (pspec, &value)); in test_param_spec_char() 54 g_value_set_char (&value, 0); in test_param_spec_char() 55 modified = g_param_value_validate (pspec, &value); in test_param_spec_char() 56 g_assert (modified && g_value_get_char (&value) == 20); in test_param_spec_char() 58 g_value_set_char (&value, 20); in test_param_spec_char() 59 modified = g_param_value_validate (pspec, &value); in test_param_spec_char() 60 g_assert (!modified && g_value_get_char (&value) == 20); in test_param_spec_char() [all …]
|
/external/bluetooth/glib/gobject/ |
D | gvaluetypes.h | 41 #define G_VALUE_HOLDS_CHAR(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_CHAR)) argument 50 #define G_VALUE_HOLDS_UCHAR(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_UCHAR)) argument 59 #define G_VALUE_HOLDS_BOOLEAN(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_BOOLEAN)) argument 68 #define G_VALUE_HOLDS_INT(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_INT)) argument 77 #define G_VALUE_HOLDS_UINT(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_UINT)) argument 86 #define G_VALUE_HOLDS_LONG(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_LONG)) argument 95 #define G_VALUE_HOLDS_ULONG(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_ULONG)) argument 104 #define G_VALUE_HOLDS_INT64(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_INT64)) argument 113 #define G_VALUE_HOLDS_UINT64(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_UINT64)) argument 122 #define G_VALUE_HOLDS_FLOAT(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_FLOAT)) argument [all …]
|
D | gvaluetypes.c | 40 value_init_long0 (GValue *value) in value_init_long0() argument 42 value->data[0].v_long = 0; in value_init_long0() 53 value_lcopy_char (const GValue *value, in value_lcopy_char() argument 61 return g_strdup_printf ("value location for `%s' passed as NULL", G_VALUE_TYPE_NAME (value)); in value_lcopy_char() 63 *int8_p = value->data[0].v_int; in value_lcopy_char() 69 value_lcopy_boolean (const GValue *value, in value_lcopy_boolean() argument 77 return g_strdup_printf ("value location for `%s' passed as NULL", G_VALUE_TYPE_NAME (value)); in value_lcopy_boolean() 79 *bool_p = value->data[0].v_int; in value_lcopy_boolean() 85 value_collect_int (GValue *value, in value_collect_int() argument 90 value->data[0].v_int = collect_values[0].v_int; in value_collect_int() [all …]
|
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/ |
D | BinaryOutputCapsule.java | 72 public void write(byte value, String name, byte defVal) throws IOException { in write() argument 73 if (value == defVal) in write() 76 write(value); in write() 79 public void write(byte[] value, String name, byte[] defVal) in write() argument 81 if (value == defVal) in write() 84 write(value); in write() 87 public void write(byte[][] value, String name, byte[][] defVal) in write() argument 89 if (value == defVal) in write() 92 write(value); in write() 95 public void write(int value, String name, int defVal) throws IOException { in write() argument [all …]
|
/external/protobuf/python/google/protobuf/internal/ |
D | encoder.py | 73 def _VarintSize(value): argument 75 if value <= 0x7f: return 1 76 if value <= 0x3fff: return 2 77 if value <= 0x1fffff: return 3 78 if value <= 0xfffffff: return 4 79 if value <= 0x7ffffffff: return 5 80 if value <= 0x3ffffffffff: return 6 81 if value <= 0x1ffffffffffff: return 7 82 if value <= 0xffffffffffffff: return 8 83 if value <= 0x7fffffffffffffff: return 9 [all …]
|
/external/protobuf/src/google/protobuf/ |
D | wire_format_lite_inl.h | 57 int32* value) { 60 *value = static_cast<int32>(temp); 66 int64* value) { 69 *value = static_cast<int64>(temp); 75 uint32* value) { 76 return input->ReadVarint32(value); 81 uint64* value) { 82 return input->ReadVarint64(value); 87 int32* value) { 90 *value = ZigZagDecode32(temp); [all …]
|
D | wire_format_lite.h | 211 static uint32 EncodeFloat(float value); 212 static float DecodeFloat(uint32 value); 213 static uint64 EncodeDouble(double value); 214 static double DecodeDouble(uint64 value); 245 static inline bool ReadPrimitive(input, CType* value) INL; 254 RepeatedField<CType>* value) INL; 262 RepeatedField<CType>* value); 271 CType* value) INL; 278 RepeatedField<CType>* value) INL; 283 static bool ReadPackedPrimitiveNoInline(input, RepeatedField<CType>* value); [all …]
|
/external/proguard/src/proguard/evaluation/value/ |
D | ParticularIntegerValue.java | 21 package proguard.evaluation.value; 30 private final int value; field in ParticularIntegerValue 36 public ParticularIntegerValue(int value) in ParticularIntegerValue() argument 38 this.value = value; in ParticularIntegerValue() 44 public int value() in value() method in ParticularIntegerValue 46 return value; in value() 54 return new ParticularIntegerValue(-value); in negate() 59 int byteValue = (byte)value; in convertToByte() 61 return byteValue == value ? in convertToByte() 68 int charValue = (char)value; in convertToCharacter() [all …]
|
D | ParticularDoubleValue.java | 21 package proguard.evaluation.value; 30 private final double value; field in ParticularDoubleValue 36 public ParticularDoubleValue(double value) in ParticularDoubleValue() argument 38 this.value = value; in ParticularDoubleValue() 44 public double value() in value() method in ParticularDoubleValue 46 return value; in value() 54 return new ParticularDoubleValue(-value); in negate() 59 return new ParticularIntegerValue((int)value); in convertToInteger() 64 return new ParticularLongValue((long)value); in convertToLong() 69 return new ParticularFloatValue((float)value); in convertToFloat() [all …]
|
/external/chromium/base/memory/ |
D | raw_scoped_refptr_mismatch_checker.h | 31 value = base::false_type::value enumerator 38 value = (is_pointer<T>::value && 39 (is_convertible<T, subtle::RefCountedBase*>::value || 40 is_convertible<T, subtle::RefCountedThreadSafeBase*>::value)) 47 enum { value = 0 }; enumerator 52 enum { value = 1 }; 57 enum { value = !NeedsScopedRefptrButGetsRawPtr<A>::value }; 62 enum { value = !(NeedsScopedRefptrButGetsRawPtr<A>::value || 63 NeedsScopedRefptrButGetsRawPtr<B>::value) }; 68 enum { value = !(NeedsScopedRefptrButGetsRawPtr<A>::value || [all …]
|
/external/skia/src/core/ |
D | SkFloatBits.cpp | 47 int value = unpack_matissa_dirty(packed) | MATISSA_MAGIC_BIG; in SkFloatBits_toIntCast() local 51 value = SK_MaxS32; in SkFloatBits_toIntCast() 53 value <<= exp; in SkFloatBits_toIntCast() 60 value >>= exp; in SkFloatBits_toIntCast() 62 return SkApplySign(value, SkExtractSign(packed)); in SkFloatBits_toIntCast() 73 int value = unpack_matissa_dirty(packed) | MATISSA_MAGIC_BIG; in SkFloatBits_toIntFloor() local 77 value = SK_MaxS32; in SkFloatBits_toIntFloor() 79 value <<= exp; in SkFloatBits_toIntFloor() 82 return SkApplySign(value, SkExtractSign(packed)); in SkFloatBits_toIntFloor() 85 value = SkApplySign(value, SkExtractSign(packed)); in SkFloatBits_toIntFloor() [all …]
|
/external/llvm/bindings/ocaml/llvm/ |
D | llvm_ocaml.c | 31 static value llvm_ioerror_exn; 33 CAMLprim value llvm_register_core_exns(value IoError) { in llvm_register_core_exns() 39 static void llvm_raise(value Prototype, char *Message) { in llvm_raise() 53 static value alloc_variant(int tag, void *Value) { in alloc_variant() 54 value Iter = alloc_small(1, tag); in alloc_variant() 63 CAMLprim value llvm_##camlname##_begin(pty Mom) { \ 71 CAMLprim value llvm_##camlname##_succ(cty Kid) { \ 79 CAMLprim value llvm_##camlname##_end(pty Mom) { \ 87 CAMLprim value llvm_##camlname##_pred(cty Kid) { \ 98 CAMLprim LLVMContextRef llvm_create_context(value Unit) { in llvm_create_context() [all …]
|
/external/easymock/src/org/easymock/ |
D | EasyMock.java | 182 public static <T> IExpectationSetters<T> expect(T value) { in expect() argument 308 public static <T extends Comparable<T>> T geq(Comparable<T> value) { in geq() argument 309 reportMatcher(new GreaterOrEqual<T>(value)); in geq() 321 public static byte geq(byte value) { in geq() argument 322 reportMatcher(new GreaterOrEqual<Byte>(value)); in geq() 334 public static double geq(double value) { in geq() argument 335 reportMatcher(new GreaterOrEqual<Double>(value)); in geq() 347 public static float geq(float value) { in geq() argument 348 reportMatcher(new GreaterOrEqual<Float>(value)); in geq() 360 public static int geq(int value) { in geq() argument [all …]
|
/external/protobuf/src/google/protobuf/io/ |
D | coded_stream.h | 197 bool ReadLittleEndian32(uint32* value); 199 bool ReadLittleEndian64(uint64* value); 205 uint32* value); 208 uint64* value); 213 bool ReadVarint32(uint32* value); 215 bool ReadVarint64(uint64* value); 510 bool ReadVarint32Fallback(uint32* value); 511 bool ReadVarint64Fallback(uint64* value); 512 bool ReadVarint32Slow(uint32* value); 513 bool ReadVarint64Slow(uint64* value); [all …]
|
/external/v8/src/ |
D | json.js | 64 function SerializeArray(value, replacer, stack, indent, gap) { argument 65 if (!%PushIfAbsent(stack, value)) { 71 var len = value.length; 73 var strP = JSONSerialize($String(i), value, replacer, stack, 94 function SerializeObject(value, replacer, stack, indent, gap) { argument 95 if (!%PushIfAbsent(stack, value)) { 106 var strP = JSONSerialize(p, value, replacer, stack, indent, gap); 116 for (var p in value) { 117 if (%_CallFunction(value, p, ObjectHasOwnProperty)) { 118 var strP = JSONSerialize(p, value, replacer, stack, indent, gap); [all …]
|
/external/apache-harmony/support/src/test/java/tests/support/ |
D | Support_Configuration.java | 137 String value; in loadProperties() local 139 value = props.get("DomainAddress"); in loadProperties() 140 if (value != null) { in loadProperties() 141 DomainAddress = value; in loadProperties() 144 value = props.get("WebName"); in loadProperties() 145 if (value != null) { in loadProperties() 146 WebName = value; in loadProperties() 149 value = props.get("TestResourcesDir"); in loadProperties() 150 if (value != null) { in loadProperties() 151 TestResourcesDir = value; in loadProperties() [all …]
|