Home
last modified time | relevance | path

Searched defs:val (Results 1 – 25 of 57) sorted by relevance

123

/libcore/support/src/test/java/tests/util/
DCallVerificationStack.java130 public void push(boolean val) { in push()
140 public void push(char val) { in push()
150 public void push(double val) { in push()
160 public void push(float val) { in push()
170 public void push(int val) { in push()
180 public void push(long val) { in push()
190 public void push(short val) { in push()
293 public BaseTypeWrapper(boolean val) { in BaseTypeWrapper()
300 public BaseTypeWrapper(byte val) { in BaseTypeWrapper()
307 public BaseTypeWrapper(char val) { in BaseTypeWrapper()
[all …]
/libcore/luni/src/main/java/java/io/
DDataOutput.java78 public abstract void writeBoolean(boolean val) throws IOException; in writeBoolean()
90 public abstract void writeByte(int val) throws IOException; in writeByte()
112 public abstract void writeChar(int val) throws IOException; in writeChar()
135 public abstract void writeDouble(double val) throws IOException; in writeDouble()
147 public abstract void writeFloat(float val) throws IOException; in writeFloat()
158 public abstract void writeInt(int val) throws IOException; in writeInt()
169 public abstract void writeLong(long val) throws IOException; in writeLong()
182 public abstract void writeShort(int val) throws IOException; in writeShort()
DDataOutputStream.java127 public final void writeBoolean(boolean val) throws IOException { in writeBoolean()
143 public final void writeByte(int val) throws IOException { in writeByte()
160 public final void writeChar(int val) throws IOException { in writeChar()
170 public final void writeDouble(double val) throws IOException { in writeDouble()
174 public final void writeFloat(float val) throws IOException { in writeFloat()
178 public final void writeInt(int val) throws IOException { in writeInt()
184 public final void writeLong(long val) throws IOException { in writeLong()
190 public final void writeShort(int val) throws IOException { in writeShort()
DRandomAccessFile.java724 public final void writeBoolean(boolean val) throws IOException { in writeBoolean()
739 public final void writeByte(int val) throws IOException { in writeByte()
771 public final void writeChar(int val) throws IOException { in writeChar()
800 public final void writeDouble(double val) throws IOException { in writeDouble()
815 public final void writeFloat(float val) throws IOException { in writeFloat()
829 public final void writeInt(int val) throws IOException { in writeInt()
844 public final void writeLong(long val) throws IOException { in writeLong()
861 public final void writeShort(int val) throws IOException { in writeShort()
/libcore/luni/src/main/java/java/math/
DMultiplication.java91 static BigInteger multiplyByPositiveInt(BigInteger val, int factor) { in multiplyByPositiveInt()
104 static BigInteger multiplyByTenPow(BigInteger val, long exp) { in multiplyByTenPow()
181 static BigInteger multiplyByFivePow(BigInteger val, int exp) { in multiplyByFivePow()
DLogical.java39 static BigInteger not(BigInteger val) { in not()
82 static BigInteger and(BigInteger val, BigInteger that) { in and()
111 static BigInteger andPositive(BigInteger val, BigInteger that) { in andPositive()
218 static BigInteger andNot(BigInteger val, BigInteger that) { in andNot()
250 static BigInteger andNotPositive(BigInteger val, BigInteger that) { in andNotPositive()
371 static BigInteger andNotNegative(BigInteger val, BigInteger that) { in andNotNegative()
425 static BigInteger or(BigInteger val, BigInteger that) { in or()
476 static BigInteger orNegative(BigInteger val, BigInteger that){ in orNegative()
569 static BigInteger xor(BigInteger val, BigInteger that) { in xor()
622 static BigInteger xorNegative(BigInteger val, BigInteger that){ in xorNegative()
DBitLevel.java41 static int bitLength(BigInteger val) { in bitLength()
62 static int bitCount(BigInteger val) { in bitCount()
91 static boolean testBit(BigInteger val, int n) { in testBit()
117 int val = source[i]; in shiftLeftOneBit() local
213 static BigInteger flipBit(BigInteger val, int n){ in flipBit()
DBigDecimal.java424 public BigDecimal(String val) { in BigDecimal()
443 public BigDecimal(String val, MathContext mc) { in BigDecimal()
463 public BigDecimal(double val) { in BigDecimal()
537 public BigDecimal(double val, MathContext mc) { in BigDecimal()
546 public BigDecimal(BigInteger val) { in BigDecimal()
561 public BigDecimal(BigInteger val, MathContext mc) { in BigDecimal()
609 public BigDecimal(int val) { in BigDecimal()
627 public BigDecimal(int val, MathContext mc) { in BigDecimal()
639 public BigDecimal(long val) { in BigDecimal()
657 public BigDecimal(long val, MathContext mc) { in BigDecimal()
[all …]
DConversion.java53 static String bigInteger2String(BigInteger val, int radix) { in bigInteger2String()
137 static String toDecimalScaledString(BigInteger val, int scale) { in toDecimalScaledString()
418 static double bigInteger2Double(BigInteger val) { in bigInteger2Double()
/libcore/luni/src/test/java/libcore/java/util/
DOldAndroidTreeMapTest.java49 int val = mRandom.nextInt(1000); in doTest() local
83 int val = mRandom.nextInt(1000); in doTest() local
DOldMapEntryTest.java56 public Object put(Object key, Object val) { in put()
63 public Object fakePut(Object key, Object val) { in fakePut()
DOldFormatterTest.java56 Double val = new Double(3.14); in test_formatLjava_util_LocaleLjava_lang_StringLjava_lang_Object() local
/libcore/luni/src/test/java/tests/api/java/lang/reflect/
DFieldTest.java188 Double val = (Double) f.get(x); in test_getLjava_lang_Object() local
710 char val = 0; in test_getCharLjava_lang_Object() local
799 double val = 0.0; in test_getDoubleLjava_lang_Object() local
867 float val = 0; in test_getFloatLjava_lang_Object() local
934 int val = 0; in test_getIntLjava_lang_Object() local
1003 long val = 0; in test_getLongLjava_lang_Object() local
1105 short val = 0; in test_getShortLjava_lang_Object() local
1190 double val = 0.0; in test_setLjava_lang_ObjectLjava_lang_Object() local
1374 char val = 0; in test_setCharLjava_lang_ObjectC() local
1436 double val = 0.0; in test_setDoubleLjava_lang_ObjectD() local
[all …]
/libcore/luni/src/main/java/java/util/zip/
DCRC32.java55 public void update(int val) { in update()
81 private native long updateByteImpl(byte val, long crc1); in updateByteImpl()
DChecksum.java56 public void update(int val); in update()
DCheckedOutputStream.java67 public void write(int val) throws IOException { in write()
DAdler32.java79 private native long updateByteImpl(int val, long adler1); in updateByteImpl()
/libcore/luni/src/test/java/tests/java/sql/
DSelectFunctionalityTest.java250 String val = result.getString("ftext"); in test_SubSelect() local
287 int val = result.getInt("cnum"); in test_SelectThreeTables() local
316 String val = result.getString("cname"); in test_SelectUnionItself() local
345 Object val = result.getObject("ccnum"); in test_SelectLeftOuterJoin() local
379 Object val = result.getObject("ccnum"); in test_SelectRightOuterJoin() local
/libcore/luni/src/main/java/java/util/concurrent/
DConcurrentLinkedQueue.java161 boolean casItem(E cmp, E val) { in casItem()
165 void lazySetNext(Node<E> val) { in lazySetNext()
169 boolean casNext(Node<E> cmp, Node<E> val) { in casNext()
780 private boolean casTail(Node<E> cmp, Node<E> val) { in casTail()
784 private boolean casHead(Node<E> cmp, Node<E> val) { in casHead()
DConcurrentLinkedDeque.java281 boolean casItem(E cmp, E val) { in casItem()
285 void lazySetNext(Node<E> val) { in lazySetNext()
289 boolean casNext(Node<E> cmp, Node<E> val) { in casNext()
293 void lazySetPrev(Node<E> val) { in lazySetPrev()
297 boolean casPrev(Node<E> cmp, Node<E> val) { in casPrev()
1412 private boolean casHead(Node<E> cmp, Node<E> val) { in casHead()
1416 private boolean casTail(Node<E> cmp, Node<E> val) { in casTail()
/libcore/luni/src/test/java/libcore/sqlite/
DOldFunctionContextTest.java52 String val = row[0]; in testSet_resultString() local
65 String val = row[0]; in testSet_resultInt() local
78 String val = row[0]; in testSet_resultDouble() local
123 String val = row[0]; in testSet_resultByteArray() local
161 String val = row[0]; in testSet_result_zeroblob() local
/libcore/luni/src/main/native/
Djava_util_zip_Adler32.cpp34 static jlong Adler32_updateByteImpl(JNIEnv*, jobject, jint val, jlong crc) { in Adler32_updateByteImpl()
Djava_util_zip_CRC32.cpp35 static jlong CRC32_updateByteImpl(JNIEnv*, jobject, jbyte val, jlong crc) { in CRC32_updateByteImpl()
/libcore/luni/src/main/java/org/apache/harmony/lang/annotation/
DAnnotationMember.java108 public AnnotationMember(String name, Object val) { in AnnotationMember()
129 public AnnotationMember(String name, Object val, Class type, Method m) { in AnnotationMember()
/libcore/luni/src/main/java/java/net/
DSocketOptions.java162 public void setOption(int optID, Object val) throws SocketException; in setOption()

123