/libcore/luni/src/main/java/libcore/icu/ |
D | NativeCollation.java | 25 public static native void closeCollator(long address); in closeCollator() 26 public static native int compare(long address, String source, String target); in compare() 27 public static native int getAttribute(long address, int type); in getAttribute() 28 public static native long getCollationElementIterator(long address, String source); in getCollationElementIterator() 29 public static native String getRules(long address); in getRules() 30 public static native byte[] getSortKey(long address, String source); in getSortKey() 36 public static native long safeClone(long address); in safeClone() 37 public static native void setAttribute(long address, int type, int value); in setAttribute() 40 public static native void closeElements(long address); in closeElements() 41 public static native int getMaxExpansion(long address, int order); in getMaxExpansion() [all …]
|
D | NativePluralRules.java | 35 private final long address; field in NativePluralRules 37 private NativePluralRules(long address) { in NativePluralRules() 65 private static native void finalizeImpl(long address); in finalizeImpl() 67 private static native int quantityForIntImpl(long address, int value); in quantityForIntImpl()
|
D | CollationElementIteratorICU.java | 154 private CollationElementIteratorICU(long address) { in CollationElementIteratorICU() 178 private final long address; field in CollationElementIteratorICU
|
/libcore/luni/src/main/java/libcore/io/ |
D | Memory.java | 153 public static native byte peekByte(long address); in peekByte() 155 public static int peekInt(long address, boolean swap) { in peekInt() 162 private static native int peekIntNative(long address); in peekIntNative() 164 public static long peekLong(long address, boolean swap) { in peekLong() 171 private static native long peekLongNative(long address); in peekLongNative() 173 public static short peekShort(long address, boolean swap) { in peekShort() 180 private static native short peekShortNative(long address); in peekShortNative() 182 public static native void peekByteArray(long address, byte[] dst, int dstOffset, int byteCount); in peekByteArray() 183 …public static native void peekCharArray(long address, char[] dst, int dstOffset, int charCount, bo… in peekCharArray() 184 …public static native void peekDoubleArray(long address, double[] dst, int dstOffset, int doubleCou… in peekDoubleArray() [all …]
|
D | MemoryMappedFile.java | 36 private long address; field in MemoryMappedFile 42 public MemoryMappedFile(long address, long size) { in MemoryMappedFile() 53 long address = Libcore.os.mmap(0L, size, PROT_READ, MAP_SHARED, fd, 0); in mmapRO() local
|
D | NioBufferIterator.java | 28 private final long address; field in NioBufferIterator 34 NioBufferIterator(long address, int size, boolean swap) { in NioBufferIterator()
|
/libcore/luni/src/main/native/ |
D | libcore_icu_NativeCollation.cpp | 84 static UCollator* toCollator(jlong address) { in toCollator() 88 static CollationElements* toCollationElements(jlong address) { in toCollationElements() 92 static void NativeCollation_closeCollator(JNIEnv*, jclass, jlong address) { in NativeCollation_closeCollator() 96 static void NativeCollation_closeElements(JNIEnv* env, jclass, jlong address) { in NativeCollation_closeElements() 102 static jint NativeCollation_compare(JNIEnv* env, jclass, jlong address, jstring javaLhs, jstring ja… in NativeCollation_compare() 114 static jint NativeCollation_getAttribute(JNIEnv* env, jclass, jlong address, jint type) { in NativeCollation_getAttribute() 121 static jlong NativeCollation_getCollationElementIterator(JNIEnv* env, jclass, jlong address, jstrin… in NativeCollation_getCollationElementIterator() 137 static jint NativeCollation_getMaxExpansion(JNIEnv*, jclass, jlong address, jint order) { in NativeCollation_getMaxExpansion() 141 static jint NativeCollation_getOffset(JNIEnv*, jclass, jlong address) { in NativeCollation_getOffset() 145 static jstring NativeCollation_getRules(JNIEnv* env, jclass, jlong address) { in NativeCollation_getRules() [all …]
|
D | libcore_icu_NativePluralRules.cpp | 28 static icu::PluralRules* toPluralRules(jlong address) { in toPluralRules() 32 static void NativePluralRules_finalizeImpl(JNIEnv*, jclass, jlong address) { in NativePluralRules_finalizeImpl() 58 static jint NativePluralRules_quantityForIntImpl(JNIEnv*, jclass, jlong address, jint value) { in NativePluralRules_quantityForIntImpl()
|
D | libcore_icu_NativeConverter.cpp | 60 static UConverter* toUConverter(jlong address) { in toUConverter() 170 static void NativeConverter_closeConverter(JNIEnv*, jclass, jlong address) { in NativeConverter_closeConverter() 182 static jint NativeConverter_encode(JNIEnv* env, jclass, jlong address, in NativeConverter_encode() 238 static jint NativeConverter_decode(JNIEnv* env, jclass, jlong address, in NativeConverter_decode() 294 static void NativeConverter_resetByteToChar(JNIEnv*, jclass, jlong address) { in NativeConverter_resetByteToChar() 301 static void NativeConverter_resetCharToByte(JNIEnv*, jclass, jlong address) { in NativeConverter_resetCharToByte() 308 static jint NativeConverter_getMaxBytesPerChar(JNIEnv*, jclass, jlong address) { in NativeConverter_getMaxBytesPerChar() 313 static jint NativeConverter_getMinBytesPerChar(JNIEnv*, jclass, jlong address) { in NativeConverter_getMinBytesPerChar() 318 static jfloat NativeConverter_getAveBytesPerChar(JNIEnv*, jclass, jlong address) { in NativeConverter_getAveBytesPerChar() 387 static void NativeConverter_setCallbackEncode(JNIEnv* env, jclass, jlong address, in NativeConverter_setCallbackEncode() [all …]
|
D | java_util_regex_Matcher.cpp | 32 static icu::RegexMatcher* toRegexMatcher(jlong address) { in toRegexMatcher() 44 MatcherAccessor(JNIEnv* env, jlong address, jstring javaInput, bool reset) { in MatcherAccessor() 65 MatcherAccessor(JNIEnv* env, jlong address) { in MatcherAccessor() 98 void init(JNIEnv* env, jlong address) { in init() 119 static void Matcher_closeImpl(JNIEnv*, jclass, jlong address) { in Matcher_closeImpl()
|
/libcore/luni/src/main/java/java/net/ |
D | InterfaceAddress.java | 30 private final InetAddress address; field in InterfaceAddress 42 InterfaceAddress(Inet4Address address, Inet4Address broadcastAddress, Inet4Address mask) { in InterfaceAddress() 51 InterfaceAddress(Inet6Address address, short prefixLength) { in InterfaceAddress()
|
D | Proxy.java | 38 private SocketAddress address; field in Proxy 92 public SocketAddress address() { in address() method in Proxy
|
D | SocketImpl.java | 39 protected InetAddress address; field in SocketImpl 87 protected abstract void bind(InetAddress address, int port) throws IOException; in bind() 120 protected abstract void connect(InetAddress address, int port) in connect()
|
D | ProxySelector.java | 129 public abstract void connectFailed(URI uri, SocketAddress address, IOException failure); in connectFailed()
|
/libcore/luni/src/test/java/libcore/java/nio/channels/ |
D | ServerSocketChannelTest.java | 97 InetSocketAddress address = in test_bind_nullBindsToAll() local 128 InetSocketAddress address = in test_bind_loopback() local 139 private static boolean canConnect(InetSocketAddress address) { in canConnect()
|
/libcore/luni/src/main/java/java/nio/ |
D | MemoryBlock.java | 38 private MemoryMappedBlock(long address, long byteCount) { in MemoryMappedBlock() 70 private NonMovableHeapBlock(byte[] array, long address, long byteCount) { in NonMovableHeapBlock() 90 private UnmanagedBlock(long address, long byteCount) { in UnmanagedBlock() 95 protected long address; field in MemoryBlock 122 long address = Libcore.os.mmap(0L, size, prot, flags, fd, offset); in mmap() local 132 long address = runtime.addressOf(array); in allocate() local 136 public static MemoryBlock wrapFromJni(long address, long byteCount) { in wrapFromJni() 140 private MemoryBlock(long address, long size) { in MemoryBlock()
|
D | NIOAccess.java | 30 long address = b.effectiveDirectAddress; in getBasePointer() local
|
/libcore/luni/src/main/java/java/nio/channels/ |
D | SocketChannel.java | 115 public static SocketChannel open(SocketAddress address) throws IOException { in open() 198 public abstract boolean connect(SocketAddress address) throws IOException; in connect()
|
D | DatagramChannel.java | 130 public abstract DatagramChannel connect(SocketAddress address) in connect() 219 public abstract int send(ByteBuffer source, SocketAddress address) throws IOException; in send()
|
/libcore/luni/src/main/java/java/nio/charset/ |
D | CharsetEncoderICU.java | 68 long address = 0; in newInstance() local 84 private static byte[] makeReplacement(String icuCanonicalName, long address) { in makeReplacement() 94 …U(Charset cs, float averageBytesPerChar, float maxBytesPerChar, byte[] replacement, long address) { in CharsetEncoderICU()
|
/libcore/support/src/test/java/tests/net/ |
D | StuckServer.java | 47 private InetSocketAddress address; field in StuckServer
|
/libcore/luni/src/test/resources/wf/ |
D | staff.dtd | 5 <!ELEMENT address (#PCDATA)> element
|
/libcore/dom/src/test/resources/ |
D | staff.dtd | 5 <!ELEMENT address (#PCDATA)> element
|
/libcore/luni/src/test/resources/systemid/ |
D | staff.dtd | 5 <!ELEMENT address (#PCDATA)> element
|
/libcore/luni/src/test/resources/nwf/ |
D | staff.dtd | 5 <!ELEMENT address (#PCDATA)> element
|