HomeSort by relevance Sort by last modified time
    Searched refs:ItemType (Results 1 - 25 of 72) sorted by null

1 2 3

  /dalvik/dexgen/src/com/android/dexgen/dex/file/
FieldIdItem.java 36 public ItemType itemType() {
37 return ItemType.TYPE_FIELD_ID_ITEM;
MethodIdItem.java 36 public ItemType itemType() {
37 return ItemType.TYPE_METHOD_ID_ITEM;
Item.java 38 public abstract ItemType itemType();
47 return itemType().toHuman();
AnnotationSetRefItem.java 52 public ItemType itemType() {
53 return ItemType.TYPE_ANNOTATION_SET_REF_ITEM;
MapItem.java 35 private final ItemType type;
81 ItemType currentType = null;
87 ItemType type = item.itemType();
112 new UniformListItem<MapItem>(ItemType.TYPE_MAP_LIST, items));
124 private MapItem(ItemType type, Section section, Item firstItem,
168 this.type = ItemType.TYPE_MAP_LIST;
177 public ItemType itemType() {
178 return ItemType.TYPE_MAP_ITEM
    [all...]
OffsettedItem.java 97 ItemType thisType = itemType();
98 ItemType otherType = otherItem.itemType();
119 ItemType thisType = itemType();
120 ItemType otherType = other.itemType();
ItemType.java 24 public enum ItemType implements ToHuman {
63 private ItemType(int mapValue, String typeName) {
StringDataItem.java 59 public ItemType itemType() {
60 return ItemType.TYPE_STRING_DATA_ITEM;
StringIdItem.java 76 public ItemType itemType() {
77 return ItemType.TYPE_STRING_ID_ITEM;
TypeIdItem.java 42 public ItemType itemType() {
43 return ItemType.TYPE_TYPE_ID_ITEM;
UniformListItem.java 43 private final ItemType itemType;
52 * @param itemType {@code non-null;} the type of the item
55 public UniformListItem(ItemType itemType, List<T> items) {
58 if (itemType == null) {
59 throw new NullPointerException("itemType == null");
63 this.itemType = itemType;
104 public ItemType itemType()
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
FieldIdItem.java 36 public ItemType itemType() {
37 return ItemType.TYPE_FIELD_ID_ITEM;
MethodIdItem.java 36 public ItemType itemType() {
37 return ItemType.TYPE_METHOD_ID_ITEM;
Item.java 38 public abstract ItemType itemType();
47 return itemType().toHuman();
AnnotationSetRefItem.java 52 public ItemType itemType() {
53 return ItemType.TYPE_ANNOTATION_SET_REF_ITEM;
MapItem.java 35 private final ItemType type;
81 ItemType currentType = null;
87 ItemType type = item.itemType();
112 new UniformListItem<MapItem>(ItemType.TYPE_MAP_LIST, items));
124 private MapItem(ItemType type, Section section, Item firstItem,
168 this.type = ItemType.TYPE_MAP_LIST;
177 public ItemType itemType() {
178 return ItemType.TYPE_MAP_ITEM
    [all...]
OffsettedItem.java 97 ItemType thisType = itemType();
98 ItemType otherType = otherItem.itemType();
119 ItemType thisType = itemType();
120 ItemType otherType = other.itemType();
EncodedArrayItem.java 61 public ItemType itemType() {
62 return ItemType.TYPE_ENCODED_ARRAY_ITEM;
ItemType.java 24 public enum ItemType implements ToHuman {
63 private ItemType(int mapValue, String typeName) {
StringDataItem.java 59 public ItemType itemType() {
60 return ItemType.TYPE_STRING_DATA_ITEM;
StringIdItem.java 74 public ItemType itemType() {
75 return ItemType.TYPE_STRING_ID_ITEM;
TypeIdItem.java 40 public ItemType itemType() {
41 return ItemType.TYPE_TYPE_ID_ITEM;
UniformListItem.java 43 private final ItemType itemType;
52 * @param itemType {@code non-null;} the type of the item
55 public UniformListItem(ItemType itemType, List<T> items) {
58 if (itemType == null) {
59 throw new NullPointerException("itemType == null");
63 this.itemType = itemType;
104 public ItemType itemType()
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
V8Collection.h 63 template<class Collection, class ItemType> static v8::Handle<v8::Value> getNamedPropertyOfCollection(v8::Local<v8::String> name, v8::Local<v8::Object> object)
70 return getV8Object<ItemType>(collection->namedItem(propertyName));
74 template<class Collection, class ItemType> static v8::Handle<v8::Value> collectionNamedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
85 return getNamedPropertyOfCollection<Collection, ItemType>(name, info.Holder());
89 template<class Collection, class ItemType> static v8::Handle<v8::Value> getIndexedPropertyOfCollection(uint32_t index, v8::Local<v8::Object> object)
95 return getV8Object<ItemType>(collection->item(index));
99 template<class Collection, class ItemType> static v8::Handle<v8::Value> collectionIndexedPropertyGetter(uint32_t index, const v8::AccessorInfo& info)
101 return getIndexedPropertyOfCollection<Collection, ItemType>(index, info.Holder());
158 template<class Collection, class ItemType> static void setCollectionIndexedGetter(v8::Handle<v8::FunctionTemplate> desc)
160 desc->InstanceTemplate()->SetIndexedPropertyHandler(collectionIndexedPropertyGetter<Collection, ItemType>, 0, 0, 0, collectionIndexedPropertyEnumerator<Collection>)
    [all...]
  /external/webkit/Source/WebKit/qt/examples/platformplugin/
qwebkitplatformplugin.h 40 enum ItemType { Option, Group, Separator };
42 virtual ItemType itemType(int) const = 0;

Completed in 99 milliseconds

1 2 3