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

1 2

  /external/lz4/lib/
lz4frame_static.h 50 #define LZ4F_LIST_ERRORS(ITEM) \
51 ITEM(OK_NoError) ITEM(ERROR_GENERIC) \
52 ITEM(ERROR_maxBlockSize_invalid) ITEM(ERROR_blockMode_invalid) ITEM(ERROR_contentChecksumFlag_invalid) \
53 ITEM(ERROR_compressionLevel_invalid) \
54 ITEM(ERROR_allocation_failed) \
55 ITEM(ERROR_srcSize_tooLarge) ITEM(ERROR_dstMaxSize_tooSmall)
    [all...]
  /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
  /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...]
cursesm.h 46 // This wraps the ITEM type of <menu.h>
54 ITEM *item; member in class:NCursesMenuItem
64 : item(0)
66 item = p_name ? ::new_item (p_name, p_descript) : STATIC_CAST(ITEM*)(0);
67 if (p_name && !item)
70 // Create an item. If you pass both parameters as NULL, a delimiting
71 // item is constructed which can be used to terminate a list of
83 : item(0
    [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...]
cursesm.h 46 // This wraps the ITEM type of <menu.h>
54 ITEM *item; member in class:NCursesMenuItem
64 : item(0)
66 item = p_name ? ::new_item (p_name, p_descript) : STATIC_CAST(ITEM*)(0);
67 if (p_name && !item)
70 // Create an item. If you pass both parameters as NULL, a delimiting
71 // item is constructed which can be used to terminate a list of
83 : item(0
    [all...]
  /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),
CommandParamsFactory.java 260 // set each item icon.
296 * list for similar tags, usually item id.
629 ctlv = searchForNextTag(ComprehensionTlvTag.ITEM, iter);
637 // We must have at least one menu item.
    [all...]
  /frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
DetailsFragment.java 43 private static final String ITEM = "item";
121 PhotoItem item = (PhotoItem) (savedInstanceState != null ? local
122 savedInstanceState.getParcelable(ITEM) : null);
123 if (item != null) {
124 setItem(item);
129 public void onItemClicked(Presenter.ViewHolder itemViewHolder, Object item,
131 Log.i(TAG, "onItemClicked: " + item + " row " + row);
132 if (item instanceof PhotoItem){
134 intent.putExtra(DetailsActivity.EXTRA_ITEM, (PhotoItem) item);
    [all...]
DetailsSupportFragment.java 45 private static final String ITEM = "item";
123 PhotoItem item = (PhotoItem) (savedInstanceState != null ? local
124 savedInstanceState.getParcelable(ITEM) : null);
125 if (item != null) {
126 setItem(item);
131 public void onItemClicked(Presenter.ViewHolder itemViewHolder, Object item,
133 Log.i(TAG, "onItemClicked: " + item + " row " + row);
134 if (item instanceof PhotoItem){
136 intent.putExtra(DetailsSupportActivity.EXTRA_ITEM, (PhotoItem) item);
    [all...]
NewDetailsFragment.java 45 private static final String ITEM = "item";
137 PhotoItem item = (PhotoItem) (savedInstanceState != null ? local
138 savedInstanceState.getParcelable(ITEM) : null);
139 if (item != null) {
140 setItem(item);
145 public void onItemClicked(Presenter.ViewHolder itemViewHolder, Object item,
147 Log.i(TAG, "onItemClicked: " + item + " row " + row);
148 if (item instanceof PhotoItem){
150 intent.putExtra(DetailsActivity.EXTRA_ITEM, (PhotoItem) item);
    [all...]
NewDetailsSupportFragment.java 47 private static final String ITEM = "item";
139 PhotoItem item = (PhotoItem) (savedInstanceState != null ? local
140 savedInstanceState.getParcelable(ITEM) : null);
141 if (item != null) {
142 setItem(item);
147 public void onItemClicked(Presenter.ViewHolder itemViewHolder, Object item,
149 Log.i(TAG, "onItemClicked: " + item + " row " + row);
150 if (item instanceof PhotoItem){
152 intent.putExtra(DetailsSupportActivity.EXTRA_ITEM, (PhotoItem) item);
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentLinkedQueue.java 101 * Nodes that are reachable from head. CASing the item
131 * CASing a Node's item reference to null atomically removes the
140 * for a volatile write to item by using Unsafe.putObject instead
145 * non-null item. If the queue is empty, all items must of course
147 * Node with null item. Both head and tail are only updated using
153 volatile E item; field in class:ConcurrentLinkedQueue.Node
158 * Returns a new node holding item. Uses relaxed write because item
161 static <E> Node<E> newNode(E item) {
163 U.putObject(node, ITEM, item)
314 E item = p.item; local
339 E item = p.item; local
427 E item = p.item; local
451 E item = p.item; local
538 E item = p.item; local
564 E item = p.item; local
682 E item; local
707 E item = null; local
747 Object item = p.item; local
    [all...]
SynchronousQueue.java 79 * empty. A call to "fulfill" (i.e., a call requesting an item
147 * @param e if non-null, the item to be handed to a consumer;
148 * if null, requests that transfer return an item
152 * @return if non-null, the item provided or received; if null,
209 Object item; // data; or null for REQUESTs field in class:SynchronousQueue.TransferStack.SNode
211 // Note: item and mode fields don't need to be volatile
215 SNode(Object item) {
216 this.item = item;
296 * Puts or takes an item
509 volatile Object item; \/\/ CAS'ed to or from null field in class:SynchronousQueue.TransferQueue.QNode
    [all...]
LinkedTransferQueue.java 108 * "item" field from a non-null data value to null upon match, and
128 * from a pointer to the initial node; CASing the item of the
172 * operations up to the point of matching or appending an item
424 volatile Object item; // initially non-null if isData; CASed to match field in class:LinkedTransferQueue.Node
435 return U.compareAndSwapObject(this, ITEM, cmp, val);
439 * Constructs a new node. Uses relaxed write because item can
442 Node(Object item, boolean isData) {
443 U.putObject(this, ITEM, item); // relaxed write
456 * Sets item to self and waiter to null, to avoid garbag
580 Object item = p.item; local
671 Object item = s.item; local
742 Object item = p.item; local
783 Object item = p.item; local
812 Object item = p.item; local
940 Object item = s.item; local
1173 Object item = p.item; local
1387 Object item = p.item; local
1415 Object item = p.item; local
1475 Object item = p.item; local
1528 E item = (E) s.readObject(); local
    [all...]
ConcurrentLinkedDeque.java 84 * A node contains the expected E ("item") and links to predecessor
87 * class Node<E> { volatile Node<E> prev, next; volatile E item; }
89 * A node p is considered "live" if it contains a non-null item
90 * (p.item != null). When an item is CASed to null, the item is
115 * p.item != null ||
130 * 1. "logical deletion" by CASing item to null atomically removes
231 * - head.item may or may not be null
245 * - tail.item may or may not be nul
264 volatile E item; field in class:ConcurrentLinkedDeque.Node
875 E item = p.item; local
884 E item = p.item; local
907 E item = p.item; local
918 E item = p.item; local
1004 E item = p.item; local
1028 E item = p.item; local
1048 E item = p.item; local
1190 E item = p.item; local
1216 E item = p.item; local
1369 E item = p.item; local
1383 E item = nextItem; local
1536 E item = p.item; local
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/xml/
marshal_test.go 103 Items []string `xml:">item"`
560 `<item>A</item>` +
561 `<item>B</item>` +
569 `<item>A</item>` +
570 `<item>B</item>` +
    [all...]
  /prebuilts/go/linux-x86/src/encoding/xml/
marshal_test.go 103 Items []string `xml:">item"`
560 `<item>A</item>` +
561 `<item>B</item>` +
569 `<item>A</item>` +
570 `<item>B</item>` +
    [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 

Completed in 3741 milliseconds

1 2