OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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/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());
/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);
/art/runtime/
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 72 milliseconds