HomeSort by relevance Sort by last modified time
    Searched defs:BaseObject (Results 1 - 6 of 6) sorted by null

  /external/replicaisland/src/com/replica/replicaisland/
BaseObject.java 23 * BaseObject. BaseObject also defines the interface for the object-wide system registry.
25 public abstract class BaseObject extends AllocationGuard {
28 public BaseObject() {
37 public void update(float timeDelta, BaseObject parent) {
MultiTouchFilter.java 22 BaseObject.sSystemRegistry.inputSystem.touchUp(id,
26 BaseObject.sSystemRegistry.inputSystem.touchDown(id,
Game.java 67 BaseObject.sSystemRegistry.openGLSystem = new OpenGLSystem(null);
69 BaseObject.sSystemRegistry.customToastSystem = new CustomToastSystem(context);
80 BaseObject.sSystemRegistry.contextParameters = params;
91 BaseObject.sSystemRegistry.shortTermTextureLibrary = shortTermTextureLibrary;
95 BaseObject.sSystemRegistry.longTermTextureLibrary = longTermTextureLibrary;
98 BaseObject.sSystemRegistry.bufferLibrary = new BufferLibrary();
102 BaseObject.sSystemRegistry.soundSystem = new SoundSystem();
108 BaseObject.sSystemRegistry.inputSystem = input;
109 BaseObject.sSystemRegistry.registerForReset(input);
117 BaseObject.sSystemRegistry.inputGameInterface = inputInterface
    [all...]
GameThread.java 75 BaseObject.sSystemRegistry.renderSystem.swap(mRenderer, x, y);
105 SoundSystem sound = BaseObject.sSystemRegistry.soundSystem;
108 BaseObject.sSystemRegistry.inputSystem.releaseAllKeys();
122 BaseObject.sSystemRegistry.renderSystem.emptyQueues(mRenderer);
  /frameworks/base/core/tests/coretests/src/android/content/pm/
ParceledListSliceTest.java 139 List<BaseObject> list = new ArrayList<BaseObject>();
161 * Write a ParcelableListSlice that uses the BaseObject base class as the Creator.
165 private static <T extends BaseObject> void writeEvilParceledListSlice(Parcel dest, List<T> list) {
173 dest.writeString(BaseObject.class.getName());
182 public abstract static class BaseObject implements Parcelable {
197 * the possible exploit when unparceling an object with the BaseObject written as
200 public static final Creator<BaseObject> CREATOR = new Creator<BaseObject>() {
202 public BaseObject createFromParcel(Parcel source)
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]

Completed in 307 milliseconds