/libcore/luni/src/test/java/org/apache/harmony/nio/tests/java/nio/ |
D | ByteBufferTest.java | 1015 char value; in testAsCharBuffer() local 1026 assertEquals(bytes2char(bytes, buf.order()), value); in testAsCharBuffer() local 1037 assertEquals(bytes2char(bytes, buf.order()), value); in testAsCharBuffer() local 1078 double value; in testAsDoubleBuffer() local 1091 assertEquals(bytes2double(bytes, buf.order()), value, 0.00); in testAsDoubleBuffer() local 1105 assertEquals(bytes2double(bytes, buf.order()), value, 0.00); in testAsDoubleBuffer() local 1148 float value; in testAsFloatBuffer() local 1161 assertEquals(bytes2float(bytes, buf.order()), value, 0.00); in testAsFloatBuffer() local 1175 assertEquals(bytes2float(bytes, buf.order()), value, 0.00); in testAsFloatBuffer() local 1218 int value; in testAsIntBuffer() local [all …]
|
/libcore/luni/src/main/java/java/io/ |
D | EmulatedFieldsForDumping.java | 68 public void put(String name, byte value) { in put() 82 public void put(String name, char value) { in put() 96 public void put(String name, double value) { in put() 110 public void put(String name, float value) { in put() 124 public void put(String name, int value) { in put() 138 public void put(String name, long value) { in put() 152 public void put(String name, Object value) { in put() 166 public void put(String name, short value) { in put() 180 public void put(String name, boolean value) { in put()
|
/libcore/luni/src/main/java/java/nio/ |
D | ReadOnlyDirectByteBuffer.java | 75 public ByteBuffer put(byte value) { in put() 80 public ByteBuffer put(int index, byte value) { in put() 90 public ByteBuffer putDouble(double value) { in putDouble() 95 public ByteBuffer putDouble(int index, double value) { in putDouble() 100 public ByteBuffer putFloat(float value) { in putFloat() 105 public ByteBuffer putFloat(int index, float value) { in putFloat() 110 public ByteBuffer putInt(int value) { in putInt() 115 public ByteBuffer putInt(int index, int value) { in putInt() 120 public ByteBuffer putLong(int index, long value) { in putLong() 125 public ByteBuffer putLong(long value) { in putLong() [all …]
|
D | ReadOnlyHeapByteBuffer.java | 99 public ByteBuffer putDouble(double value) { in putDouble() 104 public ByteBuffer putDouble(int index, double value) { in putDouble() 109 public ByteBuffer putFloat(float value) { in putFloat() 114 public ByteBuffer putFloat(int index, float value) { in putFloat() 119 public ByteBuffer putInt(int value) { in putInt() 124 public ByteBuffer putInt(int index, int value) { in putInt() 129 public ByteBuffer putLong(int index, long value) { in putLong() 134 public ByteBuffer putLong(long value) { in putLong() 139 public ByteBuffer putShort(int index, short value) { in putShort() 144 public ByteBuffer putShort(short value) { in putShort()
|
D | ReadWriteHeapByteBuffer.java | 136 public ByteBuffer putDouble(double value) { in putDouble() 141 public ByteBuffer putDouble(int index, double value) { in putDouble() 146 public ByteBuffer putFloat(float value) { in putFloat() 151 public ByteBuffer putFloat(int index, float value) { in putFloat() 156 public ByteBuffer putInt(int value) { in putInt() 167 public ByteBuffer putInt(int index, int value) { in putInt() 176 public ByteBuffer putLong(int index, long value) { in putLong() 185 public ByteBuffer putLong(long value) { in putLong() 196 public ByteBuffer putShort(int index, short value) { in putShort() 205 public ByteBuffer putShort(short value) { in putShort()
|
D | ReadWriteDirectByteBuffer.java | 98 public ByteBuffer put(byte value) { in put() 107 public ByteBuffer put(int index, byte value) { in put() 259 public ByteBuffer putDouble(double value) { in putDouble() 270 public ByteBuffer putDouble(int index, double value) { in putDouble() 279 public ByteBuffer putFloat(float value) { in putFloat() 290 public ByteBuffer putFloat(int index, float value) { in putFloat() 299 public ByteBuffer putInt(int value) { in putInt() 310 public ByteBuffer putInt(int index, int value) { in putInt() 319 public ByteBuffer putLong(long value) { in putLong() 330 public ByteBuffer putLong(int index, long value) { in putLong() [all …]
|
D | MappedByteBufferAdapter.java | 281 public ByteBuffer putChar(char value) { in putChar() 290 public ByteBuffer putChar(int index, char value) { in putChar() 298 public ByteBuffer putDouble(double value) { in putDouble() 307 public ByteBuffer putDouble(int index, double value) { in putDouble() 315 public ByteBuffer putFloat(float value) { in putFloat() 324 public ByteBuffer putFloat(int index, float value) { in putFloat() 332 public ByteBuffer putInt(int index, int value) { in putInt() 340 public ByteBuffer putInt(int value) { in putInt() 349 public ByteBuffer putLong(int index, long value) { in putLong() 357 public ByteBuffer putLong(long value) { in putLong() [all …]
|
D | ByteBuffer.java | 822 public abstract ByteBuffer putChar(char value); in putChar() 841 public abstract ByteBuffer putChar(int index, char value); in putChar() 857 public abstract ByteBuffer putDouble(double value); in putDouble() 876 public abstract ByteBuffer putDouble(int index, double value); in putDouble() 892 public abstract ByteBuffer putFloat(float value); in putFloat() 911 public abstract ByteBuffer putFloat(int index, float value); in putFloat() 927 public abstract ByteBuffer putInt(int value); in putInt() 946 public abstract ByteBuffer putInt(int index, int value); in putInt() 962 public abstract ByteBuffer putLong(long value); in putLong() 981 public abstract ByteBuffer putLong(int index, long value); in putLong() [all …]
|
/libcore/luni/src/main/native/ |
D | valueOf.cpp | 24 static jobject valueOf(JNIEnv* env, jclass c, const char* signature, const T& value) { in valueOf() 29 jobject booleanValueOf(JNIEnv* env, jboolean value) { in booleanValueOf() 33 jobject doubleValueOf(JNIEnv* env, jdouble value) { in doubleValueOf() 37 jobject integerValueOf(JNIEnv* env, jint value) { in integerValueOf() 41 jobject longValueOf(JNIEnv* env, jlong value) { in longValueOf()
|
/libcore/json/src/main/java/org/json/ |
D | JSON.java | 30 static Boolean toBoolean(Object value) { in toBoolean() 40 static Double toDouble(Object value) { in toDouble() 54 static Integer toInteger(Object value) { in toInteger() 68 static Long toLong(Object value) { in toLong() 82 static String toString(Object value) { in toString()
|
D | JSONStringer.java | 227 public JSONStringer value(Object value) throws JSONException { in value() argument 263 public JSONStringer value(boolean value) throws JSONException { in value() method in JSONStringer 279 public JSONStringer value(double value) throws JSONException { in value() argument 293 public JSONStringer value(long value) throws JSONException { in value() method in JSONStringer 302 private void string(String value) { in string()
|
/libcore/luni/src/main/java/java/text/ |
D | DecimalFormatSymbols.java | 413 public void setInternationalCurrencySymbol(String value) { in setInternationalCurrencySymbol() 439 public void setCurrencySymbol(String value) { in setCurrencySymbol() 449 public void setDecimalSeparator(char value) { in setDecimalSeparator() 459 public void setDigit(char value) { in setDigit() 469 public void setGroupingSeparator(char value) { in setGroupingSeparator() 479 public void setInfinity(String value) { in setInfinity() 489 public void setMinusSign(char value) { in setMinusSign() 500 public void setMonetaryDecimalSeparator(char value) { in setMonetaryDecimalSeparator() 510 public void setNaN(String value) { in setNaN() 521 public void setPatternSeparator(char value) { in setPatternSeparator() [all …]
|
D | DecimalFormat.java | 552 public DecimalFormat(String pattern, DecimalFormatSymbols value) { in DecimalFormat() 672 public StringBuffer format(double value, StringBuffer buffer, FieldPosition position) { in format() 694 public StringBuffer format(long value, StringBuffer buffer, FieldPosition position) { in format() 837 public void setParseIntegerOnly(boolean value) { in setParseIntegerOnly() 943 public void setDecimalFormatSymbols(DecimalFormatSymbols value) { in setDecimalFormatSymbols() 976 public void setDecimalSeparatorAlwaysShown(boolean value) { in setDecimalSeparatorAlwaysShown() 988 public void setGroupingSize(int value) { in setGroupingSize() 1000 public void setGroupingUsed(boolean value) { in setGroupingUsed() 1022 public void setMaximumFractionDigits(int value) { in setMaximumFractionDigits() 1037 public void setMaximumIntegerDigits(int value) { in setMaximumIntegerDigits() [all …]
|
/libcore/luni/src/test/java/tests/api/java/util/ |
D | CalendarTest.java | 760 public void add(int field, int value) { in add() 805 String value = null; in test_getDisplayNameIILjava_util_Locale() local 811 locale), value); in test_getDisplayNameIILjava_util_Locale() local 813 locale), value); in test_getDisplayNameIILjava_util_Locale() local 817 locale), value); in test_getDisplayNameIILjava_util_Locale() local 819 locale), value); in test_getDisplayNameIILjava_util_Locale() local 825 locale), value); in test_getDisplayNameIILjava_util_Locale() local 827 locale), value); in test_getDisplayNameIILjava_util_Locale() local 831 locale), value); in test_getDisplayNameIILjava_util_Locale() local 833 locale), value); in test_getDisplayNameIILjava_util_Locale() local [all …]
|
/libcore/luni/src/main/java/java/util/concurrent/ |
D | ConcurrentMap.java | 59 V putIfAbsent(K key, V value); in putIfAbsent() 81 boolean remove(Object key, Object value); in remove() 133 V replace(K key, V value); in replace()
|
/libcore/luni/src/main/java/org/apache/harmony/security/x509/ |
D | OtherName.java | 52 private byte[] value; field in OtherName 61 public OtherName(String typeID, byte[] value) { in OtherName() 71 private OtherName(String typeID, byte[] value, byte[] encoding) { in OtherName()
|
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
D | DOMConfigurationImpl.java | 302 void set(DOMConfigurationImpl config, Object value); in set() 303 boolean canSet(DOMConfigurationImpl config, Object value); in canSet() 314 public void set(DOMConfigurationImpl config, Object value) { in set() 320 public boolean canSet(DOMConfigurationImpl config, Object value) { in canSet() 326 public boolean canSet(DOMConfigurationImpl config, Object value) { in canSet() 331 public boolean canSetParameter(String name, Object value) { in canSetParameter() 336 public void setParameter(String name, Object value) throws DOMException { in setParameter()
|
/libcore/luni/src/main/java/org/apache/harmony/xml/parsers/ |
D | SAXParserFactoryImpl.java | 87 public void setFeature(String name, boolean value) throws SAXNotRecognizedException { in setFeature() 105 public void setNamespaceAware(boolean value) { in setNamespaceAware() 114 public void setValidating(boolean value) { in setValidating()
|
/libcore/luni/src/main/java/org/apache/harmony/security/x509/tsp/ |
D | PKIFailureInfo.java | 95 private final int value; field in PKIFailureInfo 99 PKIFailureInfo(int value) { in PKIFailureInfo() 127 public static PKIFailureInfo getInstance(int value) { in getInstance()
|
/libcore/support/src/test/java/tests/util/ |
D | CallVerificationStack.java | 212 Boolean value = (Boolean) wrapper.getValue(); in popBoolean() local 223 Character value = (Character) wrapper.getValue(); in popChar() local 234 Double value = (Double) wrapper.getValue(); in popDouble() local 245 Float value = (Float) wrapper.getValue(); in popFloat() local 256 Integer value = (Integer) wrapper.getValue(); in popInt() local 267 Long value = (Long) wrapper.getValue(); in popLong() local 278 Short value = (Short) wrapper.getValue(); in popShort() local 288 private Object value; field in CallVerificationStack.BaseTypeWrapper
|
/libcore/luni/src/main/java/java/lang/reflect/ |
D | Array.java | 506 public static void set(Object array, int index, Object value) in set() 564 public static void setBoolean(Object array, int index, boolean value) { in setBoolean() 591 public static void setByte(Object array, int index, byte value) in setByte() 619 public static void setChar(Object array, int index, char value) in setChar() 651 public static void setDouble(Object array, int index, double value) in setDouble() 683 public static void setFloat(Object array, int index, float value) in setFloat() 711 public static void setInt(Object array, int index, int value) in setInt() 739 public static void setLong(Object array, int index, long value) in setLong() 767 public static void setShort(Object array, int index, short value) in setShort()
|
/libcore/luni/src/main/java/org/apache/xalan/templates/ |
D | OutputProperties.java | 118 public void setProperty(QName key, String value) in setProperty() 120 setProperty(key.toNamespacedString(), value); in setProperty() local 130 public void setProperty(String key, String value) in setProperty() 182 public void setBooleanProperty(QName key, boolean value) in setBooleanProperty() 194 public void setBooleanProperty(String key, boolean value) in setBooleanProperty() 238 public void setIntProperty(QName key, int value) in setIntProperty() 240 setIntProperty(key.toNamespacedString(), value); in setIntProperty() local 250 public void setIntProperty(String key, int value) in setIntProperty() 296 public void setQNameProperty(QName key, QName value) in setQNameProperty() 298 setQNameProperty(key.toNamespacedString(), value); in setQNameProperty() local [all …]
|
/libcore/luni/src/main/java/java/sql/ |
D | DriverPropertyInfo.java | 55 public String value; field in DriverPropertyInfo 66 public DriverPropertyInfo(String name, String value) { in DriverPropertyInfo()
|
/libcore/luni/src/main/java/java/math/ |
D | BigInteger.java | 107 BigInteger(int sign, long value) { in BigInteger() 187 public BigInteger(String value) { in BigInteger() 206 public BigInteger(String value, int radix) { in BigInteger() 271 public BigInteger(byte[] value) { in BigInteger() 336 public static BigInteger valueOf(long value) { in valueOf() 388 public BigInteger add(BigInteger value) { in add() 403 public BigInteger subtract(BigInteger value) { in subtract() 658 public BigInteger and(BigInteger value) { in and() 673 public BigInteger or(BigInteger value) { in or() 688 public BigInteger xor(BigInteger value) { in xor() [all …]
|
/libcore/luni/src/main/java/org/apache/harmony/luni/platform/ |
D | PlatformAddressFactory.java | 67 private static PlatformAddress make(int value, long size) { in make() 77 public synchronized static PlatformAddress on(int value, long size) { in on() 98 public static PlatformAddress on(int value) { in on() 102 public static MappedPlatformAddress mapOn(int value, long size) { in mapOn()
|