HomeSort by relevance Sort by last modified time
    Searched refs:EntryType (Results 1 - 25 of 33) sorted by null

1 2

  /external/google-breakpad/src/processor/
address_map-inl.h 47 template<typename AddressType, typename EntryType>
48 bool AddressMap<AddressType, EntryType>::Store(const AddressType &address,
49 const EntryType &entry) {
62 template<typename AddressType, typename EntryType>
63 bool AddressMap<AddressType, EntryType>::Retrieve(
65 EntryType *entry, AddressType *entry_address) const {
86 template<typename AddressType, typename EntryType>
87 void AddressMap<AddressType, EntryType>::Clear() {
address_map.h 48 template<typename AddressType, typename EntryType>
56 bool Store(const AddressType &address, const EntryType &entry);
64 EntryType *entry, AddressType *entry_address) const;
71 friend class AddressMapSerializer<AddressType, EntryType>;
75 typedef std::map<AddressType, EntryType> AddressToEntryMap;
79 // Maps the address of each entry to an EntryType.
contained_range_map.h 72 template<typename AddressType, typename EntryType>
91 const EntryType &entry);
98 bool RetrieveRange(const AddressType &address, EntryType *entry) const;
108 friend class ContainedRangeMapSerializer<AddressType, EntryType>;
121 ContainedRangeMap(const AddressType &base, const EntryType &entry,
138 const EntryType entry_;
static_contained_range_map-inl.h 45 template<typename AddressType, typename EntryType>
46 StaticContainedRangeMap<AddressType, EntryType>::StaticContainedRangeMap(
50 entry_ptr_(reinterpret_cast<const EntryType *>(
58 template<typename AddressType, typename EntryType>
59 bool StaticContainedRangeMap<AddressType, EntryType>::RetrieveRange(
60 const AddressType &address, const EntryType *&entry) const {
static_range_map.h 48 // EntryType could be a complex type, so we retrieve its pointer instead.
49 template<typename AddressType, typename EntryType>
58 bool RetrieveRange(const AddressType &address, const EntryType *&entry,
66 bool RetrieveNearestRange(const AddressType &address, const EntryType *&entry,
77 bool RetrieveRangeAtIndex(int index, const EntryType *&entry,
91 const EntryType* entryptr() const {
92 return reinterpret_cast<const EntryType*>(this + sizeof(AddressType));
static_address_map-inl.h 45 template<typename AddressType, typename EntryType>
46 bool StaticAddressMap<AddressType, EntryType>::Retrieve(
48 const EntryType *&entry, AddressType *entry_address) const {
static_address_map.h 50 // EntryType could be a complex type, so we retrieve its pointer instead.
51 template<typename AddressType, typename EntryType>
63 const EntryType *&entry, AddressType *entry_address) const;
69 typedef StaticMap<AddressType, EntryType> AddressToEntryMap;
static_contained_range_map.h 49 template<typename AddressType, typename EntryType>
60 bool RetrieveRange(const AddressType &address, const EntryType *&entry) const;
85 const EntryType *entry_ptr_;
range_map.h 52 template<typename AddressType, typename EntryType>
62 const EntryType &entry);
67 bool RetrieveRange(const AddressType &address, EntryType *entry,
75 bool RetrieveNearestRange(const AddressType &address, EntryType *entry,
86 bool RetrieveRangeAtIndex(int index, EntryType *entry,
100 friend class RangeMapSerializer<AddressType, EntryType>;
104 Range(const AddressType &base, const EntryType &entry)
108 EntryType entry() const { return entry_; }
116 const EntryType entry_;
124 // Maps the high address of each range to a EntryType
    [all...]
static_range_map-inl.h 44 template<typename AddressType, typename EntryType>
45 bool StaticRangeMap<AddressType, EntryType>::RetrieveRange(
46 const AddressType &address, const EntryType *&entry,
60 // Make sure AddressType and EntryType are copyable basic types
75 template<typename AddressType, typename EntryType>
76 bool StaticRangeMap<AddressType, EntryType>::RetrieveNearestRange(
77 const AddressType &address, const EntryType *&entry,
104 template<typename AddressType, typename EntryType>
105 bool StaticRangeMap<AddressType, EntryType>::RetrieveRangeAtIndex(
106 int index, const EntryType *&entry
    [all...]
range_map-inl.h 49 template<typename AddressType, typename EntryType>
50 bool RangeMap<AddressType, EntryType>::StoreRange(const AddressType &base,
52 const EntryType &entry) {
117 template<typename AddressType, typename EntryType>
118 bool RangeMap<AddressType, EntryType>::RetrieveRange(
119 const AddressType &address, EntryType *entry,
146 template<typename AddressType, typename EntryType>
147 bool RangeMap<AddressType, EntryType>::RetrieveNearestRange(
148 const AddressType &address, EntryType *entry,
177 template<typename AddressType, typename EntryType>
    [all...]
contained_range_map-inl.h 49 template<typename AddressType, typename EntryType>
50 ContainedRangeMap<AddressType, EntryType>::~ContainedRangeMap() {
56 template<typename AddressType, typename EntryType>
57 bool ContainedRangeMap<AddressType, EntryType>::StoreRange(
58 const AddressType &base, const AddressType &size, const EntryType &entry) {
150 template<typename AddressType, typename EntryType>
151 bool ContainedRangeMap<AddressType, EntryType>::RetrieveRange(
152 const AddressType &address, EntryType *entry) const {
181 template<typename AddressType, typename EntryType>
182 void ContainedRangeMap<AddressType, EntryType>::Clear()
    [all...]
map_serializers.h 138 template<class AddrType, class EntryType>
142 size_t SizeOf(const ContainedRangeMap<AddrType, EntryType> *m) const;
147 char* Write(const ContainedRangeMap<AddrType, EntryType> *m,
154 char* Serialize(const ContainedRangeMap<AddrType, EntryType> *m,
159 typedef std::map<AddrType, ContainedRangeMap<AddrType, EntryType>*> Map;
163 SimpleSerializer<EntryType> entry_serializer_;
basic_code_modules.h 49 template<typename AddressType, typename EntryType> class RangeMap;
map_serializers_unittest.cc 50 typedef int32_t EntryType;
63 std::map<AddrType, EntryType> std_map_;
64 google_breakpad::StdMapSerializer<AddrType, EntryType> serializer_;
135 google_breakpad::AddressMap<AddrType, EntryType> address_map_;
136 google_breakpad::AddressMapSerializer<AddrType, EntryType> serializer_;
210 google_breakpad::RangeMap<AddrType, EntryType> range_map_;
211 google_breakpad::RangeMapSerializer<AddrType, EntryType> serializer_;
283 google_breakpad::ContainedRangeMap<AddrType, EntryType> crm_map_;
284 google_breakpad::ContainedRangeMapSerializer<AddrType, EntryType> serializer_;
static_range_map_unittest.cc 46 typedef int EntryType;
47 typedef google_breakpad::StaticRangeMap< AddressType, EntryType > TestMap;
48 typedef google_breakpad::RangeMap< AddressType, EntryType > RMap;
60 EntryType id;
196 RangeMapSerializer<AddressType, EntryType> serializer_;
246 const EntryType* id;
314 const EntryType* last_entry = 0;
315 const EntryType* entry;
map_serializers-inl.h 189 template<class AddrType, class EntryType>
190 size_t ContainedRangeMapSerializer<AddrType, EntryType>::SizeOf(
191 const ContainedRangeMap<AddrType, EntryType> *m) const {
211 template<class AddrType, class EntryType>
212 char *ContainedRangeMapSerializer<AddrType, EntryType>::Write(
213 const ContainedRangeMap<AddrType, EntryType> *m, char *dest) const {
248 template<class AddrType, class EntryType>
249 char *ContainedRangeMapSerializer<AddrType, EntryType>::Serialize(
250 const ContainedRangeMap<AddrType, EntryType> *m, unsigned int *size) const {
  /frameworks/compile/mclinker/include/mcld/Target/
KeyEntryMap.h 24 typedef ENTRY EntryType;
28 EntryPair(EntryType* pEntry1, EntryType* pEntry2)
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)
    [all...]
  /frameworks/base/rs/java/android/renderscript/
FileA3D.java 45 public enum EntryType {
59 EntryType(int id) {
63 static EntryType toEntryType(int intID) {
64 return EntryType.values()[intID];
80 EntryType mEntryType;
103 public EntryType getEntryType() {
135 if(entry.mEntryType == EntryType.UNKNOWN) {
157 IndexEntry(RenderScript rs, int index, long id, String name, EntryType type) {
189 mFileEntries[i] = new IndexEntry(mRS, i, getID(mRS), names[i], EntryType.toEntryType(ids[i]));
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
map_field_lite.h 51 default_enum_value> EntryType;
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 \
227 EntryType*
231 return new EntryType();
233 return Arena::CreateMessage<EntryType>(arena_);
241 EntryType*
245 return EntryType::EnumWrap(key, t, arena_)
    [all...]
map_field_inl.h 189 : default_entry_(down_cast<const EntryType*>(default_entry)) {}
200 default_entry_(down_cast<const EntryType*>(default_entry)) {}
405 RepeatedPtrField<EntryType>* repeated_field =
406 reinterpret_cast<RepeatedPtrField<EntryType>*>(
415 EntryType* new_entry =
416 down_cast<EntryType*>(default_entry_->New(MapFieldBase::arena_));
431 RepeatedPtrField<EntryType>* repeated_field =
432 reinterpret_cast<RepeatedPtrField<EntryType>*>(
436 for (typename RepeatedPtrField<EntryType>::iterator it =
479 default_entry_ = down_cast<const EntryType*>(
    [all...]
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
TrackerEntry.java 73 enum EntryType {
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) {
KMLFormatter.java 19 import com.android.locationtracker.data.TrackerEntry.EntryType;
46 if (entry.getType() == EntryType.LOCATION_TYPE) {
CSVFormatter.java 19 import com.android.locationtracker.data.TrackerEntry.EntryType;
51 if (entry.getType() == EntryType.LOCATION_TYPE) {
  /external/llvm/lib/CodeGen/AsmPrinter/
DebugLocEntry.h 54 enum EntryType { E_Location, E_Integer, E_ConstantFP, E_ConstantInt };
55 enum EntryType EntryKind;

Completed in 795 milliseconds

1 2