Home
last modified time | relevance | path

Searched refs:EntryType (Results 1 – 10 of 10) sorted by relevance

/frameworks/compile/mclinker/include/mcld/Target/
DKeyEntryMap.h24 typedef ENTRY EntryType; typedef
28 EntryPair(EntryType* pEntry1, EntryType* pEntry2) in EntryPair()
31 EntryType* entry1;
32 EntryType* entry2;
38 EntryType* entry_ptr;
56 const EntryType* lookUp(const KeyType& pKey) const;
57 EntryType* lookUp(const KeyType& pKey);
60 const EntryType* lookUpFirstEntry(const KeyType& pKey) const;
61 EntryType* lookUpFirstEntry(const KeyType& pKey);
64 const EntryType* lookUpSecondEntry(const KeyType& pKey) const;
[all …]
/frameworks/base/rs/java/android/renderscript/
DFileA3D.java46 public enum EntryType { enum in FileA3D
61 EntryType(int id) { in EntryType() method in FileA3D.EntryType
65 static EntryType toEntryType(int intID) { in toEntryType()
66 return EntryType.values()[intID]; in toEntryType()
82 EntryType mEntryType;
106 public EntryType getEntryType() { in getEntryType()
139 if(entry.mEntryType == EntryType.UNKNOWN) { in internalCreate()
161 IndexEntry(RenderScript rs, int index, long id, String name, EntryType type) { in IndexEntry()
193 … mFileEntries[i] = new IndexEntry(mRS, i, getID(mRS), names[i], EntryType.toEntryType(ids[i])); in initEntries()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/
Dmap_field_lite.h51 default_enum_value> EntryType; typedef
72 EntryType* NewEntry() const;
75 EntryType* NewEnumEntryWrapper(const Key& key, const T t) const;
78 EntryType* NewEntryWrapper(const Key& key, const T& t) const;
220 #define EntryType \ macro
227 EntryType*
231 return new EntryType(); in NewEntry()
233 return Arena::CreateMessage<EntryType>(arena_); in NewEntry()
241 EntryType*
245 return EntryType::EnumWrap(key, t, arena_); in NewEnumEntryWrapper()
[all …]
Dmap_field_inl.h189 : default_entry_(down_cast<const EntryType*>(default_entry)) {} in MapField()
200 default_entry_(down_cast<const EntryType*>(default_entry)) {} in MapField()
405 RepeatedPtrField<EntryType>* repeated_field = in SyncRepeatedFieldWithMapNoLock()
406 reinterpret_cast<RepeatedPtrField<EntryType>*>( in SyncRepeatedFieldWithMapNoLock()
415 EntryType* new_entry = in SyncRepeatedFieldWithMapNoLock()
416 down_cast<EntryType*>(default_entry_->New(MapFieldBase::arena_)); in SyncRepeatedFieldWithMapNoLock()
431 RepeatedPtrField<EntryType>* repeated_field = in SyncMapWithRepeatedFieldNoLock()
432 reinterpret_cast<RepeatedPtrField<EntryType>*>( in SyncMapWithRepeatedFieldNoLock()
436 for (typename RepeatedPtrField<EntryType>::iterator it = in SyncMapWithRepeatedFieldNoLock()
479 default_entry_ = down_cast<const EntryType*>( in InitDefaultEntryOnce()
Dmap_field.h228 EntryType; typedef
280 void SetDefaultEntryOnce(const EntryType* default_entry) const;
293 mutable const EntryType* default_entry_;
Dmap_entry.h126 Key, Value, kKeyFieldType, kValueFieldType, default_enum_value> EntryType; typedef
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
DTrackerEntry.java73 enum EntryType { enum in TrackerEntry
79 private EntryType mType;
81 private TrackerEntry(String tag, EntryType type) { in TrackerEntry()
88 this(loc.getProvider(), EntryType.LOCATION_TYPE); in TrackerEntry()
108 TrackerEntry entry = new TrackerEntry(tag, EntryType.LOG_TYPE); in createEntry()
119 EntryType getType() { in getType()
174 if (mType == EntryType.LOCATION_TYPE) { in getAsContentValues()
212 TrackerEntry entry = new TrackerEntry(tag, EntryType.valueOf(sType)); in createEntry()
214 if (entry.getType() == EntryType.LOCATION_TYPE) { in createEntry()
DKMLFormatter.java19 import com.android.locationtracker.data.TrackerEntry.EntryType;
46 if (entry.getType() == EntryType.LOCATION_TYPE) { in getOutput()
DCSVFormatter.java19 import com.android.locationtracker.data.TrackerEntry.EntryType;
51 if (entry.getType() == EntryType.LOCATION_TYPE) { in getOutput()
/frameworks/ml/nn/common/
DUtils.cpp104 template <typename EntryType, uint32_t entryCount, uint32_t entryCountOEM>
105 EntryType tableLookup(const EntryType (&table)[entryCount], in tableLookup()
106 const EntryType (&tableOEM)[entryCountOEM], in tableLookup()
114 return EntryType(); in tableLookup()