Home
last modified time | relevance | path

Searched defs:slot (Results 1 – 6 of 6) sorted by relevance

/libcore/luni/src/main/java/java/io/
DEmulatedFields.java118 ObjectSlot slot = findSlot(name, null); in defaulted() local
147 ObjectSlot slot = slotsToSerialize[i]; in findSlot() local
174 ObjectSlot slot = new ObjectSlot(); in findSlot() local
186 ObjectSlot slot = findSlot(name, type); in findMandatorySlot() local
209 ObjectSlot slot = findMandatorySlot(name, byte.class); in get() local
229 ObjectSlot slot = findMandatorySlot(name, char.class); in get() local
249 ObjectSlot slot = findMandatorySlot(name, double.class); in get() local
269 ObjectSlot slot = findMandatorySlot(name, float.class); in get() local
289 ObjectSlot slot = findMandatorySlot(name, int.class); in get() local
309 ObjectSlot slot = findMandatorySlot(name, long.class); in get() local
[all …]
/libcore/libdvm/src/main/java/java/lang/reflect/
DField.java74 private int slot; field in Field
94 … private Field(Class<?> declaringClass, Class<?> type, String name, int slot, int fieldDexIndex) { in Field()
139 native private Object[] getSignatureAnnotation(Class declaringClass, int slot); in getSignatureAnnotation()
203 private static native Annotation[] getDeclaredAnnotations(Class declaringClass, int slot); in getDeclaredAnnotations()
212 Class<?> declaringClass, int slot, Class<A> annotationType); in getAnnotation()
221 Class<?> declaringClass, int slot, Class<? extends Annotation> annotationType); in isAnnotationPresent()
479 private native int getFieldModifiers(Class<?> declaringClass, int slot); in getFieldModifiers()
877 private native Object getField(Object o, Class<?> declaringClass, Class<?> type, int slot, in getField()
880 private native double getDField(Object o, Class<?> declaringClass, Class<?> type, int slot, in getDField()
883 private native int getIField(Object o, Class<?> declaringClass, Class<?> type, int slot, in getIField()
[all …]
DMethod.java81 private int slot; field in Method
115 …] paramTypes, Class<?>[] exceptTypes, Class<?> returnType, String name, int slot, int methodDexInd… in Method()
150 static native Object[] getSignatureAnnotation(Class declaringClass, int slot); in getSignatureAnnotation()
260 static native Annotation[] getDeclaredAnnotations(Class<?> declaringClass, int slot); in getDeclaredAnnotations()
269 Class<?> declaringClass, int slot, Class<A> annotationType); in getAnnotation()
278 Class<?> declaringClass, int slot, Class<? extends Annotation> annotationType); in isAnnotationPresent()
310 static native Annotation[][] getParameterAnnotations(Class declaringClass, int slot); in getParameterAnnotations()
355 native private Object getDefaultValue(Class declaringClass, int slot); in getDefaultValue()
423 static native int getMethodModifiers(Class<?> declaringClass, int slot); in getMethodModifiers()
519 Class<?>[] parameterTypes, Class<?> returnType, int slot, boolean noAccessCheck) in invokeNative()
DConstructor.java75 int slot; field in Constructor
99 …private Constructor(Class<T> declaringClass, Class<?>[] ptypes, Class<?>[] extypes, int slot, int … in Constructor()
427 Class<?>[] parameterTypes, int slot, in constructNative()
/libcore/luni/src/test/java/libcore/java/util/
DOldAndroidHashMapTest.java120 int slot = 0; in testKeyIterator() local
155 int slot = 0; in testValueIterator() local
190 int slot = 0; in testEntryIterator() local
/libcore/luni/src/main/java/java/util/concurrent/
DExchanger.java315 private volatile Node slot; field in Exchanger