Home
last modified time | relevance | path

Searched defs:i (Results 1 – 25 of 586) sorted by relevance

12345678910>>...24

/libcore/ojluni/src/main/java/java/util/concurrent/atomic/
DAtomicIntegerArray.java94 public final int get(int i) { in get()
105 public final void set(int i, int newValue) { in set()
117 public final void lazySet(int i, int newValue) { in lazySet()
130 public final int getAndSet(int i, int newValue) { in getAndSet()
145 public final boolean compareAndSet(int i, int expectedValue, int newValue) { in compareAndSet()
167 public final boolean weakCompareAndSet(int i, int expectedValue, int newValue) { in weakCompareAndSet()
182 public final boolean weakCompareAndSetPlain(int i, int expectedValue, int newValue) { in weakCompareAndSetPlain()
195 public final int getAndIncrement(int i) { in getAndIncrement()
208 public final int getAndDecrement(int i) { in getAndDecrement()
220 public final int getAndAdd(int i, int delta) { in getAndAdd()
[all …]
DAtomicLongArray.java94 public final long get(int i) { in get()
105 public final void set(int i, long newValue) { in set()
117 public final void lazySet(int i, long newValue) { in lazySet()
130 public final long getAndSet(int i, long newValue) { in getAndSet()
145 public final boolean compareAndSet(int i, long expectedValue, long newValue) { in compareAndSet()
167 public final boolean weakCompareAndSet(int i, long expectedValue, long newValue) { in weakCompareAndSet()
182 public final boolean weakCompareAndSetPlain(int i, long expectedValue, long newValue) { in weakCompareAndSetPlain()
195 public final long getAndIncrement(int i) { in getAndIncrement()
208 public final long getAndDecrement(int i) { in getAndDecrement()
220 public final long getAndAdd(int i, long delta) { in getAndAdd()
[all …]
DAtomicReferenceArray.java100 public final E get(int i) { in get()
111 public final void set(int i, E newValue) { in set()
123 public final void lazySet(int i, E newValue) { in lazySet()
137 public final E getAndSet(int i, E newValue) { in getAndSet()
152 public final boolean compareAndSet(int i, E expectedValue, E newValue) { in compareAndSet()
174 public final boolean weakCompareAndSet(int i, E expectedValue, E newValue) { in weakCompareAndSet()
189 public final boolean weakCompareAndSetPlain(int i, E expectedValue, E newValue) { in weakCompareAndSetPlain()
206 public final E getAndUpdate(int i, UnaryOperator<E> updateFunction) { in getAndUpdate()
230 public final E updateAndGet(int i, UnaryOperator<E> updateFunction) { in updateAndGet()
258 public final E getAndAccumulate(int i, E x, in getAndAccumulate()
[all …]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/
DInputSourceTest.java31 InputSource i = new InputSource(); in testInputSource() local
41 InputSource i = new InputSource("Foo"); in testInputSourceString() local
54 InputSource i = new InputSource(bais); in testInputSourceInputStream() local
76 InputSource i = new InputSource(sr); in testInputSourceReader() local
95 InputSource i = new InputSource(); in testSetPublicIdGetPublicId() local
105 InputSource i = new InputSource(); in testSetSystemIdGetSystemId() local
117 InputSource i = new InputSource(); in testSetByteStreamGetByteStream() local
131 InputSource i = new InputSource(); in testSetEncodingGetEncoding() local
147 InputSource i = new InputSource(); in testSetCharacterStreamGetCharacterStream() local
/libcore/luni/src/test/java/tests/security/cert/
DPolicyQualifierInfoTest.java127 PolicyQualifierInfo i = new PolicyQualifierInfo(encodingCopy); in testPolicyQualifierInfo04() local
152 PolicyQualifierInfo i = new PolicyQualifierInfo(encoding); in testGetEncoded01() local
170 PolicyQualifierInfo i = new PolicyQualifierInfo(encodingCopy); in testGetEncoded02() local
196 PolicyQualifierInfo i = new PolicyQualifierInfo(encoding); in testGetPolicyQualifier01() local
216 PolicyQualifierInfo i = new PolicyQualifierInfo(encoding); in testGetPolicyQualifier02() local
243 PolicyQualifierInfo i = new PolicyQualifierInfo(encoding); in testGetPolicyQualifierId() local
271 PolicyQualifierInfo i = new PolicyQualifierInfo(encoding); in testToString() local
/libcore/ojluni/src/test/java/lang/
DCompressExpandSanityTest.java37 int actualCompress(int i, int mask) { in actualCompress()
42 int actualExpand(int i, int mask) { in actualExpand()
47 int expectedCompress(int i, int mask) { in expectedCompress()
52 int expectedExpand(int i, int mask) { in expectedExpand()
58 long actualCompress(long i, long mask) { in actualCompress()
63 long actualExpand(long i, long mask) { in actualExpand()
68 long expectedCompress(long i, long mask) { in expectedCompress()
73 long expectedExpand(long i, long mask) { in expectedExpand()
DCompressExpandTest.java36 int actualCompress(int i, int mask) { in actualCompress()
41 int actualExpand(int i, int mask) { in actualExpand()
46 int expectedCompress(int i, int mask) { in expectedCompress()
51 int expectedExpand(int i, int mask) { in expectedExpand()
57 long actualCompress(long i, long mask) { in actualCompress()
62 long actualExpand(long i, long mask) { in actualExpand()
67 long expectedCompress(long i, long mask) { in expectedCompress()
72 long expectedExpand(long i, long mask) { in expectedExpand()
DAbstractCompressExpandTest.java35 static int testCompress(int i, int mask) { in testCompress()
49 static int testExpand(int i, int mask) { in testExpand()
63 static long testCompress(long i, long mask) { in testCompress()
76 static long testExpand(long i, long mask) { in testExpand()
90 abstract int actualCompress(int i, int mask); in actualCompress()
92 abstract int actualExpand(int i, int mask); in actualExpand()
94 abstract int expectedCompress(int i, int mask); in expectedCompress()
96 abstract int expectedExpand(int i, int mask); in expectedExpand()
98 abstract long actualCompress(long i, long mask); in actualCompress()
100 abstract long actualExpand(long i, long mask); in actualExpand()
[all …]
/libcore/luni/src/test/java/tests/java/security/
DIdentityTest.java97 Identity i = new IdentityStub("iii"); in testIdentityString() local
110 Identity i = new IdentityStub("iii2", s); in testIdentityStringIdentityScope() local
123 Identity i = new IdentityStub("iii"); in testAddCertificate1() local
142 Identity i = new IdentityStub("iii"); in testAddCertificate2() local
193 Identity i = new IdentityStub("iii"); in testCertificates() local
219 IdentityStub i = new IdentityStub(name); in testIdentityEquals() local
254 Identity i = new IdentityStub("testGetScope"); in testGetScope() local
299 Identity i = new IdentityStub("testSetPublicKey4"); in testSetPublicKey4() local
318 Identity i = new IdentityStub("testGetPublicKey"); in testGetPublicKey() local
327 Identity i = new IdentityStub("testGetInfo"); in testGetInfo() local
[all …]
/libcore/benchmarks/src/benchmarks/
DInvokeInterface.java489 public void doCall0Interface(Iface0 i) { i.callIface0(); } in doCall0Interface()
490 public void doCall1Interface(Iface1 i) { i.callIface1(); } in doCall1Interface()
491 public void doCall2Interface(Iface2 i) { i.callIface2(); } in doCall2Interface()
492 public void doCall3Interface(Iface3 i) { i.callIface3(); } in doCall3Interface()
493 public void doCall4Interface(Iface4 i) { i.callIface4(); } in doCall4Interface()
494 public void doCall5Interface(Iface5 i) { i.callIface5(); } in doCall5Interface()
495 public void doCall6Interface(Iface6 i) { i.callIface6(); } in doCall6Interface()
496 public void doCall7Interface(Iface7 i) { i.callIface7(); } in doCall7Interface()
497 public void doCall8Interface(Iface8 i) { i.callIface8(); } in doCall8Interface()
498 public void doCall9Interface(Iface9 i) { i.callIface9(); } in doCall9Interface()
[all …]
/libcore/ojluni/annotations/flagged_api/java/lang/
DLong.annotated.java38 public static int bitCount(long i) { throw new RuntimeException("Stub!"); } in bitCount()
49 public static long compress(long i, long mask) { throw new RuntimeException("Stub!"); } in compress()
60 public static long expand(long i, long mask) { throw new RuntimeException("Stub!"); } in expand()
74 public static long highestOneBit(long i) { throw new RuntimeException("Stub!"); } in highestOneBit()
80 public static long lowestOneBit(long i) { throw new RuntimeException("Stub!"); } in lowestOneBit()
86 public static int numberOfLeadingZeros(long i) { throw new RuntimeException("Stub!"); } in numberOfLeadingZeros()
88 public static int numberOfTrailingZeros(long i) { throw new RuntimeException("Stub!"); } in numberOfTrailingZeros()
104 public static long reverse(long i) { throw new RuntimeException("Stub!"); } in reverse()
106 public static long reverseBytes(long i) { throw new RuntimeException("Stub!"); } in reverseBytes()
108 public static long rotateLeft(long i, int distance) { throw new RuntimeException("Stub!"); } in rotateLeft()
[all …]
DInteger.annotated.java38 public static int bitCount(int i) { throw new RuntimeException("Stub!"); } in bitCount()
49 public static int compress(int i, int mask) { throw new RuntimeException("Stub!"); } in compress()
60 public static int expand(int i, int mask) { throw new RuntimeException("Stub!"); } in expand()
74 public static int highestOneBit(int i) { throw new RuntimeException("Stub!"); } in highestOneBit()
80 public static int lowestOneBit(int i) { throw new RuntimeException("Stub!"); } in lowestOneBit()
86 public static int numberOfLeadingZeros(int i) { throw new RuntimeException("Stub!"); } in numberOfLeadingZeros()
88 public static int numberOfTrailingZeros(int i) { throw new RuntimeException("Stub!"); } in numberOfTrailingZeros()
104 public static int reverse(int i) { throw new RuntimeException("Stub!"); } in reverse()
106 public static int reverseBytes(int i) { throw new RuntimeException("Stub!"); } in reverseBytes()
108 public static int rotateLeft(int i, int distance) { throw new RuntimeException("Stub!"); } in rotateLeft()
[all …]
/libcore/ojluni/src/main/java/sun/nio/ch/
DIOVecWrapper.java110 void setBuffer(int i, ByteBuffer buf, int pos, int rem) { in setBuffer()
116 void setShadow(int i, ByteBuffer buf) { in setShadow()
120 ByteBuffer getBuffer(int i) { in getBuffer()
124 int getPosition(int i) { in getPosition()
128 int getRemaining(int i) { in getRemaining()
132 ByteBuffer getShadow(int i) { in getShadow()
136 void clearRefs(int i) { in clearRefs()
141 void putBase(int i, long base) { in putBase()
149 void putLen(int i, long len) { in putLen()
DAbstractPollArrayWrapper.java56 int getEventOps(int i) { in getEventOps()
61 int getReventOps(int i) { in getReventOps()
66 int getDescriptor(int i) { in getDescriptor()
71 void putEventOps(int i, int event) { in putEventOps()
76 void putReventOps(int i, int revent) { in putReventOps()
81 void putDescriptor(int i, int fd) { in putDescriptor()
/libcore/ojluni/annotations/mmodule/java/nio/
DDirectByteBuffer.annotated.java66 public final byte get(int i) { throw new RuntimeException("Stub!"); } in get()
78 public final java.nio.ByteBuffer put(int i, byte x) { throw new RuntimeException("Stub!"); } in put()
96 public final char getChar(int i) { throw new RuntimeException("Stub!"); } in getChar()
102 public final java.nio.ByteBuffer putChar(int i, char x) { throw new RuntimeException("Stub!"); } in putChar()
111 public final short getShort(int i) { throw new RuntimeException("Stub!"); } in getShort()
117 public final java.nio.ByteBuffer putShort(int i, short x) { throw new RuntimeException("Stub!"); } in putShort()
126 public int getInt(int i) { throw new RuntimeException("Stub!"); } in getInt()
132 public final java.nio.ByteBuffer putInt(int i, int x) { throw new RuntimeException("Stub!"); } in putInt()
141 public final long getLong(int i) { throw new RuntimeException("Stub!"); } in getLong()
147 public final java.nio.ByteBuffer putLong(int i, long x) { throw new RuntimeException("Stub!"); } in putLong()
[all …]
/libcore/ojluni/annotations/sdk/nullability/java/lang/
DInteger.annotated.java38 @libcore.util.NonNull public static java.lang.String toString(int i, int radix) { throw new Runtime… in toString()
40 @libcore.util.NonNull public static java.lang.String toUnsignedString(int i, int radix) { throw new… in toUnsignedString()
42 @libcore.util.NonNull public static java.lang.String toHexString(int i) { throw new RuntimeExceptio… in toHexString()
44 @libcore.util.NonNull public static java.lang.String toOctalString(int i) { throw new RuntimeExcept… in toOctalString()
46 @libcore.util.NonNull public static java.lang.String toBinaryString(int i) { throw new RuntimeExcep… in toBinaryString()
48 @libcore.util.NonNull public static java.lang.String toString(int i) { throw new RuntimeException("… in toString()
50 @libcore.util.NonNull public static java.lang.String toUnsignedString(int i) { throw new RuntimeExc… in toUnsignedString()
68 @libcore.util.NonNull public static java.lang.Integer valueOf(int i) { throw new RuntimeException("… in valueOf()
110 public static int highestOneBit(int i) { throw new RuntimeException("Stub!"); } in highestOneBit()
112 public static int lowestOneBit(int i) { throw new RuntimeException("Stub!"); } in lowestOneBit()
[all …]
DLong.annotated.java39 @libcore.util.NonNull public static java.lang.String toString(long i, int radix) { throw new Runtim… in toString()
41 @libcore.util.NonNull public static java.lang.String toUnsignedString(long i, int radix) { throw ne… in toUnsignedString()
43 @libcore.util.NonNull public static java.lang.String toHexString(long i) { throw new RuntimeExcepti… in toHexString()
45 @libcore.util.NonNull public static java.lang.String toOctalString(long i) { throw new RuntimeExcep… in toOctalString()
47 @libcore.util.NonNull public static java.lang.String toBinaryString(long i) { throw new RuntimeExce… in toBinaryString()
49 @libcore.util.NonNull public static java.lang.String toString(long i) { throw new RuntimeException(… in toString()
51 @libcore.util.NonNull public static java.lang.String toUnsignedString(long i) { throw new RuntimeEx… in toUnsignedString()
109 public static long highestOneBit(long i) { throw new RuntimeException("Stub!"); } in highestOneBit()
111 public static long lowestOneBit(long i) { throw new RuntimeException("Stub!"); } in lowestOneBit()
113 public static int numberOfLeadingZeros(long i) { throw new RuntimeException("Stub!"); } in numberOfLeadingZeros()
[all …]
/libcore/ojluni/annotations/hiddenapi/java/lang/
DLong.java43 public static java.lang.String toString(long i, int radix) { in toString()
47 public static java.lang.String toUnsignedString(long i, int radix) { in toUnsignedString()
51 private static java.math.BigInteger toUnsignedBigInteger(long i) { in toUnsignedBigInteger()
55 public static java.lang.String toHexString(long i) { in toHexString()
59 public static java.lang.String toOctalString(long i) { in toOctalString()
63 public static java.lang.String toBinaryString(long i) { in toBinaryString()
75 public static java.lang.String toString(long i) { in toString()
79 public static java.lang.String toUnsignedString(long i) { in toUnsignedString()
83 static void getChars(long i, int index, char[] buf) { in getChars()
201 public static long highestOneBit(long i) { in highestOneBit()
[all …]
DInteger.java44 public static java.lang.String toString(int i, int radix) { in toString()
48 public static java.lang.String toUnsignedString(int i, int radix) { in toUnsignedString()
52 public static java.lang.String toHexString(int i) { in toHexString()
56 public static java.lang.String toOctalString(int i) { in toOctalString()
60 public static java.lang.String toBinaryString(int i) { in toBinaryString()
72 public static java.lang.String toString(int i) { in toString()
76 public static java.lang.String toUnsignedString(int i) { in toUnsignedString()
80 static void getChars(int i, int index, char[] buf) { in getChars()
116 public static java.lang.Integer valueOf(int i) { in valueOf()
201 public static int highestOneBit(int i) { in highestOneBit()
[all …]
/libcore/ojluni/src/test/java/util/AbstractList/
DFailFastIterator.java46 ListIterator i = copy.listIterator(); in main() local
58 ListIterator i = copy.listIterator(); in main() local
70 ListIterator i = copy.listIterator(); in main() local
/libcore/ojluni/src/main/java/java/lang/
DInteger.java155 public static String toString(int i, int radix) { in toString()
244 public static String toUnsignedString(int i, int radix) { in toUnsignedString()
291 public static String toHexString(int i) { in toHexString()
329 public static String toOctalString(int i) { in toOctalString()
361 public static String toBinaryString(int i) { in toBinaryString()
505 public static String toString(int i) { in toString()
1822 public static int bitCount(int i) { in bitCount()
1852 public static int rotateLeft(int i, int distance) { in rotateLeft()
1876 public static int rotateRight(int i, int distance) { in rotateRight()
1891 public static int reverse(int i) { in reverse()
[all …]
/libcore/ojluni/src/main/java/java/nio/
DHeapByteBuffer.java209 private int ix(int i) { in ix()
214 private long byteOffset(long i) { in byteOffset()
225 public byte get(int i) { in get()
282 public ByteBuffer put(int i, byte x) { in put()
425 byte _get(int i) { // package-private in _get()
430 void _put(int i, byte b) { // package-private in _put()
452 public char getChar(int i) { in getChar()
476 char getCharUnchecked(int i) { in getCharUnchecked()
493 public ByteBuffer putChar(int i, char x) { in putChar()
508 void putCharUnchecked(int i, char x) { in putCharUnchecked()
[all …]
DBufferMismatch.java35 int i = 0; in mismatch() local
58 int i = 0; in mismatch() local
85 int i = 0; in mismatch() local
108 int i = 0; in mismatch() local
131 int i = 0; in mismatch() local
172 int i = 0; in mismatch() local
194 int i = 0; in mismatch() local
/libcore/ojluni/annotations/hiddenapi/java/nio/
DDirectByteBuffer.java110 private long ix(int i) { in ix()
122 public final byte get(int i) { in get()
142 public final java.nio.ByteBuffer put(int i, byte x) { in put()
162 final byte _get(int i) { in _get()
166 final void _put(int i, byte b) { in _put()
174 public final char getChar(int i) { in getChar()
178 char getCharUnchecked(int i) { in getCharUnchecked()
194 public final java.nio.ByteBuffer putChar(int i, char x) { in putChar()
198 void putCharUnchecked(int i, char x) { in putCharUnchecked()
218 public final short getShort(int i) { in getShort()
[all …]
/libcore/luni/src/main/java/org/xml/sax/
DAttributeList.java110 public abstract String getName (int i); in getName()
134 public abstract String getType (int i); in getType()
150 public abstract String getValue (int i); in getValue()

12345678910>>...24