Home
last modified time | relevance | path

Searched defs:x (Results 1 – 25 of 222) sorted by relevance

123456789

/libcore/ojluni/src/main/java/java/sql/
DSQLOutput.java67 void writeString(String x) throws SQLException; in writeString()
80 void writeBoolean(boolean x) throws SQLException; in writeBoolean()
93 void writeByte(byte x) throws SQLException; in writeByte()
106 void writeShort(short x) throws SQLException; in writeShort()
119 void writeInt(int x) throws SQLException; in writeInt()
132 void writeLong(long x) throws SQLException; in writeLong()
145 void writeFloat(float x) throws SQLException; in writeFloat()
158 void writeDouble(double x) throws SQLException; in writeDouble()
171 void writeBigDecimal(java.math.BigDecimal x) throws SQLException; in writeBigDecimal()
184 void writeBytes(byte[] x) throws SQLException; in writeBytes()
[all …]
DPreparedStatement.java130 void setBoolean(int parameterIndex, boolean x) throws SQLException; in setBoolean()
143 void setByte(int parameterIndex, byte x) throws SQLException; in setByte()
156 void setShort(int parameterIndex, short x) throws SQLException; in setShort()
169 void setInt(int parameterIndex, int x) throws SQLException; in setInt()
182 void setLong(int parameterIndex, long x) throws SQLException; in setLong()
195 void setFloat(int parameterIndex, float x) throws SQLException; in setFloat()
208 void setDouble(int parameterIndex, double x) throws SQLException; in setDouble()
221 void setBigDecimal(int parameterIndex, BigDecimal x) throws SQLException; in setBigDecimal()
237 void setString(int parameterIndex, String x) throws SQLException; in setString()
251 void setBytes(int parameterIndex, byte x[]) throws SQLException; in setBytes()
[all …]
DResultSet.java1533 void updateBoolean(int columnIndex, boolean x) throws SQLException; in updateBoolean()
1553 void updateByte(int columnIndex, byte x) throws SQLException; in updateByte()
1572 void updateShort(int columnIndex, short x) throws SQLException; in updateShort()
1591 void updateInt(int columnIndex, int x) throws SQLException; in updateInt()
1610 void updateLong(int columnIndex, long x) throws SQLException; in updateLong()
1629 void updateFloat(int columnIndex, float x) throws SQLException; in updateFloat()
1648 void updateDouble(int columnIndex, double x) throws SQLException; in updateDouble()
1668 void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException; in updateBigDecimal()
1687 void updateString(int columnIndex, String x) throws SQLException; in updateString()
1706 void updateBytes(int columnIndex, byte x[]) throws SQLException; in updateBytes()
[all …]
DCallableStatement.java813 void setBoolean(String parameterName, boolean x) throws SQLException; in setBoolean()
830 void setByte(String parameterName, byte x) throws SQLException; in setByte()
847 void setShort(String parameterName, short x) throws SQLException; in setShort()
864 void setInt(String parameterName, int x) throws SQLException; in setInt()
881 void setLong(String parameterName, long x) throws SQLException; in setLong()
898 void setFloat(String parameterName, float x) throws SQLException; in setFloat()
915 void setDouble(String parameterName, double x) throws SQLException; in setDouble()
933 void setBigDecimal(String parameterName, BigDecimal x) throws SQLException; in setBigDecimal()
953 void setString(String parameterName, String x) throws SQLException; in setString()
972 void setBytes(String parameterName, byte x[]) throws SQLException; in setBytes()
[all …]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
DArrayTest.java31 int[] x = { 1 }; in test_getLjava_lang_ObjectI() local
191 char[] x = { 1 }; in test_getCharLjava_lang_ObjectI() local
237 double[] x = { 1 }; in test_getDoubleLjava_lang_ObjectI() local
284 float[] x = { 1 }; in test_getFloatLjava_lang_ObjectI() local
330 int[] x = { 1 }; in test_getIntLjava_lang_ObjectI() local
376 long[] x = { 1 }; in test_getLengthLjava_lang_Object() local
396 long[] x = { 1 }; in test_getLongLjava_lang_ObjectI() local
442 short[] x = { 1 }; in test_getShortLjava_lang_ObjectI() local
488 int[][] x; in test_newInstanceLjava_lang_Class$I() local
534 int[] x; in test_newInstanceLjava_lang_ClassI() local
[all …]
DFieldTest.java134 private static final int x = 1; field in FieldTest.TestField
162 TestField x = new TestField(); in test_equalsLjava_lang_Object() local
186 TestField x = new TestField(); in test_getLjava_lang_Object() local
558 TestField x = new TestField(); in test_getBooleanLjava_lang_Object() local
612 TestField x = new TestField(); in test_getByteLjava_lang_Object() local
665 TestField x = new TestField(); in test_getCharLjava_lang_Object() local
741 TestField x = new TestField(); in test_getDoubleLjava_lang_Object() local
796 TestField x = new TestField(); in test_getFloatLjava_lang_Object() local
850 TestField x = new TestField(); in test_getIntLjava_lang_Object() local
906 TestField x = new TestField(); in test_getLongLjava_lang_Object() local
[all …]
/libcore/ojluni/src/main/java/javax/sql/
DRowSet.java548 void setBoolean(int parameterIndex, boolean x) throws SQLException; in setBoolean()
564 void setBoolean(String parameterName, boolean x) throws SQLException; in setBoolean()
575 void setByte(int parameterIndex, byte x) throws SQLException; in setByte()
591 void setByte(String parameterName, byte x) throws SQLException; in setByte()
602 void setShort(int parameterIndex, short x) throws SQLException; in setShort()
618 void setShort(String parameterName, short x) throws SQLException; in setShort()
629 void setInt(int parameterIndex, int x) throws SQLException; in setInt()
645 void setInt(String parameterName, int x) throws SQLException; in setInt()
656 void setLong(int parameterIndex, long x) throws SQLException; in setLong()
672 void setLong(String parameterName, long x) throws SQLException; in setLong()
[all …]
/libcore/ojluni/src/main/java/java/nio/
DBits.java46 static short swap(short x) { in swap()
50 static char swap(char x) { in swap()
54 static int swap(int x) { in swap()
58 static long swap(long x) { in swap()
97 private static byte char1(char x) { in char1()
101 private static byte char0(char x) { in char0()
105 static void putCharL(ByteBuffer bb, int bi, char x) { in putCharL()
110 static void putCharL(long a, char x) { in putCharL()
115 static void putCharB(ByteBuffer bb, int bi, char x) { in putCharB()
120 static void putCharB(long a, char x) { in putCharB()
[all …]
DDirectByteBuffer.java234 private ByteBuffer put(long a, byte x) { in put()
240 public final ByteBuffer put(byte x) { in put()
247 put(ix(nextPutIndex()), x); in put() local
252 public final ByteBuffer put(int i, byte x) { in put()
259 put(ix(checkIndex(i)), x); in put() local
335 char x = (char) Memory.peekShort(ix(position), !nativeByteOrder); in getChar() local
366 private ByteBuffer putChar(long a, char x) { in putChar()
372 public final ByteBuffer putChar(char x) { in putChar()
379 putChar(ix(nextPutIndex(SizeOf.CHAR)), x); in putChar() local
384 public final ByteBuffer putChar(int i, char x) { in putChar()
[all …]
DHeapByteBuffer.java140 public ByteBuffer put(byte x) { in put()
149 public ByteBuffer put(int i, byte x) { in put()
216 public ByteBuffer putChar(char x) { in putChar()
225 public ByteBuffer putChar(int i, char x) { in putChar()
234 void putCharUnchecked(int i, char x) { in putCharUnchecked()
277 public ByteBuffer putShort(short x) { in putShort()
286 public ByteBuffer putShort(int i, short x) { in putShort()
295 void putShortUnchecked(int i, short x) { in putShortUnchecked()
338 public ByteBuffer putInt(int x) { in putInt()
347 public ByteBuffer putInt(int i, int x) { in putInt()
[all …]
DByteBufferAsShortBuffer.java107 public ShortBuffer put(short x) { in put()
108 put(nextPutIndex(), x); in put() local
112 public ShortBuffer put(int i, short x) { in put()
116 bb.putShortUnchecked(ix(checkIndex(i)), x); in put() local
/libcore/ojluni/src/main/native/
Dfdlibm.h44 #define __HI(x) *(1+(int*)&x) argument
45 #define __LO(x) *(int*)&x argument
46 #define __HIp(x) *(1+(int*)x) argument
47 #define __LOp(x) *(int*)x argument
49 #define __HI(x) *(int*)&x argument
50 #define __LO(x) *(1+(int*)&x) argument
51 #define __HIp(x) *(int*)x argument
52 #define __LOp(x) *(1+(int*)x) argument
/libcore/benchmarks/src/benchmarks/regression/
DBigIntegerBenchmark.java25 BigInteger x = new BigInteger(1024, r); in timeRandomDivision() local
34 BigInteger x = new BigInteger(1024, r); in timeRandomGcd() local
43 BigInteger x = new BigInteger(1024, r); in timeRandomMultiplication() local
/libcore/ojluni/src/main/java/java/lang/
DStrictMath.java509 public static native double atan2(double y, double x); in atan2()
723 public static int addExact(int x, int y) { in addExact()
738 public static long addExact(long x, long y) { in addExact()
753 public static int subtractExact(int x, int y) { in subtractExact()
768 public static long subtractExact(long x, long y) { in subtractExact()
783 public static int multiplyExact(int x, int y) { in multiplyExact()
798 public static long multiplyExact(long x, long y) { in multiplyExact()
836 public static int floorDiv(int x, int y) { in floorDiv()
860 public static long floorDiv(long x, long y) { in floorDiv()
887 public static int floorMod(int x, int y) { in floorMod()
[all …]
DMath.java500 public static native double atan2(double y, double x); in atan2()
791 public static int addExact(int x, int y) { in addExact()
810 public static long addExact(long x, long y) { in addExact()
829 public static int subtractExact(int x, int y) { in subtractExact()
849 public static long subtractExact(long x, long y) { in subtractExact()
869 public static int multiplyExact(int x, int y) { in multiplyExact()
887 public static long multiplyExact(long x, long y) { in multiplyExact()
1056 public static int floorDiv(int x, int y) { in floorDiv()
1090 public static long floorDiv(long x, long y) { in floorDiv()
1143 public static int floorMod(int x, int y) { in floorMod()
[all …]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DThrowableTest.java53 public int x; in test_fillInStackTrace() field in ThrowableTest.Test
55 public Test(int x) { in test_fillInStackTrace()
129 Throwable x = new ClassNotFoundException("A Test Message"); in test_printStackTrace() local
150 Throwable x = new java.net.UnknownHostException("A Message"); in test_printStackTraceLjava_io_PrintStream() local
167 Throwable x = new java.net.UnknownHostException("A Message"); in test_printStackTraceLjava_io_PrintWriter() local
/libcore/ojluni/src/main/java/javax/crypto/spec/
DDHPrivateKeySpec.java46 private BigInteger x; field in DHPrivateKeySpec
61 public DHPrivateKeySpec(BigInteger x, BigInteger p, BigInteger g) { in DHPrivateKeySpec()
/libcore/ojluni/src/main/java/java/util/
DAbstractQueue.java113 E x = poll(); in remove() local
132 E x = peek(); in element() local
/libcore/ojluni/src/main/java/java/io/
DPrintWriter.java639 public void println(boolean x) { in println()
653 public void println(char x) { in println()
667 public void println(int x) { in println()
681 public void println(long x) { in println()
695 public void println(float x) { in println()
709 public void println(double x) { in println()
723 public void println(char x[]) { in println()
737 public void println(String x) { in println()
753 public void println(Object x) { in println()
DPrintStream.java724 public void println(boolean x) { in println()
738 public void println(char x) { in println()
752 public void println(int x) { in println()
766 public void println(long x) { in println()
780 public void println(float x) { in println()
794 public void println(double x) { in println()
808 public void println(char x[]) { in println()
822 public void println(String x) { in println()
838 public void println(Object x) { in println()
/libcore/luni/src/test/java/libcore/java/lang/invoke/
DCallSitesTest.java104 int x = (int) firstTarget.invokeExact(2, 6); in commonMutableCallSitesTest() local
136 private static int add2(int x, int y) { in add2()
140 private static int add3(int x, int y, int z) { in add3()
144 private static int sub2(int x, int y) { in sub2()
/libcore/ojluni/src/main/java/java/security/spec/
DECPoint.java41 private final BigInteger x; field in ECPoint
63 public ECPoint(BigInteger x, BigInteger y) { in ECPoint()
DDSAPrivateKeySpec.java47 private BigInteger x; field in DSAPrivateKeySpec
63 public DSAPrivateKeySpec(BigInteger x, BigInteger p, BigInteger q, in DSAPrivateKeySpec()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DLocaleTest.java39 Locale x = new Locale("xx"); in test_ConstructorLjava_lang_String() local
55 Locale x = new Locale("xx", "CV"); in test_ConstructorLjava_lang_StringLjava_lang_String() local
81 Locale x = new Locale("xx", "CV", "ZZ"); in test_ConstructorLjava_lang_StringLjava_lang_StringLjava_lang_String() local
162 Locale x = Locale.getDefault(); in test_getDefault() local
344 Locale x = Locale.getDefault(); in test_setDefaultLjava_util_Locale() local
/libcore/ojluni/src/main/java/sun/util/calendar/
DCalendarUtils.java135 public static final long mod(long x, long y) { in mod()
139 public static final int mod(int x, int y) { in mod()
143 public static final int amod(int x, int y) { in amod()
148 public static final long amod(long x, long y) { in amod()

123456789