Searched refs:itemType (Results 1 - 25 of 40) sorted by relevance

12

/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DItem.java38 public abstract ItemType itemType(); method in class:Item
47 return itemType().toHuman();
H A DUniformListItem.java43 private final ItemType itemType; field in class:UniformListItem
52 * @param itemType {@code non-null;} the type of the item
55 public UniformListItem(ItemType itemType, List<T> items) { argument
58 if (itemType == null) {
59 throw new NullPointerException("itemType == null");
63 this.itemType = itemType;
104 public ItemType itemType() { method in class:UniformListItem
105 return itemType;
H A DFieldIdItem.java36 public ItemType itemType() { method in class:FieldIdItem
H A DMethodIdItem.java36 public ItemType itemType() { method in class:MethodIdItem
H A DOffsettedItem.java97 ItemType thisType = itemType();
98 ItemType otherType = otherItem.itemType();
119 ItemType thisType = itemType();
120 ItemType otherType = other.itemType();
H A DAnnotationSetRefItem.java52 public ItemType itemType() { method in class:AnnotationSetRefItem
H A DMixedItemSection.java57 ItemType type1 = item1.itemType();
58 ItemType type2 = item2.itemType();
231 * @param itemType {@code non-null;} the item type of interest
234 public void writeIndexAnnotation(AnnotatedOutput out, ItemType itemType, argument
242 if (item.itemType() == itemType) {
H A DEncodedArrayItem.java61 public ItemType itemType() { method in class:EncodedArrayItem
H A DStringDataItem.java59 public ItemType itemType() { method in class:StringDataItem
H A DStringIdItem.java74 public ItemType itemType() { method in class:StringIdItem
H A DTypeIdItem.java40 public ItemType itemType() { method in class:TypeIdItem
H A DMapItem.java87 ItemType type = item.itemType();
177 public ItemType itemType() { method in class:MapItem
H A DTypeListItem.java61 public ItemType itemType() { method in class:TypeListItem
H A DAnnotationSetItem.java104 public ItemType itemType() { method in class:AnnotationSetItem
H A DHeaderItem.java38 public ItemType itemType() { method in class:HeaderItem
/external/smack/src/org/jivesoftware/smack/packet/
H A DRosterPacket.java106 private ItemType itemType; field in class:RosterPacket.Item
119 itemType = null;
157 return itemType;
163 * @param itemType the roster item type.
165 public void setItemType(ItemType itemType) { argument
166 this.itemType = itemType;
221 if (itemType != null) {
222 buf.append(" subscription=\"").append(itemType).append("\"");
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
H A DItemType.java57 public static String getItemTypeName(int itemType) { argument
58 switch (itemType) {
H A DMapItem.java82 int itemType = dexFile.readUshort(out.getCursor());
83 out.annotate(2, "type = 0x%x: %s", itemType, ItemType.getItemTypeName(itemType));
H A DRawDexFile.java70 public MapItem getMapItemForSection(int itemType) { argument
72 if (mapItem.getType() == itemType) {
H A DSectionAnnotator.java46 public final int itemType; field in class:SectionAnnotator
55 this.itemType = mapItem.getType();
/external/chromium_org/third_party/icu/source/common/
H A Ducnv_ext.h342 #define UCNV_EXT_ARRAY(indexes, index, itemType) \
343 ((const itemType *)((const char *)(indexes)+(indexes)[index]))
/external/icu/icu4c/source/common/
H A Ducnv_ext.h342 #define UCNV_EXT_ARRAY(indexes, index, itemType) \
343 ((const itemType *)((const char *)(indexes)+(indexes)[index]))
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/util/
H A DDexAnnotator.java174 public SectionAnnotator getAnnotator(int itemType) { argument
175 return annotators.get(itemType);
/external/deqp/executor/
H A DxeTestResultParser.cpp471 ri::Type itemType = getResultItemType(elemName); local
476 switch (itemType)
730 ri::Type itemType = getResultItemType(elemName); local
733 if (!curItem || itemType != curItem->getType())
736 if (itemType == ri::TYPE_RESULT)
742 else if (itemType == ri::TYPE_NUMBER)
749 else if (itemType == ri::TYPE_SAMPLEVALUE)
/external/chromium_org/third_party/icu/source/i18n/
H A Dtzfmt.cpp2317 GMTOffsetField::FieldType itemType = GMTOffsetField::TEXT;
2328 if (itemType != GMTOffsetField::TEXT) {
2329 if (GMTOffsetField::isValid(itemType, itemLength)) {
2330 GMTOffsetField* fld = GMTOffsetField::createTimeField(itemType, (uint8_t)itemLength, status);
2339 itemType = GMTOffsetField::TEXT;
2351 if (tmpType == itemType) {
2354 if (itemType == GMTOffsetField::TEXT) {
2364 if (GMTOffsetField::isValid(itemType, itemLength)) {
2365 GMTOffsetField* fld = GMTOffsetField::createTimeField(itemType, itemLength, status);
2375 itemType
[all...]

Completed in 380 milliseconds

12