HomeSort by relevance Sort by last modified time
    Searched refs:item (Results 426 - 450 of 4164) sorted by null

<<11121314151617181920>>

  /external/lldb/scripts/Python/interface/
SBTypeFilter.i 41 ReplaceExpressionPathAtIndex (uint32_t i, const char* item);
44 AppendExpressionPath (const char* item);
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_list.h 34 void * Item;
39 struct rc_list * rc_list(struct memory_pool * pool, void * item);
  /external/nist-sip/java/gov/nist/core/
MultiValueMap.java 8 public Object remove( K key, V item );
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
ImmutableExceptionHandler.java 73 protected boolean isImmutable(@Nonnull ExceptionHandler item) {
74 return item instanceof ImmutableExceptionHandler;
79 protected ImmutableExceptionHandler makeImmutable(@Nonnull ExceptionHandler item) {
80 return ImmutableExceptionHandler.of(item);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableSwitchElement.java 73 protected boolean isImmutable(@Nonnull SwitchElement item) {
74 return item instanceof ImmutableSwitchElement;
79 protected ImmutableSwitchElement makeImmutable(@Nonnull SwitchElement item) {
80 return ImmutableSwitchElement.of(item);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/reference/
ImmutableTypeReference.java 68 protected boolean isImmutable(@Nonnull TypeReference item) {
69 return item instanceof ImmutableTypeReference;
74 protected ImmutableTypeReference makeImmutable(@Nonnull TypeReference item) {
75 return ImmutableTypeReference.of(item);
  /external/wpa_supplicant_8/src/wps/
upnp_xml.h 21 char * xml_get_first_item(const char *doc, const char *item);
  /frameworks/base/core/java/android/content/pm/
XmlSerializerAndParser.java 27 void writeAsXml(T item, XmlSerializer out) throws IOException;
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_attrchildnodes2.java 69 testNode = acronymList.item(3);
76 textNode = (Text) childNodes.item(0);
79 textNode = (Text) childNodes.item(1);
82 textNode = (Text) childNodes.item(2);
hc_nodeinsertbeforedocfragment.java 81 employeeNode = elementList.item(1);
83 refChild = childList.item(3);
90 child = childList.item(3);
93 child = childList.item(4);
nodeinsertbeforedocfragment.java 81 employeeNode = elementList.item(1);
83 refChild = childList.item(3);
90 child = childList.item(3);
93 child = childList.item(4);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/list/aux_/
clear.hpp 18 #include <boost/mpl/list/aux_/item.hpp>
front.hpp 27 typedef typename List::item type;
  /packages/apps/Calendar/extensions_src/com/android/calendar/extensions/
AllInOneMenuExtensions.java 38 public boolean handleItemSelected(MenuItem item, Context context) {
  /packages/apps/Calendar/src/com/android/calendar/
AllInOneMenuExtensionsInterface.java 35 boolean handleItemSelected(MenuItem item, Context context);
  /packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
GridAdapter.java 93 * store the id of the item associated with them.
100 * Get the id of the item associated with this view.
112 * Get the id of the item associated with this view. The specified Object is associated with
114 * @param item Object associated with this view at this position.
115 * @param position Position of the item.
116 * @return id Id for the item at this position.
118 public long getItemId(Object item, int position) {
125 * Get the type of the view given the item it will display based on its
127 * would create an item based on the position and use that item to get th
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/shims/
MediaItemsLoader.java 116 public void consume(int index, MediaItem item) {
118 row[PhotoSetLoader.INDEX_DATA] = item.getContentUri().toString();
119 row[PhotoSetLoader.INDEX_DATE_ADDED] = item.getDateInMs();
120 row[PhotoSetLoader.INDEX_HEIGHT] = item.getHeight();
121 row[PhotoSetLoader.INDEX_WIDTH] = item.getWidth();
122 row[PhotoSetLoader.INDEX_WIDTH] = item.getWidth();
123 int rawMediaType = item.getMediaType();
132 item.getSupportedOperations();
134 mediaItems.append(index, item);
144 public Drawable drawableForItem(Cursor item, Drawable recycle)
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
DeliveryReportAdapter.java 43 DeliveryReportItem item = this.getItem(position); local
57 listItem.bind(item.recipient, item.status, item.deliveryDate);
MessageListView.java 44 MessageItem item = view.getMessageItem(); local
45 if (item != null && item.isSms()) {
48 clip.setText(item.mBody);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
RemoteObjectBrowser.py 3 def remote_object_tree_item(item):
4 wrapper = WrappedObjectTreeItem(item)
12 def __init__(self, item):
13 self.__item = item
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
RemoteObjectBrowser.py 3 def remote_object_tree_item(item):
4 wrapper = WrappedObjectTreeItem(item)
12 def __init__(self, item):
13 self.__item = item
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
BooleanEditor.java 31 public Runnable bindEditor(View v, final EditableItem item, final Runnable afterChange) {
37 booleanEditor.setChecked(item.hasValue() && item.getValueBool());
43 item.setValue(isChecked);
  /system/core/libdiskconfig/
config_mbr.c 74 struct write_list *item; local
82 if (!(item = alloc_wl(sizeof(struct pc_partition)))) {
91 item->offset = (loff_t)((uintptr_t)((uint8_t *)(&mbr->ptable[pnum])));
94 pentry = (struct pc_partition *) &item->data;
129 return item;
144 struct write_list *item; local
148 if (!(item = alloc_wl(sizeof(struct pc_boot_record)))) {
155 item->offset = ((loff_t)(*lba)) * dinfo->sect_size;
158 ebr = (struct pc_boot_record *) &item->data;
203 return item;
214 struct write_list *item; local
    [all...]
  /developers/build/prebuilts/gradle/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/
MainActivity.java 37 * user clicks on an item, {@link DetailActivity} is launched, using the Activity Scene Transitions
63 * Called when an item in the {@link android.widget.GridView} is clicked. Here will launch the
68 Item item = (Item) adapterView.getItemAtPosition(position); local
72 intent.putExtra(DetailActivity.EXTRA_PARAM_ID, item.getId());
104 return Item.ITEMS.length;
108 public Item getItem(int position) {
109 return Item.ITEMS[position];
123 final Item item = getItem(position) local
    [all...]
  /developers/samples/android/ui/activityscenetransition/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/
MainActivity.java 37 * user clicks on an item, {@link DetailActivity} is launched, using the Activity Scene Transitions
63 * Called when an item in the {@link android.widget.GridView} is clicked. Here will launch the
68 Item item = (Item) adapterView.getItemAtPosition(position); local
72 intent.putExtra(DetailActivity.EXTRA_PARAM_ID, item.getId());
104 return Item.ITEMS.length;
108 public Item getItem(int position) {
109 return Item.ITEMS[position];
123 final Item item = getItem(position) local
    [all...]

Completed in 1552 milliseconds

<<11121314151617181920>>