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

12 3 4

  /packages/apps/Settings/src/com/android/settings/
ActivityPicker.java 99 List<PickAdapter.Item> items = getItems();
107 * Handle clicking of dialog item by passing back
126 * method that calls through to {@link PickAdapter.Item#getIntent(Intent)}.
129 PickAdapter.Item item = (PickAdapter.Item) mAdapter.getItem(position); local
130 return item.getIntent(mBaseIntent);
140 protected List<PickAdapter.Item> getItems() {
142 List<PickAdapter.Item> items = new ArrayList<PickAdapter.Item>();
307 Item item = (Item) getItem(position); local
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
GalleryPicker.java 210 public boolean onMenuItemClick(MenuItem item) {
218 public boolean onMenuItemClick(MenuItem item) {
233 Item item = mAdapter.mItems.get(position); local
234 Uri targetUri = item.mFirstImageUri;
236 if (targetUri != null && item.mBucketId != null) {
238 .appendQueryParameter("bucketId", item.mBucketId)
337 // and generated thumbnail bitmaps for each item. We do this instead of
341 ArrayList<Item> allItems = new ArrayList<Item>();
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
Section.java 193 * Returns the absolute file offset of the given item which must
201 * @param item {@code non-null;} the item in question
202 * @return {@code >= 0;} the item's absolute file offset
204 public abstract int getAbsoluteItemOffset(Item item);
224 public abstract Collection<? extends Item> items();
FieldIdsSection.java 50 public Collection<? extends Item> items() {
129 FieldIdItem item = fieldIds.get(ref); local
131 if (item == null) {
135 return item.getIndex();
MethodIdsSection.java 50 public Collection<? extends Item> items() {
129 MethodIdItem item = methodIds.get(ref); local
131 if (item == null) {
135 return item.getIndex();
ProtoIdsSection.java 50 public Collection<? extends Item> items() {
121 ProtoIdItem item = protoIds.get(prototype); local
123 if (item == null) {
127 return item.getIndex();
  /external/emma/core/java12/com/vladium/emma/report/
Item.java 7 * $Id: Item.java,v 1.1.1.1.2.1 2004/06/20 20:14:39 vlad_r Exp $
22 abstract class Item implements IItem
133 protected void addChild (final IItem item)
135 if (item == null) throw new IllegalArgumentException ("null input: item");
137 m_children.add (item);
147 Item (final IItem parent)
ClassItem.java 23 final class ClassItem extends Item
233 private static final Item.ItemMetadata METADATA; // set in <clinit>
237 METADATA = new Item.ItemMetadata (IItemMetadata.TYPE_ID_CLASS, "class",
MethodItem.java 22 final class MethodItem extends Item
206 private static final Item.ItemMetadata METADATA; // set in <clinit>
210 METADATA = new Item.ItemMetadata (IItemMetadata.TYPE_ID_METHOD, "method",
SrcFileItem.java 23 final class SrcFileItem extends Item
110 // coverage computation dependent on the order of how item
290 private static final Item.ItemMetadata METADATA; // set in <clinit>
294 METADATA = new Item.ItemMetadata (IItemMetadata.TYPE_ID_SRCFILE, "srcfile",
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PaletteComposite.java 71 /** The parent grid layout that contains all the {@link Toggle} and {@link Item} widgets. */
172 // which in turn contain Toggle/Item CLabel instances
181 // This is the bottom-most visible item
244 Item item = new Item(group, desc);
245 toggle.addItem(item);
247 item.setLayoutData(gd);
254 * When clicked, the toggle will show/hide all the {@link Item} widgets that have been
255 * added to it using {@link #addItem(Item)}
    [all...]
  /dalvik/libcore/luni/src/test/java/com/google/coretests/
PerfStatCollector.java 40 public class Item {
158 ArrayList<Item> items;
159 Item current;
176 Iterator<Item> r = items.iterator();
178 Item item = r.next(); local
179 item.update(listBad, thresholdDuration);
180 if (item.histRelevance != 0) {
181 item.print(out, bigMarking);
184 if (item.adhocRelevance != 0)
    [all...]
StatsStore.java 54 static void initStats(PerfStatCollector.Item a) {
61 static void adjustStats(PerfStatCollector.Item a) {
69 static void adjustStatsOptimistic(PerfStatCollector.Item a) {
74 static void use1(PerfStatCollector.Item a) {
195 // static void use2(PerfStatCollector.Item a) {
  /packages/apps/IM/src/com/android/im/service/
StatusBarNotifier.java 199 class Item {
204 public Item(String title, String message, Intent intent) {
211 private HashMap<String, Item> mItems;
219 mItems = new HashMap<String, Item>();
227 Item item = mItems.get(sender); local
228 if (item == null) {
229 item = new Item(title, message, intent);
230 mItems.put(sender, item);
239 Item item = mItems.remove(sender); local
286 Item item = mItems.values().iterator().next(); local
299 Item item = mItems.values().iterator().next(); local
311 Item item = mItems.values().iterator().next(); local
    [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/store/
Pop3StoreUnitTests.java 514 fp.add(FetchProfile.Item.FLAGS);
515 fp.add(FetchProfile.Item.ENVELOPE);
562 fp.add(FetchProfile.Item.FLAGS);
563 fp.add(FetchProfile.Item.ENVELOPE);
609 fp.add(FetchProfile.Item.FLAGS);
610 fp.add(FetchProfile.Item.ENVELOPE);
621 fp.add(FetchProfile.Item.BODY);
771 fp.add(FetchProfile.Item.FLAGS);
772 fp.add(FetchProfile.Item.ENVELOPE);
789 fp.add(FetchProfile.Item.BODY)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/content/
ExternalStorage.java 52 static class Item {
58 Item mExternalStoragePublicPicture;
59 Item mExternalStoragePrivatePicture;
60 Item mExternalStoragePrivateFile;
358 Item createStorageControls(CharSequence label, File path,
362 Item item = new Item(); local
363 item.mRoot = inflater.inflate(R.layout.external_storage_item, null);
364 TextView tv = (TextView)item.mRoot.findViewById(R.id.label)
    [all...]
  /frameworks/base/tools/aapt/
ResourceTable.h 217 class Item {
219 Item() : isId(false), format(ResTable_map::TYPE_ANY), bagKeyId(0), evaluating(false)
221 Item(const SourcePos& pos,
226 Item(const Item& o) : sourcePos(o.sourcePos),
231 ~Item() { }
233 Item& operator=(const Item& o) {
294 const Item* getItem() const { return mType == TYPE_ITEM ? &mItem : NULL; }
295 const KeyedVector<String16, Item>& getBag() const { return mBag;
    [all...]
  /packages/apps/Stk/src/com/android/stk/
StkMenuActivity.java 34 import com.android.internal.telephony.gsm.stk.Item;
40 * SELECT ITEM menus. This activity is started multiple times with different
111 Item item = getSelectedItem(position); local
112 if (item == null) {
115 sendResponse(StkAppService.RES_ID_MENU_SELECTION, item.id, false);
211 public boolean onOptionsItemSelected(MenuItem item) {
215 switch (item.getItemId()) {
226 Item stkItem = getSelectedItem(position);
234 return super.onOptionsItemSelected(item);
303 Item item = null; local
    [all...]
  /external/qemu/android/tools/
gen-hw-config.py 28 # a dictionary that maps item types as they appear in the .ini
65 class Item:
95 lastItem = Item(value)
118 for item in items:
119 if item.type == None:
120 sys.stderr.write("ignoring config item with no type '%s'\n" % item.name)
123 if not typesToMacros.has_key(item.type):
124 sys.stderr.write("ignoring config item with unknown type '%s': '%s'\n" % \
125 (item.type, item.name)
    [all...]
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
MyRssReader.java 82 public boolean onOptionsItemSelected(Menu.Item item){
83 switch (item.getId()) {
  /external/bluetooth/glib/tests/
sequence-test.c 108 } Item;
112 static Item *
115 return (Item *)((char *)data - 1);
118 static Item *
144 Item *item; local
146 item = get_item (list->data);
147 g_assert (item->seq == info);
161 Item *item = g_new (Item, 1) local
176 Item *item = fix_pointer (data); local
185 Item *item = fix_pointer (data); local
247 Item *item = get_item (iter); local
822 Item *item = get_item (list->data); local
840 Item *item; local
861 Item *item; local
894 Item *item; local
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
ValueParser.java 102 * Retrieves Item information from the COMPREHENSION-TLV object.
105 * @return An Item
108 static Item retrieveItem(ComprehensionTlv ctlv) throws ResultException {
109 Item item = null; local
122 item = new Item(id, text);
128 return item;
132 * Retrieves Item id information from the COMPREHENSION-TLV object.
135 * @return An Item i
    [all...]
  /external/webkit/WebKit/chromium/src/
ChromeClientImpl.cpp 621 // The current history item is not updated yet. That happens lazily when
633 WebVector<WebPopupMenuInfo::Item> outputItems(inputItems.size());
637 WebPopupMenuInfo::Item& outputItem = outputItems[i];
644 outputItem.type = WebPopupMenuInfo::Item::Option;
647 outputItem.type = WebPopupMenuInfo::Item::Group;
650 outputItem.type = WebPopupMenuInfo::Item::Separator;
  /build/tools/releasetools/
ota_from_target_files 103 class Item:
115 self.parent = Item.Get(os.path.dirname(name), dir=True)
136 cls.ITEMS[name] = Item(name, dir=dir)
148 # uid, gid, and mode for every Item object. Note this uses the
184 sets the best_subtree of each directory Item to the (uid, gid,
186 Item.
228 def recurse(item, current):
230 # item (and all its children) have already been set to. We only
233 if item.dir:
234 if current != item.best_subtree
    [all...]
  /external/icu4c/tools/toolutil/
package.cpp 370 return (int32_t)strcmp(((Item *)left)->name, ((Item *)right)->name);
486 /* check that the itemCount fits, then the ToC table, then at least the header of the last item */
499 /* offset of the last item plus at least 20 bytes for its header */
508 /* do not modify the package length variable until the last item's length is set */
520 /* swap the item name strings */
524 // don't include padding bytes at the end of the item names
530 fprintf(stderr, "icupkg: total length of item name strings too long\n");
537 fprintf(stderr, "icupkg failed to swap the input .dat package item name strings\n");
542 // reset the Item entrie
    [all...]

Completed in 3031 milliseconds

12 3 4