/libcore/luni/src/main/java/java/sql/ |
D | Array.java | 51 public Object getArray(long index, int count) throws SQLException; in getArray() 70 public Object getArray(long index, int count, Map<String, Class<?>> map) in getArray() 129 public ResultSet getResultSet(long index, int count) throws SQLException; in getResultSet() 149 public ResultSet getResultSet(long index, int count, in getResultSet()
|
/libcore/luni/src/main/java/org/w3c/dom/ |
D | CharacterData.java | 82 int count) in substringData() 126 int count) in deleteData() 149 int count, in replaceData()
|
/libcore/support/src/test/java/tests/support/ |
D | Support_StringReader.java | 30 private int count; field in Support_StringReader 148 public int read(char buf[], int offset, int count) throws IOException { in read() 228 public long skip(long count) throws IOException { in skip()
|
D | Support_StringWriter.java | 113 public void write(char[] buf, int offset, int count) { in write() 172 public void write(String str, int offset, int count) { in write()
|
/libcore/luni/src/test/java/libcore/java/util/zip/ |
D | GZIPInputStreamTest.java | 52 long count; in testSkip() local 66 int count; in gunzip() local
|
D | DeflaterInputStreamTest.java | 56 int count; in inflate() local 69 int count; in testReadWithBuffer() local
|
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
D | CharacterDataImpl.java | 46 public void deleteData(int offset, int count) throws DOMException { in deleteData() 78 public void replaceData(int offset, int count, String arg) in replaceData() 91 public String substringData(int offset, int count) throws DOMException { in substringData()
|
/libcore/luni/src/main/native/ |
D | toStringArray.h | 25 size_t count = (*counter)(); in toStringArray() local 45 size_t count = (*counter)(); in toStringArray16() local
|
D | libcore_io_Memory.cpp | 81 static inline void swapShorts(jshort* dstShorts, const jshort* srcShorts, size_t count) { in swapShorts() 109 static inline void swapInts(jint* dstInts, const jint* srcInts, size_t count) { in swapInts() 124 static inline void swapLongs(jlong* dstLongs, const jlong* srcLongs, size_t count) { in swapLongs() 186 …JNIEnv* env, jclass, jlong srcAddress, jcharArray dst, jint dstOffset, jint count, jboolean swap) { in Memory_peekCharArray() 190 …IEnv* env, jclass, jlong srcAddress, jdoubleArray dst, jint dstOffset, jint count, jboolean swap) { in Memory_peekDoubleArray() 194 …NIEnv* env, jclass, jlong srcAddress, jfloatArray dst, jint dstOffset, jint count, jboolean swap) { in Memory_peekFloatArray() 198 …(JNIEnv* env, jclass, jlong srcAddress, jintArray dst, jint dstOffset, jint count, jboolean swap) { in Memory_peekIntArray() 202 …JNIEnv* env, jclass, jlong srcAddress, jlongArray dst, jint dstOffset, jint count, jboolean swap) { in Memory_peekLongArray() 206 …NIEnv* env, jclass, jlong srcAddress, jshortArray dst, jint dstOffset, jint count, jboolean swap) { in Memory_peekShortArray() 238 …JNIEnv* env, jclass, jlong dstAddress, jcharArray src, jint srcOffset, jint count, jboolean swap) { in Memory_pokeCharArray() [all …]
|
/libcore/luni/src/main/java/java/io/ |
D | FilterWriter.java | 90 public void write(char[] buffer, int offset, int count) throws IOException { in write() 127 public void write(String str, int offset, int count) throws IOException { in write()
|
D | BufferedReader.java | 157 int count = in.read(buf, pos, buf.length - pos); in fillBuf() local 284 int count = available >= outstanding ? outstanding : available; in read() local 310 int count = in.read(buffer, offset, outstanding); in read() local 323 int count = length - outstanding; in read() local
|
D | BufferedWriter.java | 184 public void write(char[] buffer, int offset, int count) throws IOException { in write() 264 public void write(String str, int offset, int count) throws IOException { in write()
|
D | StringWriter.java | 118 public void write(char[] chars, int offset, int count) { in write() 165 public void write(String str, int offset, int count) { in write()
|
D | Writer.java | 113 public abstract void write(char[] buf, int offset, int count) throws IOException; in write() 160 public void write(String str, int offset, int count) throws IOException { in write()
|
/libcore/luni/src/test/java/libcore/java/io/ |
D | OldFilterWriterTest.java | 48 public void write(char[] buffer, int offset, int count) throws IOException { in write() 56 public void write(String str, int offset, int count) throws IOException { in write() 60 public long skip(long count) throws IOException { in skip()
|
D | InputStreamReaderTest.java | 38 int count = reader.read(buffer); in testReadDoesNotBlockUnnecessarily() local
|
/libcore/luni/src/main/java/java/lang/ |
D | StringIndexOutOfBoundsException.java | 78 public StringIndexOutOfBoundsException(String s, int offset, int count) { in StringIndexOutOfBoundsException() 87 int count) { in StringIndexOutOfBoundsException()
|
D | CaseMapper.java | 46 public static String toLowerCase(Locale locale, String s, char[] value, int offset, int count) { in toLowerCase() 83 private static boolean isFinalSigma(char[] value, int offset, int count, int index) { in isFinalSigma() 142 public static String toUpperCase(Locale locale, String s, char[] value, int offset, int count) { in toUpperCase()
|
/libcore/dalvik/src/main/java/dalvik/system/profiler/ |
D | AsciiHprofWriter.java | 60 int count = sample.count; in write() local 79 int count = sample.count; in write() local
|
D | DalvikThreadSampler.java | 40 int count = VMStack.fillStackTraceElements(thread, mutableStackTraceElements[depth]); in getStackTrace() local
|
/libcore/luni/src/main/java/java/util/concurrent/ |
D | CountDownLatch.java | 135 Sync(int count) { in Sync() 169 public CountDownLatch(int count) { in CountDownLatch()
|
D | LinkedBlockingQueue.java | 109 private final AtomicInteger count = new AtomicInteger(); field in LinkedBlockingQueue 308 final AtomicInteger count = this.count; in put() local 349 final AtomicInteger count = this.count; in offer() local 382 final AtomicInteger count = this.count; in offer() local 408 final AtomicInteger count = this.count; in take() local 431 final AtomicInteger count = this.count; in poll() local 453 final AtomicInteger count = this.count; in poll() local
|
/libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/ |
D | NamespaceSupportTest.java | 75 int count; in testPush_PopContext() local 99 int count; in testReset() local
|
/libcore/luni/src/test/java/tests/api/java/util/ |
D | WeakHashMapTest.java | 208 int count = 0; in test_entrySet() local 316 int count = 0; in test_keySet() local 353 int count = 0; in test_values() local
|
/libcore/luni/src/test/java/libcore/java/lang/ref/ |
D | FinalizeTest.java | 125 AtomicInteger count = new AtomicInteger(); in testSystemRunFinalizationReturnsEvenIfQueueIsNonEmpty() local 136 int count = counter.incrementAndGet(); in createChainedFinalizer() local
|