/external/webkit/JavaScriptCore/tests/mozilla/ecma/Number/ |
15.7.3.1-1.js | 48 var item = 0; 50 array[item++] = new TestCase(SECTION, "var NUM_PROT = Number.prototype; delete( Number.prototype ); NUM_PROT == Number.prototype", true, "var NUM_PROT = Number.prototype; delete( Number.prototype ); NUM_PROT == Number.prototype" ); 51 array[item++] = new TestCase(SECTION, "delete( Number.prototype )", false, "delete( Number.prototype )" );
|
15.7.3.1-2.js | 48 var item = 0; 50 array[item++] = new TestCase( SECTION, 55 array[item++] = new TestCase( SECTION,
|
15.7.3.3-2.js | 47 var item = 0; 51 array[item++] = new TestCase( SECTION, "delete( Number.MIN_VALUE )", false, "delete( Number.MIN_VALUE )" ); 52 array[item++] = new TestCase( SECTION, "delete( Number.MIN_VALUE ); Number.MIN_VALUE", MIN_VAL, "delete( Number.MIN_VALUE );Number.MIN_VALUE" );
|
15.7.3.5-2.js | 48 var item = 0; 50 array[item++] = new TestCase( SECTION, 55 array[item++] = new TestCase( SECTION,
|
15.7.3.6-2.js | 46 var item = 0; 48 array[item++] = new TestCase(SECTION, "delete( Number.POSITIVE_INFINITY )", false, "delete( Number.POSITIVE_INFINITY )" ); 49 array[item++] = new TestCase(SECTION, "delete( Number.POSITIVE_INFINITY ); Number.POSITIVE_INFINITY", Infinity, "delete( Number.POSITIVE_INFINITY );Number.POSITIVE_INFINITY" );
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/ObjectObjects/ |
15.2.3-1.js | 47 var item = 0; 49 array[item++] = new TestCase( SECTION, "Object.__proto__", Function.prototype, Object.__proto__ ); 50 array[item++] = new TestCase( SECTION, "Object.length", 1, Object.length );
|
15.2.3.js | 50 var item = 0; 52 // array[item++] = new TestCase( SECTION, "Object.__proto__", Function.prototype, Object.__proto__ ); 53 array[item++] = new TestCase( SECTION, "Object.length", 1, Object.length );
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/String/ |
15.5.3.1-1.js | 51 var item = 0; 53 array[item++] = new TestCase( SECTION, "String.prototype.length", 0, String.prototype.length ); 55 array[item++] = new TestCase( SECTION,
|
15.5.3.js | 53 var item = 0; 55 array[item++] = new TestCase( SECTION, "String.prototype", Function.prototype, String.__proto__ ); 56 array[item++] = new TestCase( SECTION, "String.length", 1, String.length );
|
15.5.4.1.js | 44 var item = 0; 46 array[item++] = new TestCase( SECTION, "String.prototype.constructor == String", true, String.prototype.constructor == String ); 47 array[item++] = new TestCase( SECTION, "var STRING = new String.prototype.constructor('hi'); STRING.getClass = Object.prototype.toString; STRING.getClass()",
|
/external/webkit/WebCore/bindings/js/ |
JSInspectorFrontendHostCustom.cpp | 63 JSObject* item = asObject(array->getIndex(i)); local 64 JSValue label = item->get(execState, Identifier(execState, "label")); 65 JSValue id = item->get(execState, Identifier(execState, "id"));
|
/external/webkit/WebCore/bindings/v8/custom/ |
V8StyleSheetListCustom.cpp | 51 HTMLStyleElement* item = imp->getNamedItem(toWebCoreString(name)); local 52 if (!item) 55 return toV8(item->sheet());
|
/external/webkit/WebCore/css/ |
CSSRuleList.cpp | 41 StyleBase* style = list->item(i); 57 CSSRule* CSSRuleList::item(unsigned index) function in class:WebCore::CSSRuleList 60 StyleBase* rule = m_list->item(index);
|
/external/webkit/WebCore/history/ |
PageCache.h | 49 CachedPage* get(HistoryItem* item) { return item ? item->m_cachedPage.get() : 0; }
|
/external/webkit/WebCore/html/canvas/ |
WebGLFloatArray.h | 65 result = item(index); 71 return item(index); 74 float item(unsigned index) const function in class:WebCore::WebGLFloatArray
|
WebGLIntArray.h | 70 result = item(index); 76 return item(index); 79 int item(unsigned index) const function in class:WebCore::WebGLIntArray
|
WebGLShortArray.h | 69 result = item(index); 75 return item(index); 78 short item(unsigned index) const function in class:WebCore::WebGLShortArray
|
/external/webkit/WebCore/platform/ |
DeprecatedPtrListImpl.cpp | 141 bool DeprecatedPtrListImpl::insert(unsigned n, const void *item) 147 DeprecatedListNode *node = new DeprecatedListNode(const_cast<void*>(item)); 250 bool DeprecatedPtrListImpl::removeRef(const void *item, bool deleteItem) 256 while (node && item != node->data) { 340 void DeprecatedPtrListImpl::append(const void *item) 342 insert(nodeCount, item); 345 void DeprecatedPtrListImpl::prepend(const void *item) 347 insert(0, item); 350 unsigned DeprecatedPtrListImpl::containsRef(const void *item) const 355 if (item == node->data) [all...] |
/external/webkit/WebCore/wml/ |
WMLDocument.cpp | 75 HistoryItem* item = list->backItem(); 76 if (!item) 79 page->goToItem(item, FrameLoadTypeBackWMLDeckNotAccessible);
|
/external/webkit/WebKit/mac/History/ |
WebHistoryItemInternal.h | 37 WebCore::HistoryItem* core(WebHistoryItem *item); 38 WebHistoryItem *kit(WebCore::HistoryItem* item); 50 - (id)initWithWebCoreHistoryItem:(PassRefPtr<WebCore::HistoryItem>)item;
|
/external/webkit/WebKit/mac/WebCoreSupport/ |
WebKeyGenerator.m | 55 UI_STRING("2048 (High Grade)", "Menu item title for KEYGEN pop-up menu"), 56 UI_STRING("1024 (Medium Grade)", "Menu item title for KEYGEN pop-up menu"), 57 UI_STRING("512 (Low Grade)", "Menu item title for KEYGEN pop-up menu"), nil];
|
/frameworks/base/core/java/android/content/ |
SyncAdaptersCache.java | 70 public void writeAsXml(SyncAdapterType item, XmlSerializer out) throws IOException { 71 out.attribute(null, "authority", item.authority); 72 out.attribute(null, "accountType", item.accountType);
|
/frameworks/base/core/java/android/view/ |
MenuInflater.java | 49 /** Item tag name in XML. */ 50 private static final String XML_ITEM = "item"; 132 // A menu start tag denotes a submenu for an item 151 // Add the item if it hasn't been added (if the item was 179 * Group state is set on items as they are added, allowing an item to 250 * Called when the parser is pointing to an item tag. 269 // Item has attribute checkable, use it 272 // Item does not have attribute, use the group's (group can have one more state 293 private void setItem(MenuItem item) { [all...] |
/frameworks/base/core/tests/coretests/src/android/widget/listview/touch/ |
ListTouchBottomGravityTest.java | 52 // First item should be selected 71 assertEquals("Last item is not touching the bottom edge", 90 assertEquals("Last item is not touching the bottom edge",
|
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/ |
ValueParser.java | 102 * Retrieves Item information from the COMPREHENSION-TLV object. 105 * @return An Item 108 static Item retrieveItem(ComprehensionTlv ctlv) throws ResultException { 109 Item item = null; local 122 item = new Item(id, text); 128 return item; 132 * Retrieves Item id information from the COMPREHENSION-TLV object. 135 * @return An Item i [all...] |