/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/ |
15.4.4.2.js | 46 var item = 0; 48 array[item++] = new TestCase( SECTION, "Array.prototype.toString.length", 0, Array.prototype.toString.length ); 50 array[item++] = new TestCase( SECTION, "(new Array()).toString()", "", (new Array()).toString() ); 51 array[item++] = new TestCase( SECTION, "(new Array(2)).toString()", ",", (new Array(2)).toString() ); 52 array[item++] = new TestCase( SECTION, "(new Array(0,1)).toString()", "0,1", (new Array(0,1)).toString() ); 53 array[item++] = new TestCase( SECTION, "(new Array( Number.NaN, Number.POSITIVE_INFINITY, Number.NEGATIVE_INFINITY)).toString()", "NaN,Infinity,-Infinity", (new Array( Number.NaN, Number.POSITIVE_INFINITY, Number.NEGATIVE_INFINITY)).toString() ); 55 array[item++] = new TestCase( SECTION, "(new Array( Boolean(1), Boolean(0))).toString()", "true,false", (new Array(Boolean(1),Boolean(0))).toString() ); 56 array[item++] = new TestCase( SECTION, "(new Array(void 0,null)).toString()", ",", (new Array(void 0,null)).toString() ); 68 array[item++] = new TestCase( SECTION, "MYARR.toString()", EXPECT_STRING, MYARR.toString() );
|
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/NativeObjects/ |
15-1.js | 51 var item = 0; 53 array[item++] = new TestCase( SECTION, "Function.prototype.__proto__", Object.prototype, Function.prototype.__proto__ ); 54 array[item++] = new TestCase( SECTION, "Array.prototype.__proto__", Object.prototype, Array.prototype.__proto__ ); 55 array[item++] = new TestCase( SECTION, "String.prototype.__proto__", Object.prototype, String.prototype.__proto__ ); 56 array[item++] = new TestCase( SECTION, "Boolean.prototype.__proto__", Object.prototype, Boolean.prototype.__proto__ ); 57 array[item++] = new TestCase( SECTION, "Number.prototype.__proto__", Object.prototype, Number.prototype.__proto__ ); 58 // array[item++] = new TestCase( SECTION, "Math.prototype.__proto__", Object.prototype, Math.prototype.__proto__ ); 59 array[item++] = new TestCase( SECTION, "Date.prototype.__proto__", Object.prototype, Date.prototype.__proto__ ); 60 array[item++] = new TestCase( SECTION, "TestCase.prototype.__proto__", Object.prototype, TestCase.prototype.__proto__ ); 62 array[item++] = new TestCase( SECTION, "MyObject.prototype.__proto__", Object.prototype, MyObject.prototyp (…) [all...] |
/frameworks/base/core/java/com/android/internal/view/menu/ |
SubMenuBuilder.java | 34 public SubMenuBuilder(Context context, MenuBuilder parentMenu, MenuItemImpl item) { 38 mItem = item; 80 boolean dispatchMenuItemSelected(MenuBuilder menu, MenuItem item) { 81 return super.dispatchMenuItemSelected(menu, item) || 82 mParentMenu.dispatchMenuItemSelected(menu, item); 116 public boolean expandItemActionView(MenuItemImpl item) { 117 return mParentMenu.expandItemActionView(item); 121 public boolean collapseItemActionView(MenuItemImpl item) { 122 return mParentMenu.collapseItemActionView(item);
|
/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() {
|
/external/dexmaker/src/dx/java/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() {
|
/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 | 46 // Removes item from map. 47 int Erase(MapItem* item); 49 // Finds item with associated with id and removes it from the map. 61 // Returns a pointer to the MapItem stored after item in the map. 62 MapItem* Next(MapItem* item) const; 64 // Returns a pointer to the MapItem stored before item in the map. 65 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 | 98 * Nodes that are reachable from head. CASing the item 128 * CASing a Node's item reference to null atomically removes the 137 * for a volatile write to item by using Unsafe.putObject instead 142 * non-null item. If the queue is empty, all items must of course 144 * Node with null item. Both head and tail are only updated using 150 volatile E item; field in class:ConcurrentLinkedQueue.Node 154 * Constructs a new node. Uses relaxed write because item can 157 Node(E item) { 158 UNSAFE.putObject(this, itemOffset, item); 184 (k.getDeclaredField("item")); 330 E item = p.item; local 355 E item = p.item; local 439 E item = p.item; local 461 E item = p.item; local 555 E item = p.item; local 603 E item = p.item; local 616 E item = q.item; local 686 E item = p.item; local 734 Object item = p.item; local 753 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...] |
/frameworks/opt/datetimepicker/src/com/googlecode/eyesfree/utils/ |
TouchExplorationHelper.java | 64 * @return The current accessibility focused item, or {@code null} if no 65 * item is focused. 72 * Clears the current accessibility focused item. 84 * Requests accessibility focus be placed on the specified item. 86 * @param item The item to place focus on. 88 public void setFocusedItem(T item) { 89 final int itemId = getIdForItem(item); 109 * Invalidates cached information for a particular item. 116 * @param item 147 final T item = getItemForId(virtualViewId); local 163 final T item = getItemForId(virtualViewId); local 201 final T item = getItemAt(event.getX(), event.getY()); 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/bison/src/ |
ielr.h | 42 bool ielr_item_has_lookahead (state *s, symbol_number lhs, size_t item,
|
/external/jmonkeyengine/engine/src/android/com/jme3/util/ |
RingBuffer.java | 32 public void push(T item) { 36 buffer[indexIn] = item; 45 T item = buffer[indexOut]; local 49 return item;
|
/external/smali/deodexerant/ |
deodexerant.c | 75 InlineOperation *item = &inlineTable[i]; local 77 printf("%s->%s%s\n", item->classDescriptor, item->methodName, item->methodSignature);
|
/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 );
|