OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getConstructorId
(Results
1 - 4
of
4
) sorted by null
/external/dexmaker/src/mockito/java/com/google/dexmaker/mockito/
UnsafeAllocator.java
74
// private static native int
getConstructorId
(Class<?> c);
78
Method
getConstructorId
= ObjectStreamClass.class
79
.getDeclaredMethod("
getConstructorId
", Class.class);
80
getConstructorId
.setAccessible(true);
81
final int constructorId = (Integer)
getConstructorId
.invoke(null, Object.class);
97
// private static native long
getConstructorId
(Class<?> c);
101
Method
getConstructorId
= ObjectStreamClass.class
102
.getDeclaredMethod("
getConstructorId
", Class.class);
103
getConstructorId
.setAccessible(true);
104
final long constructorId = (Long)
getConstructorId
.invoke(null, Object.class)
[
all
...]
/libcore/luni/src/main/native/
java_io_ObjectStreamClass.cpp
59
NATIVE_METHOD(ObjectStreamClass,
getConstructorId
, "(Ljava/lang/Class;)J"),
/external/littlemock/src/com/google/testing/littlemock/
LittleMock.java
[
all
...]
/libcore/luni/src/main/java/java/io/
ObjectStreamClass.java
720
resolvedConstructorMethodId =
getConstructorId
(resolvedConstructorClass);
723
private static native long
getConstructorId
(Class<?> c);
[
all
...]
Completed in 93 milliseconds