HomeSort by relevance Sort by last modified time
    Searched full:item (Results 1751 - 1775 of 4518) sorted by null

<<71727374757677787980>>

  /development/samples/ApiDemos/res/values/
ids.xml 18 <item type="id" name="snack" />
  /development/samples/ApiDemos/src/com/example/android/apis/view/
Gallery1.java 50 // Set a item click listener, and just Toast the clicked position
67 public boolean onContextItemSelected(MenuItem item) {
68 AdapterContextMenuInfo info = (AdapterContextMenuInfo) item.getMenuInfo();
105 // The preferred Gallery item background
LinearLayout8.java 38 // Menu item Ids
73 public boolean onOptionsItemSelected(MenuItem item) {
74 switch (item.getItemId()) {
104 return super.onOptionsItemSelected(item);
  /development/samples/Home/res/drawable/
all_applications_background.xml 22 <item android:drawable="@drawable/all_applications_label_background" />
  /development/samples/SearchableDictionary/res/menu/
options_menu.xml 21 <item android:id="@+id/search"
  /external/clearsilver/man/man3/
dictModifyValue.3 14 dictModifyValue - create/modify an item.
dictSearch.3 27 id - identifier of item to find.
  /external/icu4c/test/intltest/
canittst.h 48 void expectEqual(const UnicodeString &message, const UnicodeString &item, const UnicodeString &a, const UnicodeString &b);
  /external/icu4c/tools/icuswap/
icuswap.cpp 182 * last item if charset swapping is done,
183 * because the last item may be resorted into the middle and then needs
415 /* no items: count only the item count and return */
419 /* read the last item's offset and preflight it */
429 /* check that the itemCount fits, then the ToC table, then at least the header of the last item */
443 /* offset of the last item plus at least 20 bytes for its header */
456 /* swap the item count */
464 /* swap the item name strings */
469 udata_printError(ds, "udata_swapPackage() failed to swap the data item name strings\n");
496 udata_printError(ds, "udata_swapPackage() failed: ToC item %ld does not have the input package name as a prefix\n"
    [all...]
  /external/icu4c/tools/toolutil/
pkg_imp.h 25 * Read an ICU data item with any platform type,
  /external/webkit/JavaScriptCore/API/tests/
minidom.js 62 print("item " + i + ": " + childNodes.item(i));
73 print("item " + i + ": " + childNodes.item(i));
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Boolean/
15.6.4.2-2.js 47 var item = 0;
50 array[item++] = new TestCase( SECTION,
54 array[item++] = new TestCase( SECTION,
58 array[item++] = new TestCase( SECTION,
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Number/
15.7.4.2-2-n.js 50 var item = 0;
52 array[item++] = new TestCase(SECTION, "o = new Object(); o.toString = Number.prototype.toString; o.toString()", "error", "o = new Object(); o.toString = Number.prototype.toString; o.toString()" );
53 // array[item++] = new TestCase(SECTION, "o = new String(); o.toString = Number.prototype.toString; o.toString()", "error", "o = new String(); o.toString = Number.prototype.toString; o.toString()" );
54 // array[item++] = new TestCase(SECTION, "o = 3; o.toString = Number.prototype.toString; o.toString()", "error", "o = 3; o.toString = Number.prototype.toString; o.toString()" );
15.7.4.3-3-n.js 46 var item = 0;
48 // array[item++] = new TestCase("15.7.4.1", "v = Number.prototype.valueOf; num = 3; num.valueOf = v; num.valueOf()", "error", "v = Number.prototype.valueOf; num = 3; num.valueOf = v; num.valueOf()" );
49 array[item++] = new TestCase("15.7.4.1", "v = Number.prototype.valueOf; o = new String('Infinity'); o.valueOf = v; o.valueOf()", "error", "v = Number.prototype.valueOf; o = new String('Infinity'); o.valueOf = v; o.valueOf()" );
50 // array[item++] = new TestCase("15.7.4.1", "v = Number.prototype.valueOf; o = new Object(); o.valueOf = v; o.valueOf()", "error", "v = Number.prototype.valueOf; o = new Object(); o.valueOf = v; o.valueOf()" );
  /external/webkit/WebCore/css/
CSSFontSelector.cpp 229 // Each item in the src property's list is a single CSSFontFaceSource. Put them all into a CSSFontFace.
238 // An item in the list either specifies a string (local font name) or a URL (remote font to download).
239 CSSFontFaceSrcValue* item = static_cast<CSSFontFaceSrcValue*>(srcList->itemWithoutBoundsCheck(i)); local
243 foundSVGFont = item->isSVGFontFaceSrc() || item->svgFontFaceElement();
245 if (!item->isLocal()) {
248 if (allowDownloading && item->isSupportedFormat() && m_document) {
249 CachedFont* cachedFont = m_document->docLoader()->requestFont(item->resource());
255 source = new CSSFontFaceSource(item->resource(), cachedFont);
259 source = new CSSFontFaceSource(item->resource())
290 CSSPrimitiveValue* item = static_cast<CSSPrimitiveValue*>(familyList->itemWithoutBoundsCheck(i)); local
    [all...]
  /external/webkit/WebCore/platform/haiku/
ContextMenuItemHaiku.cpp 41 ContextMenuItem::ContextMenuItem(PlatformMenuItemDescription item)
43 m_platformDescription = item;
72 BMenuItem* item = m_platformDescription; local
74 return item;
  /external/webkit/WebCore/platform/wx/
ContextMenuWx.cpp 56 void ContextMenu::appendItem(ContextMenuItem& item)
61 checkOrEnableIfNeeded(item);
63 PlatformMenuItemDescription itemDescription = item.releasePlatformDescription();
83 s_itemActions.add(itemWx->GetId(), item.action());
  /external/webkit/WebCore/rendering/
SVGRenderTreeAsText.h 72 template<typename Item>
73 TextStream& operator<<(TextStream& ts, const Vector<Item*>& v)
87 template<typename Item>
88 TextStream& operator<<(TextStream& ts, const Vector<Item>& v)
  /frameworks/base/core/java/android/content/pm/
XmlSerializerAndParser.java 28 void writeAsXml(T item, XmlSerializer out) throws IOException;
  /frameworks/base/core/java/android/view/
SubMenu.java 24 * Sub menus do not support item icons, or nested sub menus.
79 * Change the icon associated with this submenu's item in its parent menu.
88 * Change the icon associated with this submenu's item in its parent menu.
98 * menu. Use this for setting additional item attributes.
  /frameworks/base/core/java/android/widget/
ImageButton.java 47 * &lt;item android:state_pressed="true"
49 * &lt;item android:state_focused="true"
51 * &lt;item android:drawable="@drawable/button_normal" /&gt; &lt;!-- default --&gt;
60 * <p>The order of the {@code &lt;item>} elements is important because they are
  /frameworks/base/core/res/res/color/
secondary_text_nofocus.xml 18 <item android:color="#eeeeee"/> <!-- not selected -->
  /frameworks/base/core/res/res/drawable/
menuitem_checkbox.xml 22 <item android:state_checked="true"
submenu_arrow.xml 22 <item android:drawable="@android:drawable/submenu_arrow_nofocus" />
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListLastItemPartiallyVisible.java 22 * A list where the very last item is partially visible, but still requires scrolling

Completed in 435 milliseconds

<<71727374757677787980>>