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

  /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/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 250 // set each item icon.
282 * list for similar tags, usually item id.
594 ctlv = searchForNextTag(ComprehensionTlvTag.ITEM, iter);
602 // We must have at least one menu item.
    [all...]
  /development/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...]
NewDetailsFragment.java 45 private static final String ITEM = "item";
138 PhotoItem item = (PhotoItem) (savedInstanceState != null ? local
139 savedInstanceState.getParcelable(ITEM) : null);
140 if (item != null) {
141 setItem(item);
146 public void onItemClicked(Presenter.ViewHolder itemViewHolder, Object item,
148 Log.i(TAG, "onItemClicked: " + item + " row " + row);
149 if (item instanceof PhotoItem){
151 intent.putExtra(DetailsActivity.EXTRA_ITEM, (PhotoItem) item);
    [all...]

Completed in 604 milliseconds