/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Number/ |
15.7.1.js | 54 var item = 0; 56 array[item++] = new TestCase(SECTION, "Number()", 0, Number() ); 57 array[item++] = new TestCase(SECTION, "Number(void 0)", Number.NaN, Number(void 0) ); 58 array[item++] = new TestCase(SECTION, "Number(null)", 0, Number(null) ); 59 array[item++] = new TestCase(SECTION, "Number()", 0, Number() ); 60 array[item++] = new TestCase(SECTION, "Number(new Number())", 0, Number( new Number() ) ); 61 array[item++] = new TestCase(SECTION, "Number(0)", 0, Number(0) ); 62 array[item++] = new TestCase(SECTION, "Number(1)", 1, Number(1) ); 63 array[item++] = new TestCase(SECTION, "Number(-1)", -1, Number(-1) ); 64 array[item++] = new TestCase(SECTION, "Number(NaN)", Number.NaN, Number( Number.NaN ) ) [all...] |
/external/webkit/Source/WebCore/history/cf/ |
HistoryPropertyList.cpp | 88 void HistoryPropertyListWriter::writeHistoryItem(BinaryPropertyListObjectStream& stream, HistoryItem* item) 92 const String& title = item->title(); 93 const String& displayTitle = item->alternateTitle(); 94 double lastVisitedDate = item->lastVisitedTime(); 95 int visitCount = item->visitCount(); 96 Vector<String>* redirectURLs = item->redirectURLs(); 97 const Vector<int>& dailyVisitCounts = item->dailyVisitCounts(); 98 const Vector<int>& weeklyVisitCounts = item->weeklyVisitCounts(); 110 if (item->lastVisitWasFailure()) 112 if (item->lastVisitWasHTTPNonGet() [all...] |
/packages/apps/VideoEditor/res/menu/ |
media_item_mode_menu.xml | 18 <item android:id="@+id/media_item_title_menu" 23 <item android:id="@+id/action_add_overlay" 25 <item android:id="@+id/action_remove_overlay" 28 </item> 30 <item android:id="@+id/media_item_effect_menu" 36 <item android:id="@+id/action_add_begin_transition" 39 <item android:id="@+id/action_add_end_transition" 45 <item android:id="@+id/action_pan_zoom_effect" 48 <item android:id="@+id/action_gradient_effect" 51 <item android:id="@+id/action_sepia_effect [all...] |
/external/svox/pico/lib/ |
picodata.h | 51 * <b> Pico Data : Item Format </b>\n 53 The item header is identical for all item types and PUs. Item types 56 Item Header structure\n 59 - 0x00 item type 60 - 0x01 item info 1 61 - 0x02 item info 2 62 - 0x03 item length in bytes (not including the header) 64 depending on the item type/info, a specific subheader may follo [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
MixedItemSection.java | 38 * <b>Note:</b> It is invalid for an item in an instance of this class to 100 public Collection<? extends Item> items() { 113 public int getAbsoluteItemOffset(Item item) { 114 OffsettedItem oi = (OffsettedItem) item; 162 * Adds an item to this instance. This will in turn tell the given item 164 * same item to more than one instance, nor to add the same items 167 * @param item {@code non-null;} the item to ad 256 OffsettedItem item = entry.getValue(); local [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
MixedItemSection.java | 38 * <b>Note:</b> It is invalid for an item in an instance of this class to 100 public Collection<? extends Item> items() { 113 public int getAbsoluteItemOffset(Item item) { 114 OffsettedItem oi = (OffsettedItem) item; 162 * Adds an item to this instance. This will in turn tell the given item 164 * same item to more than one instance, nor to add the same items 167 * @param item {@code non-null;} the item to ad 256 OffsettedItem item = entry.getValue(); local [all...] |
/external/chromium/webkit/glue/ |
glue_serialize.cc | 297 const WebHistoryItem& item, SerializeObject* obj) { 304 WriteString(item.urlString(), obj); 305 WriteString(item.originalURLString(), obj); 306 WriteString(item.target(), obj); 307 WriteString(item.parent(), obj); 308 WriteString(item.title(), obj); 309 WriteString(item.alternateTitle(), obj); 310 WriteReal(item.lastVisitedTime(), obj); 311 WriteInteger(item.scrollOffset().x, obj); 312 WriteInteger(item.scrollOffset().y, obj) 354 WebHistoryItem item; local 482 const WebHistoryItem& item = local 496 const WebHistoryItem& item = local [all...] |
/external/chromium/chrome/browser/ |
keychain_mock_mac.h | 45 // If there are unused slots in the Mock Keychain's capacity, the new item 46 // will use the first free one, otherwise it will stomp the last item. 103 // Adds a keychain item with the given info to the test set. 126 // Sets the data and length of |tag| in the item-th test item. 127 void SetTestDataBytes(int item, UInt32 tag, const void* data, size_t length); 128 // Sets the data and length of |tag| in the item-th test item based on 132 void SetTestDataString(int item, UInt32 tag, const char* value); 133 // Sets the data of the corresponding attribute of the item-th test item t [all...] |
/external/qemu/android/utils/ |
reflist.h | 73 /* Return TRUE iff an ARefList has no item */ 80 /* Return the index of 'item' in the ARefList, or -1. 81 * This returns -1 if 'item' is NULL. 83 int areflist_indexOf(const ARefList* l, void* item); 85 /* Return TRUE iff an ARefList contains 'item' */ 87 areflist_has(const ARefList* l, void* item) 89 return areflist_indexOf(l, item) >= 0; 92 /* Append 'item' to a list. An item can be added several 93 * times to the same list. Do nothing if 'item' is NULL. * [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Boolean/ |
15.6.4.3-1.js | 48 var item = 0; 50 array[item++] = new TestCase( SECTION, "new Boolean(1)", true, (new Boolean(1)).valueOf() ); 52 array[item++] = new TestCase( SECTION, "new Boolean(0)", false, (new Boolean(0)).valueOf() ); 53 array[item++] = new TestCase( SECTION, "new Boolean(-1)", true, (new Boolean(-1)).valueOf() ); 54 array[item++] = new TestCase( SECTION, "new Boolean('1')", true, (new Boolean("1")).valueOf() ); 55 array[item++] = new TestCase( SECTION, "new Boolean('0')", true, (new Boolean("0")).valueOf() ); 56 array[item++] = new TestCase( SECTION, "new Boolean(true)", true, (new Boolean(true)).valueOf() ); 57 array[item++] = new TestCase( SECTION, "new Boolean(false)", false, (new Boolean(false)).valueOf() ); 58 array[item++] = new TestCase( SECTION, "new Boolean('true')", true, (new Boolean("true")).valueOf() ); 59 array[item++] = new TestCase( SECTION, "new Boolean('false')", true, (new Boolean('false')).valueOf() ) [all...] |
15.6.4.3.js | 38 var item = 0; 40 array[item++] = new TestCase( "15.8.6.4", "new Boolean(1)", true, (new Boolean(1)).valueOf() ); 42 array[item++] = new TestCase( "15.8.6.4", "new Boolean(0)", false, (new Boolean(0)).valueOf() ); 43 array[item++] = new TestCase( "15.8.6.4", "new Boolean(-1)", true, (new Boolean(-1)).valueOf() ); 44 array[item++] = new TestCase( "15.8.6.4", "new Boolean('1')", true, (new Boolean("1")).valueOf() ); 45 array[item++] = new TestCase( "15.8.6.4", "new Boolean('0')", true, (new Boolean("0")).valueOf() ); 46 array[item++] = new TestCase( "15.8.6.4", "new Boolean(true)", true, (new Boolean(true)).valueOf() ); 47 array[item++] = new TestCase( "15.8.6.4", "new Boolean(false)", false, (new Boolean(false)).valueOf() ); 48 array[item++] = new TestCase( "15.8.6.4", "new Boolean('true')", true, (new Boolean("true")).valueOf() ); 49 array[item++] = new TestCase( "15.8.6.4", "new Boolean('false')", true, (new Boolean('false')).valueOf() (…) [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Math/ |
15.8.2.12.js | 52 var item = 0; 54 array[item++] = new TestCase( SECTION, "Math.min.length", 2, Math.min.length ); 56 array[item++] = new TestCase( SECTION, "Math.min()", Infinity, Math.min() ); 57 array[item++] = new TestCase( SECTION, "Math.min(void 0, 1)", Number.NaN, Math.min( void 0, 1 ) ); 58 array[item++] = new TestCase( SECTION, "Math.min(void 0, void 0)", Number.NaN, Math.min( void 0, void 0 ) ); 59 array[item++] = new TestCase( SECTION, "Math.min(null, 1)", 0, Math.min( null, 1 ) ); 60 array[item++] = new TestCase( SECTION, "Math.min(-1, null)", -1, Math.min( -1, null ) ); 61 array[item++] = new TestCase( SECTION, "Math.min(true, false)", 0, Math.min(true,false) ); 63 array[item++] = new TestCase( SECTION, "Math.min('-99','99')", -99, Math.min( "-99","99") ); 65 array[item++] = new TestCase( SECTION, "Math.min(NaN,0)", Number.NaN, Math.min(Number.NaN,0) ) [all...] |
/external/webkit/Source/WebKit2/WebProcess/WebPage/ |
WebBackForwardListProxy.cpp | 86 static void updateBackForwardItem(uint64_t itemID, HistoryItem* item) 89 item->encodeBackForwardTree(encoder); 92 item->originalURLString(), item->urlString(), item->title(), encoder.data()), 0); 97 RefPtr<HistoryItem> item = prpItem; local 99 // This item/itemID pair should not already exist in our maps. 100 ASSERT(!historyItemToIDMap().contains(item.get())); 103 historyItemToIDMap().set(item, itemID); 104 idToHistoryItemMap().set(itemID, item); 144 RefPtr<HistoryItem> item = prpItem; local [all...] |
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/ |
InfoPanel.java | 66 TableItem item; local 68 item = new TableItem(mTable, SWT.NONE); 69 item.setText(0, mLabels[i]); 70 item.setText(1, "-"); 139 TableItem item = mTable.getItem(i); local 140 item.setText(1, "-"); 143 TableItem item; local 159 item = mTable.getItem(ENT_APP_DESCR); 160 item.setText(1, clientDescription); 161 item = mTable.getItem(ENT_VM_VERSION) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/build/ |
AaptParserTest.java | 58 "aapterror2.xml:7: error: Resource entry repeatedStyle1 already has bag item " 60 "<item name=\"^android:gravity\">bottom</item>", 61 "<item name=\"android:gravity^\">bottom</item>"); 71 "^<item name=\"android:gravity\">left</item>", 72 "<item name=\"android:gravity\">left</item>^"); 76 // Check for aapt error which occurs when the attribute name in an item style declaratio [all...] |
/external/chromium/chrome/browser/policy/resources/ |
enrollment.html | 16 <div class="login-item"> 17 <div class="login-item-image"> 20 <div class="login-item-content"> 21 <h4 class="login-item-header" 23 <div class="login-item-explain" 27 <div class="login-item"> 28 <div class="login-item-image"> 31 <div class="login-item-content"> 32 <h4 class="login-item-header" 34 <div class="login-item-explain [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/TypeConversion/ |
9.8.1.js | 105 var item = 0; 107 array[item++] = new TestCase( SECTION, "Number.NaN", "NaN", Number.NaN + "" ); 108 array[item++] = new TestCase( SECTION, "0", "0", 0 + "" ); 109 array[item++] = new TestCase( SECTION, "-0", "0", -0 + "" ); 110 array[item++] = new TestCase( SECTION, "Number.POSITIVE_INFINITY", "Infinity", Number.POSITIVE_INFINITY + "" ); 111 array[item++] = new TestCase( SECTION, "Number.NEGATIVE_INFINITY", "-Infinity", Number.NEGATIVE_INFINITY + "" ); 112 array[item++] = new TestCase( SECTION, "-1", "-1", -1 + "" ); 116 array[item++] = new TestCase( SECTION, "1", "1", 1 + "" ); 117 array[item++] = new TestCase( SECTION, "10", "10", 10 + "" ); 118 array[item++] = new TestCase( SECTION, "100", "100", 100 + "" ) [all...] |
/external/webkit/Source/WebCore/manual-tests/ |
plain-text-paste.html | 7 <p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=8276">Bugzilla bug 8276</a> REGRESSION (NativeTextField): Pasting a Finder item into a text field results in a file: URL being pasted instead of just the file name 12 2. Drag each item from the Finder window into the corresponding field below.<br> 13 3. Select item 5 in the Finder window and choose Copy “5” from the Finder’s Edit menu.<br> 14 4. Back in Safari, click inside the “Paste item 5 here” field and choose Paste from the Edit menu.<br> 33 <td>Drag item 1 here: <input></td> 37 <td>Drag item 2 here: <input></td> 41 <td>Drag item 3 here: <input></td> 45 <td>Drag item 4 here: <input></td> 49 <td>Drag item 5 here: <input></td> 53 <td>Paste item 5 here: <input></td [all...] |
/external/webkit/Source/WebKit/gtk/tests/ |
testwebhistoryitem.c | 27 WebKitWebHistoryItem* item; member in struct:__anon13380 33 fixture->item = webkit_web_history_item_new_with_data("http://example.com/", "Example1"); 34 g_assert_cmpint(G_OBJECT(fixture->item)->ref_count, == , 1); 35 g_assert(fixture->item != NULL); 41 g_assert(fixture->item != NULL); 42 g_assert_cmpint(G_OBJECT(fixture->item)->ref_count, ==, 1); 48 g_assert_cmpstr(webkit_web_history_item_get_title(fixture->item), ==, "Example1"); 49 g_assert_cmpstr(webkit_web_history_item_get_uri(fixture->item), ==, "http://example.com/"); 55 webkit_web_history_item_set_alternate_title(fixture->item, "Alternate title"); 56 g_assert_cmpstr(webkit_web_history_item_get_alternate_title(fixture->item), ==, "Alternate title") [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
FolderInfo.java | 52 * @param item 54 public void add(ShortcutInfo item) { 55 contents.add(item); 57 listeners.get(i).onAdd(item); 65 * @param item 67 public void remove(ShortcutInfo item) { 68 contents.remove(item); 70 listeners.get(i).onRemove(item); 111 public void onAdd(ShortcutInfo item); 112 public void onRemove(ShortcutInfo item); [all...] |
/packages/apps/Music/res/values-af/ |
strings.xml | 24 <item quantity="other" msgid="5798230388116542981">"<xliff:g id="COUNT">%d</xliff:g> liedjies"</item> 27 <item quantity="other" msgid="7162294486622945550">"<xliff:g id="COUNT_FOR_ARTIST">%2$d</xliff:g> van <xliff:g id="TOTAL_COUNT">%1$d</xliff:g> liedjies"</item> 30 <item quantity="one" msgid="3798955510439465932">"1 album"</item> 31 <item quantity="other" msgid="3047615499770811984">"<xliff:g id="COUNT">%d</xliff:g> albums"</item> 47 <item quantity="one" msgid="8560276109508404217">"1 liedjie is uitgevee."</item> [all...] |
/packages/apps/Music/res/values-am/ |
strings.xml | 24 <item quantity="other" msgid="5798230388116542981">"<xliff:g id="COUNT">%d</xliff:g>????"</item> 27 <item quantity="other" msgid="7162294486622945550">"<xliff:g id="COUNT_FOR_ARTIST">%2$d</xliff:g>?<xliff:g id="TOTAL_COUNT">%1$d</xliff:g> ????"</item> 30 <item quantity="one" msgid="3798955510439465932">"1 ????"</item> 31 <item quantity="other" msgid="3047615499770811984">"<xliff:g id="COUNT">%d</xliff:g>??????"</item> 47 <item quantity="one" msgid="8560276109508404217">"1 ??? ???? ????"</item> [all...] |
/packages/apps/Music/res/values-ar/ |
strings.xml | 24 <item quantity="other" msgid="5798230388116542981">"<xliff:g id="COUNT">%d</xliff:g> ?? ???????"</item> 27 <item quantity="other" msgid="7162294486622945550">"<xliff:g id="COUNT_FOR_ARTIST">%2$d</xliff:g> ?? ?????? <xliff:g id="TOTAL_COUNT">%1$d</xliff:g> ?? ???????"</item> 30 <item quantity="one" msgid="3798955510439465932">"????? ????"</item> 31 <item quantity="other" msgid="3047615499770811984">"<xliff:g id="COUNT">%d</xliff:g> ?? ?????????"</item> 47 <item quantity="one" msgid="8560276109508404217">"?? ??? ????? ?????"</item> [all...] |
/packages/apps/Music/res/values-bg/ |
strings.xml | 24 <item quantity="other" msgid="5798230388116542981">"<xliff:g id="COUNT">%d</xliff:g> ?????"</item> 27 <item quantity="other" msgid="7162294486622945550">"<xliff:g id="COUNT_FOR_ARTIST">%2$d</xliff:g> ?? <xliff:g id="TOTAL_COUNT">%1$d</xliff:g> ?????"</item> 30 <item quantity="one" msgid="3798955510439465932">"1 ?????"</item> 31 <item quantity="other" msgid="3047615499770811984">"<xliff:g id="COUNT">%d</xliff:g> ??????"</item> 47 <item quantity="one" msgid="8560276109508404217">"1 ??????? ?????"</item> [all...] |
/packages/apps/Music/res/values-ca/ |
strings.xml | 24 <item quantity="other" msgid="5798230388116542981">"<xliff:g id="COUNT">%d</xliff:g> cançons"</item> 27 <item quantity="other" msgid="7162294486622945550">"<xliff:g id="COUNT_FOR_ARTIST">%2$d</xliff:g> de <xliff:g id="TOTAL_COUNT">%1$d</xliff:g> cançons"</item> 30 <item quantity="one" msgid="3798955510439465932">"1 àlbum"</item> 31 <item quantity="other" msgid="3047615499770811984">"<xliff:g id="COUNT">%d</xliff:g> àlbums"</item> 47 <item quantity="one" msgid="8560276109508404217">"S\'ha suprimit 1 cançó."</item> [all...] |