/external/parameter-framework/upstream/parameter/ |
MappingContext.cpp | 38 bool CMappingContext::setItem(size_t itemType, const string *pStrKey, const string *pStrItem) 40 if (iSet(itemType)) { 46 mItems[itemType].strKey = pStrKey; 49 mItems[itemType].strItem = pStrItem; 54 const string &CMappingContext::getItem(size_t itemType) const 56 return *mItems[itemType].strItem; 59 size_t CMappingContext::getItemAsInteger(size_t itemType) const 61 if (!mItems[itemType].strItem) { 66 return strtoul(mItems[itemType].strItem->c_str(), NULL, 0); 77 bool CMappingContext::iSet(size_t itemType) cons [all...] |
MappingContext.h | 55 * @param[in] itemType Mapping item index. 61 bool setItem(size_t itemType, const std::string *pStrKey, const std::string *pStrItem); 62 const std::string &getItem(size_t itemType) const; 63 size_t getItemAsInteger(size_t itemType) const; 72 bool iSet(size_t itemType) const;
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
Item.java | 38 public abstract ItemType itemType(); 47 return itemType().toHuman();
|
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...] |
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;
|
OffsettedItem.java | 97 ItemType thisType = itemType(); 98 ItemType otherType = otherItem.itemType(); 119 ItemType thisType = itemType(); 120 ItemType otherType = other.itemType();
|
/dalvik/dx/src/com/android/dx/dex/file/ |
Item.java | 38 public abstract ItemType itemType(); 47 return itemType().toHuman();
|
UniformListItem.java | 41 private final ItemType itemType; 50 * @param itemType {@code non-null;} the type of the item 53 public UniformListItem(ItemType itemType, List<T> items) { 56 if (itemType == null) { 57 throw new NullPointerException("itemType == null"); 61 this.itemType = itemType; 102 public ItemType itemType() [all...] |
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;
|
OffsettedItem.java | 97 ItemType thisType = itemType(); 98 ItemType otherType = otherItem.itemType(); 119 ItemType thisType = itemType(); 120 ItemType otherType = other.itemType();
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
Item.java | 38 public abstract ItemType itemType(); 47 return itemType().toHuman();
|
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...] |
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;
|
OffsettedItem.java | 97 ItemType thisType = itemType(); 98 ItemType otherType = otherItem.itemType(); 119 ItemType thisType = itemType(); 120 ItemType otherType = other.itemType();
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/ |
ItemType.java | 36 public class ItemType { 57 public static String getItemTypeName(int itemType) { 58 switch (itemType) {
|
MapItem.java | 62 return ItemType.getItemTypeName(getType()); 82 int itemType = dexFile.readUshort(out.getCursor()); 83 out.annotate(2, "type = 0x%x: %s", itemType, ItemType.getItemTypeName(itemType));
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
PendingAddItemInfo.java | 61 itemType = LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET; 77 itemType = copy.itemType;
|
/packages/apps/Launcher3/src/com/android/launcher3/widget/ |
PendingAddWidgetInfo.java | 42 itemType = LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET; 44 itemType = LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET; 59 return itemType == LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET;
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
ItemInfo.java | 52 public int itemType; 142 itemType = info.itemType; 160 values.put(LauncherSettings.BaseLauncherColumns.ITEM_TYPE, itemType); 195 return "Item(id=" + this.id + " type=" + this.itemType + " container=" + this.container
|
CommonAppTypeParser.java | 55 public CommonAppTypeParser(long itemId, int itemType, Context context) { 58 mResId = getResourceForItemType(itemType); 145 public static int encodeItemTypeToFlag(int itemType) { 146 return itemType << RESTORE_FLAG_BIT_SHIFT;
|
/packages/apps/Launcher2/ |
print_db.py | 95 itemType = cell["itemType"] 96 if itemType == 0: 100 elif itemType == 1: 104 elif itemType == 2: 106 elif itemType == 3: 108 elif itemType == 4: 110 elif itemType == 1000: 112 elif itemType == 1001: 114 elif itemType == 1002 [all...] |
/packages/apps/Launcher3/src/com/android/launcher3/model/ |
PackageItemInfo.java | 60 + " type=" + this.itemType + " container=" + this.container
|