Searched defs:MapItem (Results 1 - 4 of 4) sorted by relevance

/external/webrtc/src/system_wrappers/interface/
H A Dmap_wrapper.h19 class MapItem class in namespace:webrtc
24 MapItem(int id, void* ptr);
25 virtual ~MapItem();
47 int Erase(MapItem* item);
55 // Returns a pointer to the first MapItem in the map.
56 MapItem* First() const;
58 // Returns a pointer to the last MapItem in the map.
59 MapItem* Last() const;
61 // Returns a pointer to the MapItem stored after item in the map.
62 MapItem* Nex
[all...]
/external/webrtc/src/system_wrappers/source/
H A Dmap.cc16 MapItem::MapItem(int id, void* item) : item_id_(id), item_pointer_(item) function in class:webrtc::MapItem
20 MapItem::~MapItem()
24 void* MapItem::GetItem()
29 int MapItem::GetId()
34 unsigned int MapItem::GetUnsignedId()
39 void MapItem::SetItem(void* ptr)
70 map_[id] = new MapItem(id,ptr);
74 MapItem* MapWrappe
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
H A DMapItem.java41 public class MapItem { class
51 public MapItem(DexBackedDexFile dexFile, int offset) { method in class:MapItem
74 public static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem mapItem) {
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DMapItem.java27 public final class MapItem extends OffsettedItem { class in inherits:OffsettedItem
78 ArrayList<MapItem> items = new ArrayList<MapItem>(50);
90 items.add(new MapItem(currentType, section,
102 // Add a MapItem for the final items in the section.
103 items.add(new MapItem(currentType, section,
106 // Add a MapItem for the self-referential section.
107 items.add(new MapItem(mapSection));
112 new UniformListItem<MapItem>(ItemType.TYPE_MAP_LIST, items));
124 private MapItem(ItemTyp method in class:MapItem
161 private MapItem(Section section) { method in class:MapItem
[all...]

Completed in 6330 milliseconds