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

<<51525354555657585960>>

  /packages/apps/Mms/res/values-it/
strings.xml 138 <item msgid="4840183714016984112">"1 secondo"</item>
139 <item msgid="3734955613666864447">"2 secondi"</item>
140 <item msgid="6032232473048379828">"3 secondi"</item>
141 <item msgid="5978471781525927827">"4 secondi"</item>
142 <item msgid="4888440297621208402">"5 secondi"</item>
    [all...]
  /packages/apps/Mms/res/values-ja/
strings.xml 138 <item msgid="4840183714016984112">"1?"</item>
139 <item msgid="3734955613666864447">"2?"</item>
140 <item msgid="6032232473048379828">"3?"</item>
141 <item msgid="5978471781525927827">"4?"</item>
142 <item msgid="4888440297621208402">"5?"</item>
    [all...]
  /packages/apps/Mms/res/values-ko/
strings.xml 138 <item msgid="4840183714016984112">"1?"</item>
139 <item msgid="3734955613666864447">"2?"</item>
140 <item msgid="6032232473048379828">"3?"</item>
141 <item msgid="5978471781525927827">"4?"</item>
142 <item msgid="4888440297621208402">"5?"</item>
    [all...]
  /packages/apps/Mms/res/values-nb/
strings.xml 138 <item msgid="4840183714016984112">"1 sekund"</item>
139 <item msgid="3734955613666864447">"2 sekunder"</item>
140 <item msgid="6032232473048379828">"3 sekunder"</item>
141 <item msgid="5978471781525927827">"4 sekunder"</item>
142 <item msgid="4888440297621208402">"5 sekunder"</item>
    [all...]
  /packages/apps/Mms/res/values-ru/
strings.xml 139 <item msgid="4840183714016984112">"1 ???????"</item>
140 <item msgid="3734955613666864447">"2 ???."</item>
141 <item msgid="6032232473048379828">"3 ???."</item>
142 <item msgid="5978471781525927827">"4 ???."</item>
143 <item msgid="4888440297621208402">"5 ??????"</item>
    [all...]
  /packages/apps/Mms/res/values-zh-rCN/
strings.xml 138 <item msgid="4840183714016984112">"1 ?"</item>
139 <item msgid="3734955613666864447">"2 ?"</item>
140 <item msgid="6032232473048379828">"3 ?"</item>
141 <item msgid="5978471781525927827">"4 ?"</item>
142 <item msgid="4888440297621208402">"5 ?"</item>
    [all...]
  /packages/apps/Mms/res/values-zh-rTW/
strings.xml 138 <item msgid="4840183714016984112">"1 ?"</item>
139 <item msgid="3734955613666864447">"2 ?"</item>
140 <item msgid="6032232473048379828">"3 ?"</item>
141 <item msgid="5978471781525927827">"4 ?"</item>
142 <item msgid="4888440297621208402">"5 ?"</item>
    [all...]
  /development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/
