HomeSort by relevance Sort by last modified time
    Searched refs:MapItem (Results 1 - 16 of 16) 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...]
map_unittest.cc 16 using ::webrtc::MapItem;
20 int* ItemPointer(MapItem* item) {
27 bool DeleteItemContent(MapItem* item) {
36 int ItemValue(MapItem* item) {
74 MapItem* remove_item = clear_map->First();
88 void PrintMapItem(MapItem* item, bool supress) {
100 MapItem* item = print_map.First();
115 MapItem* item = print_map.Last();
127 bool CompareItems(MapItem* lhs_item, MapItem* rhs_item)
    [all...]
  /external/webrtc/src/system_wrappers/test/map/
map.cc 29 int GetStoredIntegerValue(MapItem* map_item)
41 MapItem* map_item = map.First();
67 MapItem* remove_item = test_map.Find(2);
81 MapItem* first_item = test_map.First();
85 MapItem* last_item = test_map.Last();
89 MapItem* second_item = test_map.Next(first_item);
94 MapItem* second_to_last_item = test_map.Previous(last_item);
  /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/dexlib/src/main/java/org/jf/dexlib/
MapItem.java 39 public class MapItem extends Item<MapItem> {
50 * Create a new uninitialized <code>MapItem</code>
53 protected MapItem(final DexFile dexFile) {
106 writeSectionInfo(out, ItemType.TYPE_MAP_LIST, 1, dexFile.MapItem.getOffset());
130 public int compareTo(MapItem o) {
DexFile.java 396 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);
    [all...]
HeaderItem.java 210 out.annotate("map_off: 0x" + Integer.toHexString(dexFile.MapItem.getOffset()));
211 out.writeInt(dexFile.MapItem.getOffset());
  /art/runtime/
dex_file_verifier.cc 170 const DexFile::MapItem* item = map->list_;
179 if (!CheckListSize(item, count, sizeof(DexFile::MapItem), "map size")) {
    [all...]
dex_file.h 114 struct MapItem {
121 DISALLOW_COPY_AND_ASSIGN(MapItem);
126 MapItem list_[1];
    [all...]
  /prebuilts/sdk/tools/lib/
dx.jar 

Completed in 736 milliseconds