Searched defs:ItemType (Results 1 - 7 of 7) sorted by relevance

/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DSection.java63 public final ItemType ItemType; field in class:Section
75 protected Section(DexFile dexFile, ItemType itemType) {
78 this.ItemType = itemType;
88 offset = AlignmentUtils.alignOffset(offset, ItemType.ItemAlignment);
95 offset = AlignmentUtils.alignOffset(offset, ItemType.ItemAlignment);
112 out.annotate(0, this.ItemType.TypeName + " section");
118 out.alignTo(ItemType.ItemAlignment);
139 in.alignTo(ItemType.ItemAlignment);
H A DItemType.java36 public enum ItemType { enum
56 /** A map to facilitate looking up an <code>ItemType</code> by ordinal */
57 private final static TreeMap<Integer, ItemType> itemTypeIntegerMap;
61 itemTypeIntegerMap = new TreeMap<Integer, ItemType>();
63 for (ItemType itemType: ItemType.values()) {
97 private ItemType(int mapValue, int sectionIndex, int itemAlignment, String typeName) { method in class:ItemType
105 * Converts an int value to the corresponding ItemType enum value,
106 * or null if the value isn't a valid ItemType value
108 * @param itemType the int value to convert to an ItemType
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DItemType.java24 public enum ItemType implements ToHuman { enum
63 private ItemType(int mapValue, String typeName) { method in class:ItemType
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebkitplatformplugin.h41 enum ItemType { Option, Group, Separator }; enum in class:QWebSelectData
43 virtual ItemType itemType(int) const = 0;
/external/webkit/Source/WebKit/qt/examples/platformplugin/
H A Dqwebkitplatformplugin.h40 enum ItemType { Option, Group, Separator }; enum in class:QWebSelectData
42 virtual ItemType itemType(int) const = 0;
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Dpeers.cpp122 QString Peers::ItemType(int type) function in class:Peers
183 menu->addAction(Peers::ItemType(type))->setEnabled(false);
448 item->setToolTip(ItemType(PEER_TYPE_ASSOCIATED_STATION));
553 item->setToolTip(ItemType(PEER_TYPE_P2P_CLIENT));
635 item->setToolTip(ItemType(type));
700 item->setToolTip(ItemType(type));
856 item->setToolTip(ItemType(PEER_TYPE_WPS_PIN_NEEDED));
938 item->setToolTip(ItemType(PEER_TYPE_P2P));
984 item->setToolTip(ItemType(PEER_TYPE_P2P_GROUP));
1086 item->setToolTip(ItemType(PEER_TYPE_P2P_INVITATIO
[all...]
/external/llvm/lib/TableGen/
H A DTGParser.cpp1158 Init *TGParser::ParseSimpleValue(Record *CurRec, RecTy *ItemType, argument
1167 return ParseSimpleValue(CurRec, ItemType, Mode);
1273 if (ItemType != 0) {
1274 ListRecTy *ListType = dynamic_cast<ListRecTy*>(ItemType);
1278 << ItemType->getAsString();
1347 if (ItemType == 0) {
1428 Init *TGParser::ParseValue(Record *CurRec, RecTy *ItemType, IDParseMode Mode) { argument
1429 Init *Result = ParseSimpleValue(CurRec, ItemType, Mode);
1528 Init *RHSResult = ParseValue(CurRec, ItemType, ParseNameMode);
1591 RecTy *ItemType local
[all...]

Completed in 144 milliseconds