HomeSort by relevance Sort by last modified time
    Searched defs:MapItem (Results 1 - 13 of 13) sorted by null

  /external/webrtc/src/system_wrappers/interface/
map_wrapper.h 19 class MapItem
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* Next(MapItem* item) const
    [all...]
  /external/webrtc/src/system_wrappers/source/
map.cc 16 MapItem::MapItem(int id, void* item) : item_id_(id), item_pointer_(item)
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* MapWrapper::First() cons
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
MapItem.java 41 public class MapItem {
51 public MapItem(DexBackedDexFile dexFile, int offset) {
74 public static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem mapItem) {
75 return new SectionAnnotator(annotator, mapItem) {
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
MapItem.java 27 public final class MapItem extends 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(ItemType type, Section section, Item firstItem
    [all...]
DexFile.java 57 * straightforward way. See {@link MapItem#addMap} for more detail.
515 MapItem.addMap(sections, map);
  /dalvik/dx/src/com/android/dx/dex/file/
MapItem.java 26 public final class MapItem extends OffsettedItem {
77 ArrayList<MapItem> items = new ArrayList<MapItem>(50);
89 items.add(new MapItem(currentType, section,
101 // Add a MapItem for the final items in the section.
102 items.add(new MapItem(currentType, section,
105 // Add a MapItem for the self-referential section.
106 items.add(new MapItem(mapSection));
111 new UniformListItem<MapItem>(ItemType.TYPE_MAP_LIST, items));
123 private MapItem(ItemType type, Section section, Item firstItem
    [all...]
DexFile.java 60 * straightforward way. See {@link MapItem#addMap} for more detail.
532 MapItem.addMap(sections, map);
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
MapItem.java 27 public final class MapItem extends 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(ItemType type, Section section, Item firstItem
    [all...]
DexFile.java 62 * straightforward way. See {@link MapItem#addMap} for more detail.
534 MapItem.addMap(sections, map);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/util/
DexAnnotator.java 90 for (MapItem mapItem: dexFile.getMapItems()) {
91 switch (mapItem.getType()) {
93 annotators.put(mapItem.getType(), HeaderItem.makeAnnotator(this, mapItem));
96 annotators.put(mapItem.getType(), StringIdItem.makeAnnotator(this, mapItem));
99 annotators.put(mapItem.getType(), TypeIdItem.makeAnnotator(this, mapItem));
102 annotators.put(mapItem.getType(), ProtoIdItem.makeAnnotator(this, mapItem))
    [all...]
  /art/runtime/
dex_file.h 128 struct MapItem {
135 DISALLOW_COPY_AND_ASSIGN(MapItem);
140 MapItem list_[1];
    [all...]
  /prebuilts/tools/common/m2/repository/com/google/dexmaker/dexmaker/1.0/
dexmaker-1.0.jar 
  /prebuilts/sdk/tools/lib/
dx.jar 

Completed in 271 milliseconds