Searched defs:EntryType (Results 1 - 2 of 2) sorted by path

/frameworks/base/graphics/java/android/renderscript/
H A DFileA3D.java47 public enum EntryType { enum in class:FileA3D
59 EntryType(int id) { method in class:FileA3D.EntryType
63 static EntryType toEntryType(int intID) {
64 return EntryType.values()[intID];
79 EntryType mEntryType;
100 public EntryType getEntryType() {
130 if(entry.mEntryType == EntryType.UNKNOWN) {
149 IndexEntry(RenderScript rs, int index, int id, String name, EntryType type) {
180 mFileEntries[i] = new IndexEntry(mRS, i, getID(), names[i], EntryType.toEntryType(ids[i]));
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
H A DTrackerEntry.java73 enum EntryType { enum in class:TrackerEntry
79 private EntryType mType;
81 private TrackerEntry(String tag, EntryType type) {
88 this(loc.getProvider(), EntryType.LOCATION_TYPE);
108 TrackerEntry entry = new TrackerEntry(tag, EntryType.LOG_TYPE);
119 EntryType getType() {
174 if (mType == EntryType.LOCATION_TYPE) {
212 TrackerEntry entry = new TrackerEntry(tag, EntryType.valueOf(sType));
214 if (entry.getType() == EntryType.LOCATION_TYPE) {

Completed in 53 milliseconds