HomeSort by relevance Sort by last modified time
    Searched refs:NativeObjRegistry (Results 1 - 5 of 5) sorted by null

  /external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
Registries.java 8 public static final NativeObjRegistry<Asset> NATIVE_ASSET_REGISTRY =
9 new NativeObjRegistry<>(Asset.class);
10 public static final NativeObjRegistry<CppAssetManager2> NATIVE_ASSET_MANAGER_REGISTRY =
11 new NativeObjRegistry<>(CppAssetManager2.class);
12 public static final NativeObjRegistry<CppApkAssets> NATIVE_APK_ASSETS_REGISTRY =
13 new NativeObjRegistry<>(CppApkAssets.class);
14 public static final NativeObjRegistry<ResTableTheme> NATIVE_THEME_REGISTRY =
15 new NativeObjRegistry<>(ResTableTheme.class);
16 public static final NativeObjRegistry<ResXMLTree> NATIVE_RES_XML_TREES =
17 new NativeObjRegistry<>(ResXMLTree.class)
    [all...]
NativeObjRegistry.java 16 public class NativeObjRegistry<T> {
27 public NativeObjRegistry(Class<T> theClass) {
31 public NativeObjRegistry(Class<T> theClass, boolean debug) {
35 public NativeObjRegistry(String name) {
39 public NativeObjRegistry(String name, boolean debug) {
58 System.out.printf("NativeObjRegistry %s: register %d -> %s%n", name, nativeId, o);
79 "NativeObjRegistry %s: register %d -> %s already registered:%n", name, nativeId, o);
88 System.out.printf("NativeObjRegistry %s: register %d -> %s%n", name, nativeId, o);
106 System.out.printf("NativeObjRegistry %s: unregister %d -> %s%n", name, nativeId, o);
114 System.out.format("NativeObjRegistry %s: Too many unregistrations:%n", name)
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowVMRuntime.java 12 import org.robolectric.res.android.NativeObjRegistry;
17 private final NativeObjRegistry<Object> nativeObjRegistry =
18 new NativeObjRegistry<>("VRRuntime.nativeObjectRegistry");
42 return nativeObjRegistry.register(obj);
50 return nativeObjRegistry.getNativeObject(address);
ShadowImageDecoder.java 24 import org.robolectric.res.android.NativeObjRegistry;
85 private static final NativeObjRegistry<CppImageDecoder> NATIVE_IMAGE_DECODER_REGISTRY =
86 new NativeObjRegistry<>(CppImageDecoder.class);
ShadowMotionEvent.java 33 import org.robolectric.res.android.NativeObjRegistry;
57 private static NativeObjRegistry<NativeInput.MotionEvent> nativeMotionEventRegistry =
58 new NativeObjRegistry<>(NativeInput.MotionEvent.class);
    [all...]

Completed in 74 milliseconds