HomeSort by relevance Sort by last modified time
    Searched refs:itemType (Results 26 - 50 of 111) sorted by null

12 3 4 5

  /frameworks/ex/common/java/com/android/common/widget/
GroupingListAdapter.java 51 int itemType;
341 metadata.itemType = ITEM_TYPE_STANDALONE;
351 metadata.itemType = ITEM_TYPE_GROUP_HEADER;
362 metadata.itemType = ITEM_TYPE_IN_GROUP;
380 metadata.itemType = ITEM_TYPE_STANDALONE;
390 return mPositionMetadata.itemType == ITEM_TYPE_GROUP_HEADER;
407 if (mPositionMetadata.itemType != ITEM_TYPE_GROUP_HEADER) {
429 return mPositionMetadata.itemType;
458 switch (mPositionMetadata.itemType) {
472 switch (mPositionMetadata.itemType) {
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
AnnotationSetRefItem.java 52 public ItemType itemType() {
53 return ItemType.TYPE_ANNOTATION_SET_REF_ITEM;
MixedItemSection.java 57 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,
242 if (item.itemType() == itemType) {
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;
  /dalvik/dx/src/com/android/dx/dex/file/
AnnotationSetRefItem.java 52 public ItemType itemType() {
53 return ItemType.TYPE_ANNOTATION_SET_REF_ITEM;
MixedItemSection.java 57 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,
242 if (item.itemType() == itemType) {
EncodedArrayItem.java 61 public ItemType itemType() {
62 return ItemType.TYPE_ENCODED_ARRAY_ITEM;
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;
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
AnnotationSetRefItem.java 52 public ItemType itemType() {
53 return ItemType.TYPE_ANNOTATION_SET_REF_ITEM;
MixedItemSection.java 57 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,
242 if (item.itemType() == itemType) {
EncodedArrayItem.java 61 public ItemType itemType() {
62 return ItemType.TYPE_ENCODED_ARRAY_ITEM;
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;
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherAppWidgetInfo.java 54 itemType = LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET;
ShortcutInfo.java 61 itemType = LauncherSettings.BaseLauncherColumns.ITEM_TYPE_SHORTCUT;
103 * Sets {@link #itemType} to {@link LauncherSettings.BaseLauncherColumns#ITEM_TYPE_APPLICATION}.
113 itemType = LauncherSettings.BaseLauncherColumns.ITEM_TYPE_APPLICATION;
148 + " type=" + this.itemType + " container=" + this.container + " screen=" + screen
ApplicationInfo.java 59 itemType = LauncherSettings.BaseLauncherColumns.ITEM_TYPE_SHORTCUT;
102 * Sets {@link #itemType} to {@link LauncherSettings.BaseLauncherColumns#ITEM_TYPE_APPLICATION}.
112 itemType = LauncherSettings.BaseLauncherColumns.ITEM_TYPE_APPLICATION;
  /packages/apps/Gallery2/src/com/android/photos/
SelectionManager.java 78 int itemType, int itemSupportedOperations, boolean selected) {
104 if (itemType == FileColumns.MEDIA_TYPE_IMAGE) {
106 } else if (itemType == FileColumns.MEDIA_TYPE_VIDEO) {
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
Section.java 63 public final ItemType ItemType;
73 * @param itemType The itemType that this section will hold
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)
    [all...]
  /external/webkit/Source/WebKit/qt/examples/platformplugin/
qwebkitplatformplugin.h 40 enum ItemType { Option, Group, Separator };
42 virtual ItemType itemType(int) const = 0;
  /frameworks/ex/common/tests/src/com/android/common/widget/
GroupingListAdapterTests.java 301 private void assertPositionMetadata(int position, int itemType, boolean isExpanded,
305 assertEquals(itemType, metadata.itemType);
306 if (metadata.itemType == ITEM_TYPE_GROUP_HEADER) {

Completed in 415 milliseconds

12 3 4 5