/external/webkit/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.2.1-3.js | 82 for ( item = 0; item < TEST_LENGTH; item++ ) { 83 array[item] = new TestCase( SECTION, "TEST_ARRAY["+item+"]", item, TEST_ARRAY[item] ); 86 array[item++] = new TestCase( SECTION, "new Array( ["+TEST_LENGTH+" arguments] ) +''", ARGUMENTS, TEST_ARRAY +"" ); 87 array[item++] = new TestCase( SECTION, "TEST_ARRAY.toString", Array.prototype.toString, TEST_ARRAY.toString ); 88 array[item++] = new TestCase( SECTION, "TEST_ARRAY.join", Array.prototype.join, (…) [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Date/ |
15.9.2.2-5.js | 50 var item = 0; 53 array[item++] = new TestCase( SECTION, "Date(2004,11,31,23,59,59)", (new Date()).toString(), Date(2004,11,31,23,59,59)); 54 array[item++] = new TestCase( SECTION, "Date(2005,0,1,0,0,0)", (new Date()).toString(), Date(2005,0,1,0,0,0) ); 55 array[item++] = new TestCase( SECTION, "Date(2005,0,1,0,0,1)", (new Date()).toString(), Date(2005,0,1,0,0,1) ); 56 array[item++] = new TestCase( SECTION, "Date(2004,11,31,16,0,0,0)", (new Date()).toString(), Date(2004,11,31,16,0,0,0)); 59 array[item++] = new TestCase( SECTION, "Date(2031,11,31,23,59,59)", (new Date()).toString(), Date(2031,11,31,23,59,59)); 60 array[item++] = new TestCase( SECTION, "Date(2032,0,1,0,0,0)", (new Date()).toString(), Date(2032,0,1,0,0,0) ); 61 array[item++] = new TestCase( SECTION, "Date(2032,0,1,0,0,1)", (new Date()).toString(), Date(2032,0,1,0,0,1) ); 62 array[item++] = new TestCase( SECTION, "Date(2031,11,31,16,0,0,0)", (new Date()).toString(), Date(2031,11,31,16,0,0,0));
|
/external/webkit/WebKitExamplePlugins/NetscapeCocoaPlugin/ |
MenuHandler.m | 73 NSMenuItem *item = [[NSMenuItem alloc] initWithTitle:@"Open URL" action:@selector(_openURL:) keyEquivalent:@""]; 74 [item setTarget:self]; 75 [menu addItem:item]; 76 [item release]; 78 item = [[NSMenuItem alloc] initWithTitle:@"Disabled Item" action:@selector(_disabledItem:) keyEquivalent:@""]; 79 [item setTarget:self]; 80 [menu addItem:item]; 81 [item release];
|
/frameworks/base/core/tests/coretests/src/android/widget/focus/ |
ListOfInternalSelectionViews.java | 29 * how many rows in each item, and how tall each item is. 52 * Each item is screen height * this factor tall. 59 * @return The number of rows per item. 74 * @return The label (closest thing to a value) for the item at position 98 * @param numRowsPerItem The number of rows per item. 161 InternalSelectionView item = local 166 item.setDesiredHeight((int) (mScreenHeight * mItemScreenSizeFactor)); 167 return item;
|
/frameworks/base/core/tests/coretests/src/android/widget/gridview/touch/ |
GridTouchStackFromBottomTest.java | 48 // First item should be selected 62 assertEquals("Last item not the last child in the grid", 65 assertEquals("Last item not at the bottom of the grid", 79 assertEquals("Last item not the last child in the grid", 82 assertEquals("Last item not at the bottom of the grid", 96 assertEquals("Last item not the last child in the grid", 99 assertEquals("Last item not at the bottom of the grid", 113 assertEquals("Last item not the last child in the grid", 116 assertEquals("Last item not at the bottom of the grid",
|
/packages/apps/Camera/src/com/android/camera/ui/ |
PreferenceAdapter.java | 57 GLOptionItem item = (GLOptionItem) mContent.get(i); local 58 item.setChecked(values[i - 1].equals(value)); 59 item.setEnabled(true); 63 GLOptionItem item = (GLOptionItem) mContent.get(i); local 65 item.setChecked(checked); 66 item.setEnabled(checked); 84 GLOptionItem item = new GLOptionItem( local 87 item.setChecked(values[i].equals(value)); 88 mContent.add(item);
|
/development/apps/FontLab/src/com/android/fontlab/ |
FontLab.java | 169 public boolean onMenuItemClick(MenuItem item) { 170 mFontIndex = item.getItemId(); 177 MenuItem item = menu.add(0, index, 0, sTypefaceName[index]); local 178 item.setCheckable(true); 179 item.setOnMenuItemClickListener(mFontClickListener); 180 item.setChecked(index == mFontIndex); 184 public boolean onMenuItemClick(MenuItem item) { 185 mFontStyle = mFontStyle ^ item.getItemId(); 192 MenuItem item = menu.add(0, style, 0, (style == Typeface.BOLD) ? "Bold" : "Italic"); local 193 item.setCheckable(true) 215 MenuItem item = menu.add(0, paintFlag, 0, label); local [all...] |
/development/samples/MySampleRss/src/com/example/codelab/rssexample/ |
MyRssReader3.java | 56 // Set the last selected item. 99 public boolean onOptionsItemSelected(Menu.Item item){ 100 super.onOptionsItemSelected(item); 102 switch (item.getId()){ 109 case 2: // Add Item 112 // Use an ID so that if we create a "remove item" form we 116 case 3: // Delete item. 132 // Called by the "Add RSS Item" floating screen when it closes. 157 // Here's our only important override--returning the list item 163 RssItem item = (RssItem)this.getItem(position); local [all...] |
/external/svox/pico/lib/ |
picoacph.h | 46 - all other item types are forwarded through the PU without modification: 57 limits) of items terminated by a PUNC item. 60 empty, non-processed item types can be processed immediately) 62 Ensuring terminal PUNC item: 64 converted to a PUNC(...FLUSH...) item 74 PUNC item enforced if necessary. 92 together with the trailing PUNC item results in: 133 BOUND in item sequence equals PHR0 bound strength) 164 - item size: header plus len=256 (valid for Pico in general) 165 - see defines below for max nr of items. Item heads plus ref. to content [all...] |
/external/webkit/WebKitTools/GtkLauncher/ |
main.c | 150 GtkToolItem* item; local 153 item = gtk_tool_button_new_from_stock (GTK_STOCK_GO_BACK); 154 g_signal_connect (G_OBJECT (item), "clicked", G_CALLBACK (go_back_cb), NULL); 155 gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1); local 158 item = gtk_tool_button_new_from_stock (GTK_STOCK_GO_FORWARD); 159 g_signal_connect (G_OBJECT (item), "clicked", G_CALLBACK (go_forward_cb), NULL); 160 gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1); local 163 item = gtk_tool_item_new (); 164 gtk_tool_item_set_expand (item, TRUE); 166 gtk_container_add (GTK_CONTAINER (item), uri_entry) 168 gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1); local 173 gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1); local [all...] |
/packages/apps/Phone/res/values-cs/ |
strings.xml | 161 <item msgid="5560134294467334594">"Výchozí nastavení sít?"</item> 162 <item msgid="7876195870037833661">"Skrýt ?íslo"</item> 163 <item msgid="1108394741608734023">"Zobrazit ?íslo"</item> 192 <item msgid="2987674222882365152">"Globální"</item> 193 <item msgid="3273348576277144124">"Pouze EvDo"</item> [all...] |
/packages/apps/Phone/res/values-da/ |
strings.xml | 161 <item msgid="5560134294467334594">"Netværksstandard"</item> 162 <item msgid="7876195870037833661">"Skjul nummer"</item> 163 <item msgid="1108394741608734023">"Vis nummer"</item> 192 <item msgid="2987674222882365152">"Global"</item> 193 <item msgid="3273348576277144124">"Kun EvDo"</item> [all...] |
/packages/apps/Phone/res/values-es/ |
strings.xml | 161 <item msgid="5560134294467334594">"Valor predeterminado de red"</item> 162 <item msgid="7876195870037833661">"Ocultar número"</item> 163 <item msgid="1108394741608734023">"Mostrar número"</item> 192 <item msgid="2987674222882365152">"Global"</item> 193 <item msgid="3273348576277144124">"Solo EvDo"</item> [all...] |
/packages/apps/Phone/res/values-es-rUS/ |
strings.xml | 161 <item msgid="5560134294467334594">"Red predeterminada"</item> 162 <item msgid="7876195870037833661">"Ocultar número"</item> 163 <item msgid="1108394741608734023">"Mostrar número"</item> 192 <item msgid="2987674222882365152">"Global"</item> 193 <item msgid="3273348576277144124">"EvDo solamente"</item> [all...] |
/packages/apps/Phone/res/values-fr/ |
strings.xml | 161 <item msgid="5560134294467334594">"Réseau par défaut"</item> 162 <item msgid="7876195870037833661">"Masquer le numéro"</item> 163 <item msgid="1108394741608734023">"Afficher le numéro"</item> 192 <item msgid="2987674222882365152">"Général"</item> 193 <item msgid="3273348576277144124">"EvDo uniquement"</item> [all...] |
/packages/apps/Phone/res/values-pl/ |
strings.xml | 161 <item msgid="5560134294467334594">"Domy?lna warto?? dla sieci"</item> 162 <item msgid="7876195870037833661">"Ukryj numer"</item> 163 <item msgid="1108394741608734023">"Poka? numer"</item> 192 <item msgid="2987674222882365152">"Globalne"</item> 193 <item msgid="3273348576277144124">"Tylko EvDo"</item> [all...] |
/packages/apps/Phone/res/values-pt/ |
strings.xml | 161 <item msgid="5560134294467334594">"Padrão de rede"</item> 162 <item msgid="7876195870037833661">"Ocultar número"</item> 163 <item msgid="1108394741608734023">"Mostrar número"</item> 192 <item msgid="2987674222882365152">"Global"</item> 193 <item msgid="3273348576277144124">"Somente EvDo"</item> [all...] |
/packages/apps/Phone/res/values-pt-rPT/ |
strings.xml | 161 <item msgid="5560134294467334594">"Predefinição da rede"</item> 162 <item msgid="7876195870037833661">"Ocultar número"</item> 163 <item msgid="1108394741608734023">"Mostrar número"</item> 192 <item msgid="2987674222882365152">"Global"</item> 193 <item msgid="3273348576277144124">"Apenas EvDo"</item> [all...] |
/packages/apps/Phone/res/values-sv/ |
strings.xml | 161 <item msgid="5560134294467334594">"Standardinställning för nätverk"</item> 162 <item msgid="7876195870037833661">"Dölj nummer"</item> 163 <item msgid="1108394741608734023">"Visa nummer"</item> 192 <item msgid="2987674222882365152">"Globalt"</item> 193 <item msgid="3273348576277144124">"Endast EvDo"</item> [all...] |
/packages/apps/Phone/res/values-tr/ |
strings.xml | 161 <item msgid="5560134294467334594">"A? varsay?lan?"</item> 162 <item msgid="7876195870037833661">"Numaray? gizle"</item> 163 <item msgid="1108394741608734023">"Numaray? göster"</item> 192 <item msgid="2987674222882365152">"Küresel"</item> 193 <item msgid="3273348576277144124">"Yaln?zca EvDo"</item> [all...] |
/external/webkit/WebCore/bridge/jni/jsc/ |
JNIUtilityPrivate.cpp | 61 JSValue item = jsArray->get(exec, i); local 62 UString stringValue = item.toString(exec); 74 JSValue item = jsArray->get(exec, i); local 75 jboolean value = (jboolean)item.toNumber(exec); 85 JSValue item = jsArray->get(exec, i); local 86 jbyte value = (jbyte)item.toNumber(exec); 96 JSValue item = jsArray->get(exec, i); local 97 UString stringValue = item.toString(exec); 110 JSValue item = jsArray->get(exec, i); local 111 jshort value = (jshort)item.toNumber(exec) 121 JSValue item = jsArray->get(exec, i); local 132 JSValue item = jsArray->get(exec, i); local 143 JSValue item = jsArray->get(exec, i); local 154 JSValue item = jsArray->get(exec, i); local [all...] |
/external/webkit/WebCore/history/ |
BackForwardList.cpp | 70 RefPtr<HistoryItem> item = m_entries.last(); local 72 m_entryHash.remove(item); 73 pageCache()->remove(item.get()); 77 // Toss the first item if the list is getting too big, as long as we're not using it 80 RefPtr<HistoryItem> item = m_entries[0]; local 82 m_entryHash.remove(item); 83 pageCache()->remove(item.get()); 85 m_page->mainFrame()->loader()->client()->dispatchDidRemoveBackForwardItem(item.get()); 112 void BackForwardList::goToItem(HistoryItem* item) 114 if (!m_entries.size() || !item) 182 RefPtr<HistoryItem> item = m_entries.last(); local [all...] |
/frameworks/base/core/java/android/content/pm/ |
PackageItemInfo.java | 41 * Public name of this item. From the "android:name" attribute. 46 * Name of the package that this item is in. 91 * Retrieve the current textual label associated with this item. This 96 * the PackageManager from which you originally retrieved this item. 98 * @return Returns a CharSequence containing the item's label. If the 99 * item does not have a label, its name is returned. 118 * Retrieve the current graphical icon associated with this item. This 123 * the PackageManager from which you originally retrieved this item. 125 * @return Returns a Drawable containing the item's icon. If the 126 * item does not have an icon, the item's default icon is returne [all...] |
/frameworks/base/include/utils/ |
VectorImpl.h | 74 ssize_t insertAt(const void* item, size_t where, size_t numItems = 1); 77 void push(const void* item); 79 ssize_t add(const void* item); 81 ssize_t replaceAt(const void* item, size_t index); 102 virtual void do_splat(void* dest, const void* item, size_t num) const = 0; 123 inline void _do_splat(void* dest, const void* item, size_t num) const; 147 //! finds the index of an item 148 ssize_t indexOf(const void* item) const; 150 //! finds where this item should be inserted 151 size_t orderOf(const void* item) const [all...] |