/development/samples/ApiDemos/res/menu/ |
title_only.xml | 19 <item android:id="@+id/jump" 22 <item android:id="@+id/dive"
|
/development/samples/Home/res/drawable/ |
all_applications.xml | 22 <item android:state_checked="false" android:drawable="@drawable/ic_launcher_allshow" /> 23 <item android:state_checked="true" android:drawable="@drawable/ic_launcher_allhide" />
|
/development/samples/Wiktionary/res/drawable/ |
lookup_bg.xml | 18 <item android:drawable="@android:color/white" /> 19 <item android:drawable="@drawable/logo_overlay" />
|
/development/samples/Wiktionary/res/values/ |
themes.xml | 19 <item name="android:windowBackground">@drawable/lookup_bg</item>
|
/external/clearsilver/man/man3/ |
skipNext.3 | 14 skipNext - find next item. 32 Searches in list <list> for item with key next larger
|
/external/icu4c/data/brkitr/ |
title.txt | 17 # If the iterator starts on a cased item, advance through all adjacent cased items plus 29 # If the iterator starts on a cased item, advance through all adjacent cased items plus
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Array/ |
15.4.1.1.js | 61 var item = 0; 63 array[item++] = new TestCase( SECTION, "typeof Array(1,2)", "object", typeof Array(1,2) ); 64 array[item++] = new TestCase( SECTION, "(Array(1,2)).toString", Array.prototype.toString, (Array(1,2)).toString ); 65 array[item++] = new TestCase( SECTION, 71 array[item++] = new TestCase( SECTION, "(Array(1,2)).length", 2, (Array(1,2)).length ); 72 array[item++] = new TestCase( SECTION, "var arr = (Array(1,2)); arr[0]", 1, eval("var arr = (Array(1,2)); arr[0]") ); 73 array[item++] = new TestCase( SECTION, "var arr = (Array(1,2)); arr[1]", 2, eval("var arr = (Array(1,2)); arr[1]") ); 74 array[item++] = new TestCase( SECTION, "var arr = (Array(1,2)); String(arr)", "1,2", eval("var arr = (Array(1,2)); String(arr)") );
|
15.4.2.1-1.js | 64 var item = 0; 66 array[item++] = new TestCase( SECTION, "typeof new Array(1,2)", "object", typeof new Array(1,2) ); 67 array[item++] = new TestCase( SECTION, "(new Array(1,2)).toString", Array.prototype.toString, (new Array(1,2)).toString ); 68 array[item++] = new TestCase( SECTION, 73 array[item++] = new TestCase( SECTION, "(new Array(1,2)).length", 2, (new Array(1,2)).length ); 74 array[item++] = new TestCase( SECTION, "var arr = (new Array(1,2)); arr[0]", 1, eval("var arr = (new Array(1,2)); arr[0]") ); 75 array[item++] = new TestCase( SECTION, "var arr = (new Array(1,2)); arr[1]", 2, eval("var arr = (new Array(1,2)); arr[1]") ); 76 array[item++] = new TestCase( SECTION, "var arr = (new Array(1,2)); String(arr)", "1,2", eval("var arr = (new Array(1,2)); String(arr)") );
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Expressions/ |
11.12-1.js | 59 var item = 0; 61 array[item++] = new TestCase( SECTION, "true ? 'PASSED' : 'FAILED'", "PASSED", (true?"PASSED":"FAILED")); 62 array[item++] = new TestCase( SECTION, "false ? 'FAILED' : 'PASSED'", "PASSED", (false?"FAILED":"PASSED")); 64 array[item++] = new TestCase( SECTION, "1 ? 'PASSED' : 'FAILED'", "PASSED", (true?"PASSED":"FAILED")); 65 array[item++] = new TestCase( SECTION, "0 ? 'FAILED' : 'PASSED'", "PASSED", (false?"FAILED":"PASSED")); 66 array[item++] = new TestCase( SECTION, "-1 ? 'PASSED' : 'FAILED'", "PASSED", (true?"PASSED":"FAILED")); 68 array[item++] = new TestCase( SECTION, "NaN ? 'FAILED' : 'PASSED'", "PASSED", (Number.NaN?"FAILED":"PASSED")); 70 array[item++] = new TestCase( SECTION, "var VAR = true ? , : 'FAILED'", "PASSED", (VAR = true ? "PASSED" : "FAILED") );
|
11.13.js | 59 var item = 0; 61 array[item++] = new TestCase( SECTION, "true ? 'PASSED' : 'FAILED'", "PASSED", (true?"PASSED":"FAILED")); 62 array[item++] = new TestCase( SECTION, "false ? 'FAILED' : 'PASSED'", "PASSED", (false?"FAILED":"PASSED")); 64 array[item++] = new TestCase( SECTION, "1 ? 'PASSED' : 'FAILED'", "PASSED", (true?"PASSED":"FAILED")); 65 array[item++] = new TestCase( SECTION, "0 ? 'FAILED' : 'PASSED'", "PASSED", (false?"FAILED":"PASSED")); 66 array[item++] = new TestCase( SECTION, "-1 ? 'PASSED' : 'FAILED'", "PASSED", (true?"PASSED":"FAILED")); 68 array[item++] = new TestCase( SECTION, "NaN ? 'FAILED' : 'PASSED'", "PASSED", (Number.NaN?"FAILED":"PASSED")); 70 array[item++] = new TestCase( SECTION, "var VAR = true ? , : 'FAILED'", "PASSED", (VAR = true ? "PASSED" : "FAILED") );
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/LexicalConventions/ |
7.1-3.js | 55 var item = 0; 56 array[item++] = new TestCase( SECTION, "'var'+'\u000B'+'MYVAR1=10;MYVAR1'", 10, eval('var'+'\u000B'+'MYVAR1=10;MYVAR1') ); 57 array[item++] = new TestCase( SECTION, "'var'+'\u0009'+'MYVAR2=10;MYVAR2'", 10, eval('var'+'\u0009'+'MYVAR2=10;MYVAR2') ); 58 array[item++] = new TestCase( SECTION, "'var'+'\u000C'+'MYVAR3=10;MYVAR3'", 10, eval('var'+'\u000C'+'MYVAR3=10;MYVAR3') ); 59 array[item++] = new TestCase( SECTION, "'var'+'\u0020'+'MYVAR4=10;MYVAR4'", 10, eval('var'+'\u0020'+'MYVAR4=10;MYVAR4') ); 63 array[item++] = new TestCase( SECTION, 68 array[item++] = new TestCase( SECTION, 72 array[item++] = new TestCase( SECTION,
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Number/ |
15.7.4.3-1.js | 46 var item = 0; 49 array[item++] = new TestCase("15.7.4.1", "Number.prototype.valueOf()", 0, "Number.prototype.valueOf()" ); 51 array[item++] = new TestCase("15.7.4.1", "(new Number(1)).valueOf()", 1, "(new Number(1)).valueOf()" ); 52 array[item++] = new TestCase("15.7.4.1", "(new Number(-1)).valueOf()", -1, "(new Number(-1)).valueOf()" ); 53 array[item++] = new TestCase("15.7.4.1", "(new Number(0)).valueOf()", 0, "(new Number(0)).valueOf()" ); 54 array[item++] = new TestCase("15.7.4.1", "(new Number(Number.POSITIVE_INFINITY)).valueOf()", Number.POSITIVE_INFINITY, "(new Number(Number.POSITIVE_INFINITY)).valueOf()" ); 55 array[item++] = new TestCase("15.7.4.1", "(new Number(Number.NaN)).valueOf()", Number.NaN, "(new Number(Number.NaN)).valueOf()" ); 56 array[item++] = new TestCase("15.7.4.1", "(new Number()).valueOf()", 0, "(new Number()).valueOf()" );
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/String/ |
15.5.4.5-2.js | 67 var item = 0; 71 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(0)", 0x0074, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(0)") ); 72 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(1)", 0x0072, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(1)") ); 73 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(2)", 0x0075, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(2)") ); 74 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(3)", 0x0065, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(3)") ); 75 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(4)", Number.NaN, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(4)") ); 76 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(-1)", Number.NaN, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(-1)") ); 78 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(true)", 0x0072, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(true)") ); 79 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(false)", 0x0074, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(false)") ); 81 array[item++] = new TestCase( SECTION, "x = new String(); x.charCodeAt(0)", Number.NaN, eval("x=ne (…) [all...] |
15.5.4.8-1.js | 61 var item = 0; 63 array[item++] = new TestCase( SECTION, "String.prototype.split.length", 2, String.prototype.split.length ); 64 array[item++] = new TestCase( SECTION, "delete String.prototype.split.length", false, delete String.prototype.split.length ); 65 array[item++] = new TestCase( SECTION, "delete String.prototype.split.length; String.prototype.split.length", 2, eval("delete String.prototype.split.length; String.prototype.split.length") ); 71 array[item++] = new TestCase( SECTION, 76 array[item++] = new TestCase( SECTION, 81 array[item++] = new TestCase( SECTION, 86 array[item++] = new TestCase( SECTION, 92 array[item++] = new TestCase( SECTION, 97 array[item++] = new TestCase( SECTION [all...] |
/external/webkit/WebCore/css/ |
WebKitCSSKeyframesRule.cpp | 49 m_lstCSSRules->item(i)->setParent(0); 71 WebKitCSSKeyframeRule* WebKitCSSKeyframesRule::item(unsigned index) function in class:WebCore::WebKitCSSKeyframesRule 73 CSSRule* rule = m_lstCSSRules.get()->item(index); 77 const WebKitCSSKeyframeRule* WebKitCSSKeyframesRule::item(unsigned index) const function in class:WebCore::WebKitCSSKeyframesRule 79 CSSRule* rule = m_lstCSSRules.get()->item(index); 106 return (i >= 0) ? item(i) : 0; 120 if (item(i)->keyText() == percentageString) 137 result += m_lstCSSRules->item(i)->cssText();
|
/external/webkit/WebCore/manual-tests/ |
select-delete-item.html | 18 Once the select gets focus, in 2 seconds it will delete an item. This test passes
19 if you have the select open when it deletes an item, and doesn't crash.</p>
|
/frameworks/base/core/java/com/android/internal/view/menu/ |
MenuItemImpl.java | 60 /** The (cached) menu item views for this item */ 63 /** The menu to which this item belongs */ 65 /** If this item should launch a sub menu, this is the sub menu to launch */ 78 /** Used for the icon resource ID if this item does not have an icon */ 83 * View that added this item to the context menu. 94 * Instantiates this menu item. The constructor 99 * @param group Item ordering grouping control. The item will be added after 103 * @param id Unique item ID. Use 0 if you do not need a unique ID [all...] |
/frameworks/base/core/res/res/color/ |
primary_text_dark_disable_only.xml | 18 <item android:state_enabled="false" android:color="@android:color/bright_foreground_dark_disabled"/> 19 <item android:color="@android:color/bright_foreground_dark"/>
|
primary_text_dark_nodisable.xml | 18 <item android:state_selected="true" android:color="@android:color/bright_foreground_dark_inverse"/> 19 <item android:color="@android:color/bright_foreground_dark"/> <!-- not selected -->
|
primary_text_light_disable_only.xml | 18 <item android:state_enabled="false" android:color="@android:color/bright_foreground_light_disabled"/> 19 <item android:color="@android:color/bright_foreground_light"/>
|
primary_text_light_nodisable.xml | 18 <item android:state_selected="true" android:color="@android:color/bright_foreground_light"/> 19 <item android:color="@android:color/bright_foreground_light"/> <!-- not selected -->
|
secondary_text_dark_nodisable.xml | 18 <item android:state_selected="true" android:color="@android:color/dim_foreground_dark_inverse"/> 19 <item android:color="@android:color/dim_foreground_dark"/> <!-- not selected -->
|
secondary_text_light_nodisable.xml | 18 <item android:state_selected="true" android:color="@android:color/dim_foreground_dark_inverse"/> 19 <item android:color="@android:color/dim_foreground_dark"/> <!-- not selected -->
|
tab_indicator_text.xml | 18 <item android:state_selected="true" android:color="#ffffff"/> 19 <item android:color="#808080"/> <!-- not selected -->
|
tab_indicator_text_v4.xml | 18 <item android:state_selected="true" android:color="#808080"/> 19 <item android:color="#FFFFFF"/> <!-- not selected -->
|