HomeSort by relevance Sort by last modified time
    Searched full:item (Results 776 - 800 of 9644) sorted by null

<<31323334353637383940>>

  /external/webkit/LayoutTests/fast/xpath/py-dom-xpath/
data-expected.txt 6 PASS string(//a:item)
7 PASS name(//a:item)
8 PASS local-name(//a:item)
9 PASS namespace-uri(//a:item)
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Boolean/
15.6.4.2-1.js 49 var item = 0;
51 array[item++] = new TestCase( SECTION, "new Boolean(1)", "true", (new Boolean(1)).toString() );
52 array[item++] = new TestCase( SECTION, "new Boolean(0)", "false", (new Boolean(0)).toString() );
53 array[item++] = new TestCase( SECTION, "new Boolean(-1)", "true", (new Boolean(-1)).toString() );
54 array[item++] = new TestCase( SECTION, "new Boolean('1')", "true", (new Boolean("1")).toString() );
55 array[item++] = new TestCase( SECTION, "new Boolean('0')", "true", (new Boolean("0")).toString() );
56 array[item++] = new TestCase( SECTION, "new Boolean(true)", "true", (new Boolean(true)).toString() );
57 array[item++] = new TestCase( SECTION, "new Boolean(false)", "false", (new Boolean(false)).toString() );
58 array[item++] = new TestCase( SECTION, "new Boolean('true')", "true", (new Boolean('true')).toString() );
59 array[item++] = new TestCase( SECTION, "new Boolean('false')", "true", (new Boolean('false')).toString() (…)
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.2.2-1.js 50 var item = 0;
54 array[item++] = new TestCase( SECTION, "Date(1970,0,1,0,0,0)", (new Date()).toString(), Date(1970,0,1,0,0,0) );
55 array[item++] = new TestCase( SECTION, "Date(1969,11,31,15,59,59)", (new Date()).toString(), Date(1969,11,31,15,59,59))
56 array[item++] = new TestCase( SECTION, "Date(1969,11,31,16,0,0)", (new Date()).toString(), Date(1969,11,31,16,0,0))
57 array[item++] = new TestCase( SECTION, "Date(1969,11,31,16,0,1)", (new Date()).toString(), Date(1969,11,31,16,0,1))
60 array[item++] = new TestCase( SECTION, "Date(1999,11,15,59,59)", (new Date()).toString(), Date(1999,11,15,59,59));
61 array[item++] = new TestCase( SECTION, "Date(1999,11,16,0,0,0)", (new Date()).toString(), Date(1999,11,16,0,0,0));
62 array[item++] = new TestCase( SECTION, "Date(1999,11,31,23,59,59)", (new Date()).toString(), Date(1999,11,31,23,59,59) );
63 array[item++] = new TestCase( SECTION, "Date(2000,0,1,0,0,0)", (new Date()).toString(), Date(2000,0,0,0,0,0) );
64 array[item++] = new TestCase( SECTION, "Date(2000,0,1,0,0,1)", (new Date()).toString(), Date(2000 (…)
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/
15.3.1.1-2.js 52 var item = 0;
62 array[item++] = new TestCase( SECTION, "myfunc1 = Function('a','b','c'); myfunc.toString = Object.prototype.toString; myfunc.toString()",
66 array[item++] = new TestCase( SECTION, "myfunc1.length", 3, myfunc1.length );
67 array[item++] = new TestCase( SECTION, "myfunc1.prototype.toString()", "[object Object]", myfunc1.prototype.toString() );
69 array[item++] = new TestCase( SECTION, "myfunc1.prototype.constructor", myfunc1, myfunc1.prototype.constructor );
70 array[item++] = new TestCase( SECTION, "myfunc1.arguments", null, myfunc1.arguments );
71 array[item++] = new TestCase( SECTION, "myfunc1(1,2,3)", 6, myfunc1(1,2,3) );
72 array[item++] = new TestCase( SECTION, "var MYPROPS = ''; for ( var p in myfunc1.prototype ) { MYPROPS += p; }; MYPROPS",
76 array[item++] = new TestCase( SECTION, "myfunc2 = Function('a','b','c'); myfunc.toString = Object.prototype.toString; myfunc.toString()",
79 array[item++] = new TestCase( SECTION, "myfunc2.__proto__", Function.prototype, (…)
    [all...]
15.3.2.1-2.js 45 var item = 0;
55 array[item++] = new TestCase( SECTION, "myfunc1 = new Function('a','b','c'); myfunc.toString = Object.prototype.toString; myfunc.toString()",
59 array[item++] = new TestCase( SECTION, "myfunc1.length", 3, myfunc1.length );
60 array[item++] = new TestCase( SECTION, "myfunc1.prototype.toString()", "[object Object]", myfunc1.prototype.toString() );
62 array[item++] = new TestCase( SECTION, "myfunc1.prototype.constructor", myfunc1, myfunc1.prototype.constructor );
63 array[item++] = new TestCase( SECTION, "myfunc1.arguments", null, myfunc1.arguments );
64 array[item++] = new TestCase( SECTION, "myfunc1(1,2,3)", 6, myfunc1(1,2,3) );
65 array[item++] = new TestCase( SECTION, "var MYPROPS = ''; for ( var p in myfunc1.prototype ) { MYPROPS += p; }; MYPROPS",
69 array[item++] = new TestCase( SECTION, "myfunc2 = new Function('a','b','c'); myfunc.toString = Object.prototype.toString; myfunc.toString()",
72 array[item++] = new TestCase( SECTION, "myfunc2.__proto__", Function.prototype, (…)
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Math/
15.8.2.15.js 67 var item = 0;
69 array[item++] = new TestCase( SECTION, "Math.round.length", 1, Math.round.length );
71 array[item++] = new TestCase( SECTION, "Math.round()", Number.NaN, Math.round() );
72 array[item++] = new TestCase( SECTION, "Math.round(null)", 0, Math.round(0) );
73 array[item++] = new TestCase( SECTION, "Math.round(void 0)", Number.NaN, Math.round(void 0) );
74 array[item++] = new TestCase( SECTION, "Math.round(true)", 1, Math.round(true) );
75 array[item++] = new TestCase( SECTION, "Math.round(false)", 0, Math.round(false) );
76 array[item++] = new TestCase( SECTION, "Math.round('.99999')", 1, Math.round('.99999') );
77 array[item++] = new TestCase( SECTION, "Math.round('12345e-2')", 123, Math.round('12345e-2') );
79 array[item++] = new TestCase( SECTION, "Math.round(NaN)", Number.NaN, Math.round(Number.NaN) )
    [all...]
15.8.2.16.js 43 var item = 0;
45 array[item++] = new TestCase( SECTION, "Math.sin.length", 1, Math.sin.length );
47 array[item++] = new TestCase( SECTION, "Math.sin()", Number.NaN, Math.sin() );
48 array[item++] = new TestCase( SECTION, "Math.sin(null)", 0, Math.sin(null) );
49 array[item++] = new TestCase( SECTION, "Math.sin(void 0)", Number.NaN, Math.sin(void 0) );
50 array[item++] = new TestCase( SECTION, "Math.sin(false)", 0, Math.sin(false) );
51 array[item++] = new TestCase( SECTION, "Math.sin('2.356194490192')", 0.7071067811865, Math.sin('2.356194490192') );
53 array[item++] = new TestCase( SECTION, "Math.sin(NaN)", Number.NaN, Math.sin(Number.NaN) );
54 array[item++] = new TestCase( SECTION, "Math.sin(0)", 0, Math.sin(0) );
55 array[item++] = new TestCase( SECTION, "Math.sin(-0)", -0, Math.sin(-0))
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/TypeConversion/
9.3.js 67 var item = 0;
71 array[item++] = new TestCase( SECTION, "Number()", 0, Number() );
72 array[item++] = new TestCase( SECTION, "Number(eval('var x'))", Number.NaN, Number(eval("var x")) );
73 array[item++] = new TestCase( SECTION, "Number(void 0)", Number.NaN, Number(void 0) );
74 array[item++] = new TestCase( SECTION, "Number(null)", 0, Number(null) );
75 array[item++] = new TestCase( SECTION, "Number(true)", 1, Number(true) );
76 array[item++] = new TestCase( SECTION, "Number(false)", 0, Number(false) );
77 array[item++] = new TestCase( SECTION, "Number(0)", 0, Number(0) );
78 array[item++] = new TestCase( SECTION, "Number(-0)", -0, Number(-0) );
79 array[item++] = new TestCase( SECTION, "Number(1)", 1, Number(1) )
    [all...]
  /external/wpa_supplicant/wpa_gui/
eventhistory.ui.h 34 Q3ListViewItem *item; local
35 item = new Q3ListViewItem(eventListView,
38 if (item == NULL)
40 eventListView->setSelected(item, false);
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui/
eventhistory.ui.h 34 Q3ListViewItem *item; local
35 item = new Q3ListViewItem(eventListView,
38 if (item == NULL)
40 eventListView->setSelected(item, false);
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui/
eventhistory.ui.h 34 Q3ListViewItem *item; local
35 item = new Q3ListViewItem(eventListView,
38 if (item == NULL)
40 eventListView->setSelected(item, false);
  /frameworks/opt/vcard/tests/res/raw/
v21_im.vcf 3 X-ANDROID-CUSTOM:vnd.android.cursor.item/nickname;Nick;1;;;;;;;;;;;;;
  /packages/apps/Browser/res/values/
ids.xml 19 <item type="id" name="group_position" />
20 <item type="id" name="child_position" />
21 <item type="id" name="child_id" />
22 <item type="id" name="tab_view" />
  /packages/apps/Contacts/res/values-sw580dp/
donottranslate_config.xml 24 <item name="tab_width_screen_width_percentage" type="fraction">66%</item>
25 <item name="tab_height_screen_width_percentage" type="fraction">66%</item>
  /packages/apps/Email/res/values-sw800dp-port/
styles.xml 22 <item name="android:layout_toRightOf">@+id/main_content"</item>
23 <item name="android:layout_alignParentRight">true</item>
  /packages/apps/PackageInstaller/res/values/
styles.xml 19 <item name="android:paddingLeft">16dip</item>
20 <item name="android:paddingRight">16dip</item>
  /packages/inputmethods/LatinIME/java/res/values/
keypress-vibration-durations.xml 23 <item>herring,5</item>
24 <item>tuna,5</item>
sudden-jumping-touch-event-device-list.xml 23 <item>mahimahi</item>
25 <item>sholes</item>
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
color1-expected-completion45.txt 2 <selector ></selector> : Required. This must be the root element. Contains one or more <item> elements.
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ObjectObjects/
15.2.2.1.js 56 var item = 0;
58 array[item++] = new TestCase( SECTION, "typeof new Object(null)", "object", typeof new Object(null) );
59 array[item++] = new TestCase( SECTION, "MYOB = new Object(null); MYOB.toString = Object.prototype.toString; MYOB.toString()", "[object Object]", eval("MYOB = new Object(null); MYOB.toString = Object.prototype.toString; MYOB.toString()") );
61 array[item++] = new TestCase( SECTION, "typeof new Object(void 0)", "object", typeof new Object(void 0) );
62 array[item++] = new TestCase( SECTION, "MYOB = new Object(new Object(void 0)); MYOB.toString = Object.prototype.toString; MYOB.toString()", "[object Object]", eval("MYOB = new Object(new Object(void 0)); MYOB.toString = Object.prototype.toString; MYOB.toString()") );
64 array[item++] = new TestCase( SECTION, "typeof new Object('string')", "object", typeof new Object('string') );
65 array[item++] = new TestCase( SECTION, "MYOB = (new Object('string'); MYOB.toString = Object.prototype.toString; MYOB.toString()", "[object String]", eval("MYOB = new Object('string'); MYOB.toString = Object.prototype.toString; MYOB.toString()") );
66 array[item++] = new TestCase( SECTION, "(new Object('string').valueOf()", "string", (new Object('string')).valueOf() );
68 array[item++] = new TestCase( SECTION, "typeof new Object('')", "object", typeof new Object('') );
69 array[item++] = new TestCase( SECTION, "MYOB = (new Object(''); MYOB.toString = Object.prototype.toString; M (…)
    [all...]
  /external/webrtc/src/system_wrappers/interface/
list_wrapper.h 25 ListItem(const unsigned int item);
74 // Returns a pointer to the ListItem stored after item in the list.
75 ListItem* Next(ListItem* item) const;
77 // Returns a pointer to the ListItem stored before item in the list.
78 ListItem* Previous(ListItem* item) const;
80 // Removes item from the list.
81 int Erase(ListItem* item);
83 // Insert list item after existing_previous_item. Please note that new_item
90 // Insert list item before existing_next_item. Please note that new_item
98 void PushBackImpl(ListItem* item);
    [all...]
  /packages/apps/Browser/res/menu/
bookmarkscontext.xml 20 <item android:id="@+id/open_context_menu_id"
22 <item android:id="@+id/new_window_context_menu_id"
24 <item android:id="@+id/edit_context_menu_id"
26 <item android:id="@+id/shortcut_context_menu_id"
28 <item android:id="@+id/share_link_context_menu_id"
30 <item android:id="@+id/copy_url_context_menu_id"
32 <item android:id="@+id/delete_context_menu_id"
34 <item android:id="@+id/homepage_context_menu_id"
39 <item android:id="@+id/new_window_context_menu_id"
41 <item android:id="@+id/edit_context_menu_id
    [all...]
  /external/qemu/
qemu-monitor.hx 14 @item help or ? [@var{cmd}]
21 @item commit
28 @item info @var{subcommand}
32 @item info version
34 @item info network
36 @item info chardev
38 @item info block
40 @item info block
42 @item info registers
44 @item info cpu
    [all...]
  /development/samples/ApiDemos/res/menu/
disabled.xml 19 <item android:id="@+id/enabled_item"
23 <item android:id="@+id/disabled_item"
28 <item android:id="@+id/enabled_item_2"
32 <item android:id="@+id/disabled_item_2"
37 <item android:id="@+id/enabled_item_3"
41 <item android:id="@+id/disabled_item_3"
46 <item android:id="@+id/enabled_item_4"
50 <item android:id="@+id/disabled_item_4"
  /development/samples/VoiceRecognitionService/res/values/
strings.xml 33 <item>Letters</item>
34 <item>Numbers</item>
40 <item>0</item>
41 <item>1</item>

Completed in 706 milliseconds

<<31323334353637383940>>