Searched defs:MapItem (Results 1 - 5 of 5) 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/dexlib/src/main/java/org/jf/dexlib/
H A DMapItem.java39 public class MapItem extends Item<MapItem> { class in inherits:Item
50 * Create a new uninitialized <code>MapItem</code>
53 protected MapItem(final DexFile dexFile) { method in class:MapItem
106 writeSectionInfo(out, ItemType.TYPE_MAP_LIST, 1, dexFile.MapItem.getOffset());
130 public int compareTo(MapItem o) {
H A DDexFile.java396 MapItem.readFrom(in, 0, readContext);
677 offset = MapItem.placeAt(offset, 0);
720 out.alignTo(MapItem.getItemType().ItemAlignment);
727 MapItem.writeTo(out);
731 public final MapItem MapItem = new MapItem(this); field in class:DexFile
/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 1123 milliseconds