Notepadv2.java 52 // Get all of the rows from the database and create the item list
76 public boolean onMenuItemSelected(int featureId, MenuItem item) {
77 switch(item.getItemId()) {
83 return super.onMenuItemSelected(featureId, item);
95 public boolean onContextItemSelected(MenuItem item) {
96 return super.onContextItemSelected(item);
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/
15.3.4-1.js 57 var item = 0;
58 array[item++] = new TestCase( SECTION,
64 // array[item++] = new TestCase( SECTION, "Function.prototype.__proto__", Object.prototype, Function.prototype.__proto__ );
65 array[item++] = new TestCase( SECTION, "Function.prototype.valueOf", Object.prototype.valueOf, Function.prototype.valueOf );
66 array[item++] = new TestCase( SECTION, "Function.prototype()", (void 0), Function.prototype() );
67 array[item++] = new TestCase( SECTION, "Function.prototype(1,true,false,'string', new Date(),null)", (void 0), Function.prototype(1,true,false,'string', new Date(),null) );
15.3.4.js 56 var item = 0;
57 array[item++] = new TestCase( SECTION,
63 // array[item++] = new TestCase( SECTION, "Function.prototype.__proto__", Object.prototype, Function.prototype.__proto__ );
64 array[item++] = new TestCase( SECTION, "Function.prototype.valueOf", Object.prototype.valueOf, Function.prototype.valueOf );
65 array[item++] = new TestCase( SECTION, "Function.prototype()", (void 0), Function.prototype() );
66 array[item++] = new TestCase( SECTION, "Function.prototype(1,true,false,'string', new Date(),null)", (void 0), Function.prototype(1,true,false,'string', new Date(),null) );
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/LexicalConventions/
7.1-1.js 55 var item = 0;
59 array[item++] = new TestCase( SECTION, 'var'+'\t'+'MYVAR1=10;MYVAR1', 10, eval('var'+'\t'+'MYVAR1=10;MYVAR1') );
60 array[item++] = new TestCase( SECTION, 'var'+'\f'+'MYVAR2=10;MYVAR2', 10, eval('var'+'\f'+'MYVAR2=10;MYVAR2') );
61 array[item++] = new TestCase( SECTION, 'var'+'\v'+'MYVAR2=10;MYVAR2', 10, eval('var'+'\v'+'MYVAR2=10;MYVAR2') );
62 array[item++] = new TestCase( SECTION, 'var'+'\ '+'MYVAR2=10;MYVAR2', 10, eval('var'+'\ '+'MYVAR2=10;MYVAR2') );
66 array[item++] = new TestCase( SECTION,
7.5-1.js 45 var item = 0;
47 array[item++] = new TestCase( SECTION, "var $123 = 5", 5, eval("var $123 = 5;$123") );
48 array[item++] = new TestCase( SECTION, "var _123 = 5", 5, eval("var _123 = 5;_123") );
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Number/
15.7.4.js 57 var item = 0;
58 array[item++] = new TestCase( SECTION,
62 array[item++] = new TestCase( SECTION, "typeof Number.prototype", "object", typeof Number.prototype );
63 array[item++] = new TestCase( SECTION, "Number.prototype.valueOf()", 0, Number.prototype.valueOf() );
67 // array[item++] = new TestCase( SECTION, "Number.prototype.__proto__", Object.prototype, Number.prototype.__proto__ );
68 // array[item++] = new TestCase( SECTION, "Number.prototype.__proto__ == Object.prototype", true, Number.prototype.__proto__ == Object.prototype );
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/String/
15.5.4.3-2.js 64 var item = 0;
66 array[item++] = new TestCase( SECTION,
70 array[item++] = new TestCase( SECTION,
74 array[item++] = new TestCase( SECTION,
78 array[item++] = new TestCase( SECTION,
83 array[item++] = new TestCase( SECTION,
  /external/webkit/LayoutTests/http/tests/appcache/
dynamic-entries-no-cache.html-disabled 55 shouldBe("applicationCache.items.item(0)", "null");
56 shouldBe("applicationCache.items.item(1)", "null");
57 shouldBe("applicationCache.items.item(0xffffffff)", "null");
58 shouldBe("applicationCache.items.item(0xfffffffe)", "null");
59 shouldBe("applicationCache.items.item(-1)", "null");
60 shouldBe("applicationCache.items.item(-2)", "null");
  /external/webkit/WebCore/svg/graphics/
SVGResource.cpp 90 void SVGResource::removeClient(SVGStyledElement* item)
97 if (!resource->m_clients.contains(item))
99 resource->m_clients.remove(item);
103 void SVGResource::addClient(SVGStyledElement* item)
105 if (m_clients.contains(item))
108 m_clients.add(item);
  /frameworks/base/core/java/android/widget/
ResourceCursorAdapter.java 43 * for this list item. Unless you override them later, this will
44 * define both the item views and the drop down views.
58 * for this list item. Unless you override them later, this will
59 * define both the item views and the drop down views.
88 * <p>Sets the layout resource of the item views.</p>
90 * @param layout the layout resources used to create item views
  /frameworks/base/include/utils/
Vector.h 88 //! read-only access to an item at a given index
101 //! copy-on write support, grants write access to an item
123 //! insert on onr several items initialized from a prototype item
127 //! pushes an item initialized with its default constructor
129 //! pushes an item on the top of the stack
130 void push(const TYPE& item);
131 //! same as push() but returns the index the item was added at (or an error)
133 //! same as push() but returns the index the item was added at (or an error)
134 ssize_t add(const TYPE& item);
135 //! replace an item with a new one initialized with its default constructo
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
ItemInfo.java 27 * Represents an item in the launcher.
34 * The id in the settings database for this item
47 * The id of the container that holds this item. For the desktop, this will be
80 * Indicates whether the item is a gesture.
99 * Write the fields of this item to the DB
143 return "Item(id=" + this.id + " type=" + this.itemType + ")";
  /external/iproute2/doc/
ip-cref.tex 53 \item \verb|-V|, \verb|-Version|
58 \item \verb|-s|, \verb|-stats|, \verb|-statistics|
65 \item \verb|-f|, \verb|-family| followed by a protocol family
74 \item \verb|-4|
78 \item \verb|-6|
82 \item \verb|-0|
87 \item \verb|-o|, \verb|-oneline|
94 \item \verb|-r|, \verb|-resolve|
112 \item \verb|link| --- network device
113 \item \verb|address| --- protocol (IP or IPv6) address on a devic
    [all...]
  /development/samples/NotePad/src/com/example/android/notepad/
NotesList.java 46 // Menu item ids
121 // This is the selected item.
147 public boolean onOptionsItemSelected(MenuItem item) {
148 switch (item.getItemId()) {
150 // Launch activity to insert a new item
154 return super.onOptionsItemSelected(item);
169 // For some reason the requested item isn't available, do nothing
176 // Add a menu item to delete the note
181 public boolean onContextItemSelected(MenuItem item) {
184 info = (AdapterView.AdapterContextMenuInfo) item.getMenuInfo()
    [all...]
  /external/libpng/projects/visualc71/
README_zlib.txt 20 binaries set "zlib" as the startup project (Select "zlib" tree view item +
22 binaries set it to "example" (Select "example" tree view item + Project |
24 "minigzip" (Select "minigzip" tree view item + Project | Set as StartUp
  /external/opencore/oscl/oscl/osclerror/src/
oscl_error_trapcleanup.cpp 174 //Push a CBase item onto the cleanup stack
183 OsclTrapStackItem * item = new(ptr) OsclTrapStackItem(aCBase); local
184 Push(item);
188 //Push a nonOsclTrapStackCBase item onto the cleanup stack
197 OsclTrapStackItem *item = new(ptr) OsclTrapStackItem(aTAny); local
198 Push(item);
202 //Push a nonOsclTrapStackCBase item onto the trap mark stack
205 //construct this item using the stack top element memory
218 OsclTrapStackItem *item = new(ptr) OsclTrapStackItem(anItem); local
219 Push(item);
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Boolean/
15.6.3.1.js 52 var item = 0;
54 array[item++] = new TestCase( SECTION, "Boolean.prototype.valueOf()", false, Boolean.prototype.valueOf() );
55 array[item++] = new TestCase( SECTION, "Boolean.length", 1, Boolean.length );
15.6.3.js 48 var item = 0;
50 array[item++] = new TestCase( SECTION, "Boolean.__proto__ == Function.prototype", true, Boolean.__proto__ == Function.prototype );
51 array[item++] = new TestCase( SECTION, "Boolean.length", 1, Boolean.length );

Completed in 244 milliseconds

<<51525354555657585960>>