HomeSort by relevance Sort by last modified time
    Searched defs:ITEM (Results 1 - 25 of 26) sorted by null

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
metagrammar.h 12 #define ITEM 260
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
metagrammar.h 12 #define ITEM 260
  /prebuilts/gdb/darwin-x86/include/python2.7/
metagrammar.h 12 #define ITEM 260
  /prebuilts/gdb/linux-x86/include/python2.7/
metagrammar.h 12 #define ITEM 260
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
metagrammar.h 12 #define ITEM 260
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
metagrammar.h 12 #define ITEM 260
  /development/samples/training/threadsample/src/com/example/android/threadsample/
RSSPullParser.java 45 // An attribute value indicating that the element contains an item
46 private static final String ITEM = "item";
130 * If this is the start of an individual item, logs it and creates a new
133 if (eventName.equalsIgnoreCase(ITEM)) {
137 // If this isn't an item, then checks for other options
166 // It's not an ITEM. Gets the URL attribute from the event
182 * If it's not an ITEM, and it is an END_TAG, and the current event is an ITEM, and
186 && (localXmlPullParser.getName().equalsIgnoreCase(ITEM))
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
ComprehensionTlvTag.java 36 ITEM(0x0f),
  /frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
DetailsFragment.java 44 private static final String ITEM = "item";
133 public void onItemClicked(Presenter.ViewHolder itemViewHolder, Object item,
135 Log.i(TAG, "onItemClicked: " + item + " row " + row);
136 if (item instanceof PhotoItem){
138 intent.putExtra(DetailsActivity.EXTRA_ITEM, (PhotoItem) item);
150 public void onItemSelected(Presenter.ViewHolder itemViewHolder, Object item,
152 Log.i(TAG, "onItemSelected: " + item + " row " + row);
172 outState.putParcelable(ITEM, mPhotoItem);
DetailsSupportFragment.java 47 private static final String ITEM = "item";
136 public void onItemClicked(Presenter.ViewHolder itemViewHolder, Object item,
138 Log.i(TAG, "onItemClicked: " + item + " row " + row);
139 if (item instanceof PhotoItem){
141 intent.putExtra(DetailsSupportActivity.EXTRA_ITEM, (PhotoItem) item);
153 public void onItemSelected(Presenter.ViewHolder itemViewHolder, Object item,
155 Log.i(TAG, "onItemSelected: " + item + " row " + row);
175 outState.putParcelable(ITEM, mPhotoItem);
NewDetailsFragment.java 54 private static final String ITEM = "item";
214 public void onItemClicked(Presenter.ViewHolder itemViewHolder, Object item,
216 Log.i(TAG, "onItemClicked: " + item + " row " + row);
217 if (item instanceof PhotoItem) {
219 intent.putExtra(DetailsActivity.EXTRA_ITEM, (PhotoItem) item);
231 public void onItemSelected(Presenter.ViewHolder itemViewHolder, Object item,
233 Log.i(TAG, "onItemSelected: " + item + " row " + row);
NewDetailsSupportFragment.java 57 private static final String ITEM = "item";
217 public void onItemClicked(Presenter.ViewHolder itemViewHolder, Object item,
219 Log.i(TAG, "onItemClicked: " + item + " row " + row);
220 if (item instanceof PhotoItem) {
222 intent.putExtra(DetailsSupportActivity.EXTRA_ITEM, (PhotoItem) item);
234 public void onItemSelected(Presenter.ViewHolder itemViewHolder, Object item,
236 Log.i(TAG, "onItemSelected: " + item + " row " + row);
  /libcore/ojluni/src/main/java/java/util/concurrent/
ConcurrentLinkedQueue.java 130 * Nodes that are reachable from head. CASing the item
160 * CASing a Node's item reference to null atomically removes the
169 * for a volatile write to item by using Unsafe.putObject instead
174 * non-null item. If the queue is empty, all items must of course
176 * Node with null item. Both head and tail are only updated using
182 volatile E item; field in class:ConcurrentLinkedQueue.Node
187 * Returns a new node holding item. Uses relaxed write because item
190 static <E> Node<E> newNode(E item) {
192 U.putObject(node, ITEM, item)
343 E item = p.item; local
368 E item = p.item; local
456 E item = p.item; local
480 E item = p.item; local
567 E item = p.item; local
593 E item = p.item; local
711 E item; local
736 E item = null; local
776 Object item = p.item; local
    [all...]
ConcurrentLinkedDeque.java 113 * A node contains the expected E ("item") and links to predecessor
116 * class Node<E> { volatile Node<E> prev, next; volatile E item; }
118 * A node p is considered "live" if it contains a non-null item
119 * (p.item != null). When an item is CASed to null, the item is
144 * p.item != null ||
159 * 1. "logical deletion" by CASing item to null atomically removes
260 * - head.item may or may not be null
274 * - tail.item may or may not be nul
293 volatile E item; field in class:ConcurrentLinkedDeque.Node
904 E item = p.item; local
913 E item = p.item; local
936 E item = p.item; local
947 E item = p.item; local
1033 E item = p.item; local
1057 E item = p.item; local
1077 E item = p.item; local
1219 E item = p.item; local
1245 E item = p.item; local
1398 E item = p.item; local
1412 E item = nextItem; local
1565 E item = p.item; local
    [all...]
LinkedTransferQueue.java 137 * "item" field from a non-null data value to null upon match, and
157 * from a pointer to the initial node; CASing the item of the
201 * operations up to the point of matching or appending an item
453 volatile Object item; // initially non-null if isData; CASed to match field in class:LinkedTransferQueue.Node
464 return U.compareAndSwapObject(this, ITEM, cmp, val);
468 * Constructs a new node. Uses relaxed write because item can
471 Node(Object item, boolean isData) {
472 U.putObject(this, ITEM, item); // relaxed write
485 * Sets item to self and waiter to null, to avoid garbag
609 Object item = p.item; local
700 Object item = s.item; local
771 Object item = p.item; local
812 Object item = p.item; local
841 Object item = p.item; local
969 Object item = s.item; local
1202 Object item = p.item; local
1416 Object item = p.item; local
1444 Object item = p.item; local
1504 Object item = p.item; local
1557 E item = (E) s.readObject(); local
    [all...]
SynchronousQueue.java 108 * empty. A call to "fulfill" (i.e., a call requesting an item
176 * @param e if non-null, the item to be handed to a consumer;
177 * if null, requests that transfer return an item
181 * @return if non-null, the item provided or received; if null,
238 Object item; // data; or null for REQUESTs field in class:SynchronousQueue.TransferStack.SNode
240 // Note: item and mode fields don't need to be volatile
244 SNode(Object item) {
245 this.item = item;
325 * Puts or takes an item
538 volatile Object item; \/\/ CAS'ed to or from null field in class:SynchronousQueue.TransferQueue.QNode
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
menu.h 60 /* Item options: */
71 TEXT name; /* name of menu item */
72 TEXT description; /* description of item, optional in display */
74 void *userptr; /* Pointer to user defined per item data */
75 Item_Options opt; /* Item options */
76 short index; /* Item number if connected to a menu */
77 short y; /* y and x location of item in menu */
86 } ITEM;
102 short itemlen; /* Length of one item */
112 ITEM **items; /* array of items */
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
menu.h 60 /* Item options: */
71 TEXT name; /* name of menu item */
72 TEXT description; /* description of item, optional in display */
74 void *userptr; /* Pointer to user defined per item data */
75 Item_Options opt; /* Item options */
76 short index; /* Item number if connected to a menu */
77 short y; /* y and x location of item in menu */
86 } ITEM;
102 short itemlen; /* Length of one item */
112 ITEM **items; /* array of items */
    [all...]
  /external/guice/extensions/persist/lib/
hibernate3.jar 
  /external/robolectric/v3/runtime/
android-all-4.4_r1-robolectric-1.jar 
android-all-5.0.0_r2-robolectric-1.jar 
android-all-5.1.1_r9-robolectric-1.jar 
  /prebuilts/misc/common/robolectric/lib/
android-all-4.4_r1-robolectric-1.jar 
android-all-5.0.0_r2-robolectric-1.jar 
android-all-6.0.0_r1-robolectric-0.jar 

Completed in 1590 milliseconds

1 2