HomeSort by relevance Sort by last modified time
    Searched refs:item (Results 251 - 275 of 4541) sorted by null

<<11121314151617181920>>

  /sdk/ddms/app/src/com/android/ddms/
DropdownSelectionListener.java 41 public DropdownSelectionListener(ToolItem item) {
42 mDropdown = item;
43 mMenu = new Menu(item.getParent().getShell(), SWT.POP_UP);
47 * Add an item to the dropdown menu.
50 MenuItem item = new MenuItem(mMenu, SWT.NONE); local
51 item.setText(label);
52 item.addSelectionListener(new SelectionAdapter() {
69 ToolItem item = (ToolItem) e.widget; local
70 Rectangle rect = item.getBounds();
71 Point pt = item.getParent().toDisplay(new Point(rect.x, rect.y))
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
HeaderSection.java 29 /** {@code non-null;} the list of the one item in the section */
40 HeaderItem item = new HeaderItem(); local
41 item.setIndex(0);
43 this.list = Collections.singletonList(item);
54 public Collection<? extends Item> items() {
  /dalvik/dx/src/com/android/dx/dex/file/
HeaderSection.java 29 /** {@code non-null;} the list of the one item in the section */
40 HeaderItem item = new HeaderItem(); local
41 item.setIndex(0);
43 this.list = Collections.singletonList(item);
54 public Collection<? extends Item> items() {
  /development/samples/AppNavigation/src/com/example/android/appnavigation/app/
SimpleUpActivity.java 37 public boolean onOptionsItemSelected(MenuItem item) {
38 if (item.getItemId() == android.R.id.home) {
42 return super.onOptionsItemSelected(item);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.6.1-3.js 86 var item = 0;
94 array[item++] = new TestCase( SECTION,
99 array[item++] = new TestCase( SECTION,
104 array[item++] = new TestCase( SECTION,
109 array[item++] = new TestCase( SECTION,
114 array[item++] = new TestCase( SECTION,
119 array[item++] = new TestCase( SECTION,
129 array[item++] = new TestCase( SECTION,
134 array[item++] = new TestCase( SECTION,
139 array[item++] = new TestCase( SECTION
    [all...]
11.14-1.js 67 var item = 0;
69 array[item++] = new TestCase( SECTION, "true, false", false, eval("true, false") );
70 array[item++] = new TestCase( SECTION, "VAR1=true, VAR2=false", false, eval("VAR1=true, VAR2=false") );
71 array[item++] = new TestCase( SECTION, "VAR1=true, VAR2=false;VAR1", true, eval("VAR1=true, VAR2=false; VAR1") );
  /external/webkit/Source/WebCore/history/android/
AndroidWebHistoryBridge.h 37 AndroidWebHistoryBridge(HistoryItem* item)
41 , m_historyItem(item) { }
43 virtual void updateHistoryItem(HistoryItem* item) = 0;
  /external/webrtc/src/system_wrappers/interface/
map_wrapper.h 47 // Removes item from map.
48 int Erase(MapItem* item);
50 // Finds item with associated with id and removes it from the map.
62 // Returns a pointer to the MapItem stored after item in the map.
63 MapItem* Next(MapItem* item) const;
65 // Returns a pointer to the MapItem stored before item in the map.
66 MapItem* Previous(MapItem* item) const;
  /frameworks/support/v4/ics/android/support/v4/app/
ShareCompatICS.java 28 public static void configureMenuItem(MenuItem item, Activity callingActivity, Intent intent) {
29 ActionProvider itemProvider = item.getActionProvider();
39 item.setActionProvider(provider);
  /external/stlport/src/
lock_free_slist.h 39 struct item { struct in class:_STLP_atomic_freelist
40 item* _M_next;
51 * Atomically pushes the specified item onto the freelist.
53 * @param __item [in] Item to add to the front of the list
55 void push(item* __item) {
83 * Atomically removes the topmost item from the freelist and returns a
86 * @return Item that was removed from front of list; NULL if list empty
88 item* pop() {
89 item* __result;
108 * topmost item. The items are still chained and may be traversed safely a
186 struct item { struct in class:_STLP_atomic_freelist
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
lock_free_slist.h 39 struct item { struct in class:_STLP_atomic_freelist
40 item* _M_next;
51 * Atomically pushes the specified item onto the freelist.
53 * @param __item [in] Item to add to the front of the list
55 void push(item* __item) {
83 * Atomically removes the topmost item from the freelist and returns a
86 * @return Item that was removed from front of list; NULL if list empty
88 item* pop() {
89 item* __result;
108 * topmost item. The items are still chained and may be traversed safely a
186 struct item { struct in class:_STLP_atomic_freelist
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentLinkedQueue.java 91 * Nodes that are reachable from head. CASing the item
121 * CASing a Node's item reference to null atomically removes the
130 * for a volatile write to item by using Unsafe.putObject instead
135 * non-null item. If the queue is empty, all items must of course
137 * Node with null item. Both head and tail are only updated using
143 volatile E item; field in class:ConcurrentLinkedQueue.Node
147 * Constructs a new node. Uses relaxed write because item can
150 Node(E item) {
151 UNSAFE.putObject(this, itemOffset, item);
173 objectFieldOffset(UNSAFE, "item", Node.class)
313 E item = p.item; local
338 E item = p.item; local
422 E item = p.item; local
444 E item = p.item; local
538 E item = p.item; local
587 E item = p.item; local
600 E item = q.item; local
670 E item = p.item; local
718 Object item = p.item; local
737 Object item; local
    [all...]
  /external/chromium/webkit/glue/
glue_serialize_unittest.cc 45 WebHistoryItem item; local
46 item.initialize();
48 item.setURLString(WebString::fromUTF8("urlString"));
49 item.setOriginalURLString(WebString::fromUTF8("originalURLString"));
50 item.setTarget(WebString::fromUTF8("target"));
51 item.setParent(WebString::fromUTF8("parent"));
52 item.setTitle(WebString::fromUTF8("title"));
53 item.setAlternateTitle(WebString::fromUTF8("alternateTitle"));
54 item.setLastVisitedTime(13.37);
55 item.setScrollOffset(WebPoint(42, -42))
135 const WebHistoryItem& item = MakeHistoryItem(false, false); local
152 const WebHistoryItem& item = MakeHistoryItem(true, true); local
    [all...]
  /external/webkit/Source/WebCore/bindings/scripts/test/GObject/
WebKitDOMTestObj.cpp 64 WebCore::TestObj * item = WebKit::core(self); local
65 item->voidMethod();
73 WebCore::TestObj * item = WebKit::core(self); local
82 item->voidMethodWithArgs(int_arg, converted_str_arg, converted_obj_arg);
90 WebCore::TestObj * item = WebKit::core(self); local
91 glong res = item->intMethod();
100 WebCore::TestObj * item = WebKit::core(self); local
109 glong res = item->intMethodWithArgs(int_arg, converted_str_arg, converted_obj_arg);
118 WebCore::TestObj * item = WebKit::core(self); local
119 PassRefPtr<WebCore::TestObj> g_res = WTF::getPtr(item->objMethod())
129 WebCore::TestObj * item = WebKit::core(self); local
148 WebCore::TestObj * item = WebKit::core(self); local
167 WebCore::TestObj * item = WebKit::core(self); local
192 WebCore::TestObj * item = WebKit::core(self); local
207 WebCore::TestObj * item = WebKit::core(self); local
222 WebCore::TestObj * item = WebKit::core(self); local
243 WebCore::TestObj * item = WebKit::core(self); local
258 WebCore::TestObj * item = WebKit::core(self); local
267 WebCore::TestObj * item = WebKit::core(self); local
276 WebCore::TestObj * item = WebKit::core(self); local
285 WebCore::TestObj * item = WebKit::core(self); local
294 WebCore::TestObj * item = WebKit::core(self); local
303 WebCore::TestObj * item = WebKit::core(self); local
312 WebCore::TestObj * item = WebKit::core(self); local
323 WebCore::TestObj * item = WebKit::core(self); local
338 WebCore::TestObj * item = WebKit::core(self); local
355 WebCore::TestObj * item = WebKit::core(self); local
364 WebCore::TestObj * item = WebKit::core(self); local
373 WebCore::TestObj * item = WebKit::core(self); local
382 WebCore::TestObj * item = WebKit::core(self); local
391 WebCore::TestObj * item = WebKit::core(self); local
400 WebCore::TestObj * item = WebKit::core(self); local
410 WebCore::TestObj * item = WebKit::core(self); local
420 WebCore::TestObj * item = WebKit::core(self); local
430 WebCore::TestObj * item = WebKit::core(self); local
441 WebCore::TestObj * item = WebKit::core(self); local
451 WebCore::TestObj * item = WebKit::core(self); local
460 WebCore::TestObj * item = WebKit::core(self); local
470 WebCore::TestObj * item = WebKit::core(self); local
479 WebCore::TestObj * item = WebKit::core(self); local
489 WebCore::TestObj * item = WebKit::core(self); local
498 WebCore::TestObj * item = WebKit::core(self); local
508 WebCore::TestObj * item = WebKit::core(self); local
517 WebCore::TestObj * item = WebKit::core(self); local
527 WebCore::TestObj * item = WebKit::core(self); local
536 WebCore::TestObj * item = WebKit::core(self); local
546 WebCore::TestObj * item = WebKit::core(self); local
557 WebCore::TestObj * item = WebKit::core(self); local
568 WebCore::TestObj * item = WebKit::core(self); local
583 WebCore::TestObj * item = WebKit::core(self); local
594 WebCore::TestObj * item = WebKit::core(self); local
609 WebCore::TestObj * item = WebKit::core(self); local
619 WebCore::TestObj * item = WebKit::core(self); local
628 WebCore::TestObj * item = WebKit::core(self); local
638 WebCore::TestObj * item = WebKit::core(self); local
649 WebCore::TestObj * item = WebKit::core(self); local
659 WebCore::TestObj * item = WebKit::core(self); local
668 WebCore::TestObj * item = WebKit::core(self); local
678 WebCore::TestObj * item = WebKit::core(self); local
687 WebCore::TestObj * item = WebKit::core(self); local
697 WebCore::TestObj * item = WebKit::core(self); local
706 WebCore::TestObj * item = WebKit::core(self); local
716 WebCore::TestObj * item = WebKit::core(self); local
727 WebCore::TestObj * item = WebKit::core(self); local
737 WebCore::TestObj * item = WebKit::core(self); local
748 WebCore::TestObj * item = WebKit::core(self); local
758 WebCore::TestObj * item = WebKit::core(self); local
769 WebCore::TestObj * item = WebKit::core(self); local
779 WebCore::TestObj * item = WebKit::core(self); local
788 WebCore::TestObj * item = WebKit::core(self); local
798 WebCore::TestObj * item = WebKit::core(self); local
807 WebCore::TestObj * item = WebKit::core(self); local
817 WebCore::TestObj * item = WebKit::core(self); local
828 WebCore::TestObj * item = WebKit::core(self); local
838 WebCore::TestObj * item = WebKit::core(self); local
849 WebCore::TestObj * item = WebKit::core(self); local
865 WebCore::TestObj * item = WebKit::core(self); local
880 WebCore::TestObj * item = WebKit::core(self); local
890 WebCore::TestObj * item = WebKit::core(self); local
905 WebCore::TestObj * item = WebKit::core(self); local
916 WebCore::TestObj * item = WebKit::core(self); local
933 WebCore::TestObj * item = WebKit::core(self); local
943 WebCore::TestObj * item = WebKit::core(self); local
960 WebCore::TestObj * item = WebKit::core(self); local
971 WebCore::TestObj * item = WebKit::core(self); local
985 WebCore::TestObj * item = WebKit::core(self); local
996 WebCore::TestObj * item = WebKit::core(self); local
1010 WebCore::TestObj * item = WebKit::core(self); local
1021 WebCore::TestObj * item = WebKit::core(self); local
1035 WebCore::TestObj * item = WebKit::core(self); local
1045 WebCore::TestObj * item = WebKit::core(self); local
1055 WebCore::TestObj * item = WebKit::core(self); local
1065 WebCore::TestObj * item = WebKit::core(self); local
1074 WebCore::TestObj * item = WebKit::core(self); local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeListBase.java 62 * Returns the <code>index</code>th item in the collection. If
70 public Node item(int index) { method in class:DTMNodeListBase
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/
15.4.4.js 49 var item = 0;
52 // array[item++] = new TestCase( SECTION, "Array.prototype.__proto__", Object.prototype, Array.prototype.__proto__ );
53 // array[item++] = new TestCase( SECTION, "Array.__proto__.valueOf == Object.__proto__.valueOf", true, (Array.__proto__.valueOf == Object.__proto__.valueOf) );
55 array[item++] = new TestCase( SECTION, "Array.prototype.length", 0, Array.prototype.length );
58 array[item++] = new TestCase( SECTION, "typeof Array.prototype", "object", typeof Array.prototype );
60 array[item++] = new TestCase( SECTION,
  /external/webkit/Source/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/Source/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.2.2-4.js 50 var item = 0;
54 array[item++] = new TestCase( SECTION, "Date( 2000,1,29,0,0,0)", (new Date()).toString(), Date(2000,1,29,0,0,0));
55 array[item++] = new TestCase( SECTION, "Date( 2000,1,28,23,59,59)", (new Date()).toString(), Date( 2000,1,28,23,59,59));
56 array[item++] = new TestCase( SECTION, "Date( 2000,1,27,16,0,0)", (new Date()).toString(), Date(2000,1,27,16,0,0));
60 array[item++] = new TestCase( SECTION, "Date(2004,11,31,23,59,59)", (new Date()).toString(), Date(2004,11,31,23,59,59));
61 array[item++] = new TestCase( SECTION, "Date(2005,0,1,0,0,0)", (new Date()).toString(), Date(2005,0,1,0,0,0) );
62 array[item++] = new TestCase( SECTION, "Date(2005,0,1,0,0,1)", (new Date()).toString(), Date(2005,0,1,0,0,1) );
63 array[item++] = new TestCase( SECTION, "Date(2004,11,31,16,0,0,0)", (new Date()).toString(), Date(2004,11,31,16,0,0,0));
66 array[item++] = new TestCase( SECTION, "Date(2031,11,31,23,59,59)", (new Date()).toString(), Date(2031,11,31,23,59,59));
67 array[item++] = new TestCase( SECTION, "Date(2032,0,1,0,0,0)", (new Date()).toString(), Date(2032 (…)
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/GlobalObject/
15.1.1.2.js 45 var item = 0;
47 array[item++] = new TestCase( SECTION, "Infinity", Number.POSITIVE_INFINITY, Infinity );
48 array[item++] = new TestCase( SECTION, "this.Infinity", Number.POSITIVE_INFINITY, this.Infinity );
49 array[item++] = new TestCase( SECTION, "typeof Infinity", "number", typeof Infinity );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/LexicalConventions/
7.3-1.js 45 var item = 0;
46 array[item] = new TestCase( SECTION,
51 // "\u000A" array[item].actual = "fail";
53 item++;
55 array[item] = new TestCase( SECTION,
56 "// test \\n array[item].actual = \"pass\"",
60 var x = "// test \n array[item].actual = 'pass'"
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Number/
15.7.4-1.js 43 var item = 0;
45 array[item++] = new TestCase(SECTION, "Number.prototype.valueOf()", 0, Number.prototype.valueOf() );
46 array[item++] = new TestCase(SECTION, "typeof(Number.prototype)", "object", typeof(Number.prototype) );
47 array[item++] = new TestCase(SECTION, "Number.prototype.constructor == Number", true, Number.prototype.constructor == Number );
48 // array[item++] = new TestCase(SECTION, "Number.prototype == Number.__proto__", true, Number.prototype == Number.__proto__ );
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/Source/JavaScriptCore/tests/mozilla/ecma/ObjectObjects/
15.2.1.2.js 61 var item = 0;
65 array[item++] = new TestCase( SECTION, "var MYOB = Object(); MYOB.valueOf()", MYOB, MYOB.valueOf() );
66 array[item++] = new TestCase( SECTION, "typeof Object()", "object", typeof (Object(null)) );
67 array[item++] = new TestCase( SECTION, "var MYOB = Object(); MYOB.toString()", "[object Object]", eval("var MYOB = Object(); MYOB.toString()") );
15.2.2.2.js 56 var item = 0;
58 array[item++] = new TestCase( SECTION, "typeof new Object()", "object", typeof new Object() );
59 array[item++] = new TestCase( SECTION, "Object.prototype.toString()", "[object Object]", Object.prototype.toString() );
60 array[item++] = new TestCase( SECTION, "(new Object()).toString()", "[object Object]", (new Object()).toString() );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/
15.5.4.5-6.js 64 var item = 0;
66 array[item++] = new TestCase( SECTION,
71 array[item++] = new TestCase( SECTION,
76 array[item++] = new TestCase( SECTION,

Completed in 807 milliseconds

<<11121314151617181920>>