/external/webkit/LayoutTests/storage/domstorage/ |
D | complex-keys-expected.txt | 10 PASS storage.getItem('FOO') is null 13 PASS storage.getItem('FOO') is "BAR" 14 PASS storage.getItem('foo') is null 20 PASS storage.getItem('foo') is "x" 24 PASS storage.getItem('foo') is "y" 28 PASS storage.getItem('foo') is "z" 33 PASS storage.getItem('null') is "asdf" 34 PASS storage.getItem(null) is "asdf" 39 PASS storage.getItem(null) is "1" 41 PASS storage.getItem(null) is "2" [all …]
|
D | complex-values-expected.txt | 14 PASS typeof storage.getItem('foo') is "object" 15 PASS storage.getItem('foo') is null 22 PASS typeof storage.getItem('foo1') is "string" 23 PASS storage.getItem('foo1') is "null" 29 PASS typeof storage.getItem('foo2') is "string" 30 PASS storage.getItem('foo2') is "null" 36 PASS typeof storage.getItem('foo3') is "string" 37 PASS storage.getItem('foo3') is "null" 44 PASS typeof storage.getItem('foo4') is "string" 45 PASS storage.getItem('foo4') is "undefined" [all …]
|
D | remove-item-expected.txt | 26 PASS storage.getItem('foo3') is null 28 PASS storage.getItem('foo3') is "bar" 30 PASS storage.getItem('foo3') is null 32 PASS storage.getItem('foo3') is null 55 PASS storage.getItem('foo3') is null 57 PASS storage.getItem('foo3') is "bar" 59 PASS storage.getItem('foo3') is null 61 PASS storage.getItem('foo3') is null
|
D | window-attributes-exist-expected.txt | 5 Storage object sessionStorage has getItem 14 Storage object localStorage has getItem
|
/external/icu4c/tools/ctestfw/ |
D | datamap.cpp | 100 const ResourceBundle *RBDataMap::getItem(const char* key, UErrorCode &status) const in getItem() function in RBDataMap 118 const ResourceBundle *r = getItem(key, status); in getString() 129 const ResourceBundle *r = getItem(key, status); in getInt28() 140 const ResourceBundle *r = getItem(key, status); in getUInt28() 150 const ResourceBundle *r = getItem(key, status); in getIntVector() 160 const ResourceBundle *r = getItem(key, status); in getBinary() 180 const ResourceBundle *r = getItem(key, status); in getStringArray() 201 const ResourceBundle *r = getItem(key, status); in getIntArray()
|
/external/chromium/third_party/icu/source/tools/ctestfw/ |
D | datamap.cpp | 100 const ResourceBundle *RBDataMap::getItem(const char* key, UErrorCode &status) const in getItem() function in RBDataMap 118 const ResourceBundle *r = getItem(key, status); in getString() 129 const ResourceBundle *r = getItem(key, status); in getInt28() 140 const ResourceBundle *r = getItem(key, status); in getUInt28() 150 const ResourceBundle *r = getItem(key, status); in getIntVector() 160 const ResourceBundle *r = getItem(key, status); in getBinary() 180 const ResourceBundle *r = getItem(key, status); in getStringArray() 201 const ResourceBundle *r = getItem(key, status); in getIntArray()
|
/external/webkit/WebCore/svg/ |
D | SVGList.h | 74 return getItem(0, ec); in getFirst() 80 return getItem(m_vector.size() - 1, ec); in getLast() 83 Item getItem(unsigned int index, ExceptionCode& ec) in getItem() function 93 const Item getItem(unsigned int index, ExceptionCode& ec) const in getItem() function 218 Item getItem(unsigned int index, ExceptionCode& ec) in getItem() function 220 … SVGPODListItem<Item>* ptr(SVGList<RefPtr<SVGPODListItem<Item> > >::getItem(index, ec).get()); in getItem() 227 const Item getItem(unsigned int index, ExceptionCode& ec) const in getItem() function 229 … SVGPODListItem<Item>* ptr(SVGList<RefPtr<SVGPODListItem<Item> > >::getItem(index, ec).get()); in getItem()
|
D | SVGPolylineElement.cpp | 48 polyData.moveTo(points()->getItem(0, ec)); in toPathData() 51 polyData.addLineTo(points()->getItem(i, ec)); in toPathData()
|
D | SVGPolygonElement.cpp | 48 polyData.moveTo(points()->getItem(0, ec)); in toPathData() 51 polyData.addLineTo(points()->getItem(i, ec)); in toPathData()
|
D | SVGPathSegList.cpp | 61 SVGPathSeg* segment = getItem(i, ec).get(); in getPathSegAtLength() 111 SVGPathSeg* segment = getItem(i, ec).get(); in toPathData() 190 SVGPathSeg* from = fromList->getItem(n, ec).get(); in createAnimated() 193 SVGPathSeg* to = toList->getItem(n, ec).get(); in createAnimated()
|
D | SVGTests.cpp | 78 String value = m_features->getItem(i, ec); in isValid() 86 if (m_systemLanguage->getItem(i, ec) != defaultLanguage().substring(0, 2)) in isValid()
|
D | SVGPointList.cpp | 47 FloatPoint point = getItem(i, ec); in valueAsString()
|
D | SVGNumberList.cpp | 65 result += String::number(getItem(i, ec)); in valueAsString()
|
/external/protobuf/java/src/test/java/com/google/protobuf/ |
D | WireFormatTest.java | 358 assertEquals(TYPE_ID_1, raw.getItem(0).getTypeId()); in testSerializeMessageSet() 359 assertEquals(TYPE_ID_2, raw.getItem(1).getTypeId()); in testSerializeMessageSet() 360 assertEquals(UNKNOWN_TYPE_ID, raw.getItem(2).getTypeId()); in testSerializeMessageSet() 364 raw.getItem(0).getMessage().toByteArray()); in testSerializeMessageSet() 369 raw.getItem(1).getMessage().toByteArray()); in testSerializeMessageSet() 372 assertEquals("bar", raw.getItem(2).getMessage().toStringUtf8()); in testSerializeMessageSet()
|
/external/webkit/WebCore/bindings/v8/custom/ |
D | V8HTMLAllCollectionCustom.cpp | 59 static v8::Handle<v8::Value> getItem(HTMLAllCollection* collection, v8::Handle<v8::Value> argument) in getItem() function 98 return getItem(imp, args[0]); in itemCallback() 122 return getItem(imp, args[0]); in callAsFunctionCallback()
|
D | V8HTMLCollectionCustom.cpp | 59 static v8::Handle<v8::Value> getItem(HTMLCollection* collection, v8::Handle<v8::Value> argument) in getItem() function 98 return getItem(imp, args[0]); in itemCallback() 122 return getItem(imp, args[0]); in callAsFunctionCallback()
|
D | V8StorageCustom.cpp | 51 String val = storage->getItem(key); in namedPropertyEnumerator() 64 return v8String(storage->getItem(name)); in storageGetter()
|
/external/webkit/WebKit/chromium/src/ |
D | StorageAreaProxy.cpp | 69 String StorageAreaProxy::getItem(const String& key) const in getItem() function in WebCore::StorageAreaProxy 71 return m_storageArea->getItem(key); in getItem() 106 return !getItem(key).isNull(); in contains()
|
D | WebStorageAreaImpl.cpp | 64 WebString WebStorageAreaImpl::getItem(const WebString& key) in getItem() function in WebKit::WebStorageAreaImpl 66 return m_storageArea->getItem(key); in getItem()
|
/external/webkit/WebCore/storage/ |
D | Storage.cpp | 70 String Storage::getItem(const String& key) const in getItem() function in WebCore::Storage 75 return m_storageArea->getItem(key); in getItem()
|
D | StorageAreaImpl.cpp | 127 String StorageAreaImpl::getItem(const String& key) const in getItem() function in WebCore::StorageAreaImpl 132 return m_storageMap->getItem(key); in getItem()
|
D | StorageArea.h | 52 virtual String getItem(const String& key) const = 0;
|
D | Storage.h | 49 String getItem(const String&) const;
|
/external/webkit/WebCore/bindings/js/ |
D | JSSVGPathSegListCustom.cpp | 69 JSValue JSSVGPathSegList::getItem(ExecState* exec, const ArgList& args) in getItem() function in WebCore::JSSVGPathSegList 81 SVGPathSeg* obj = WTF::getPtr(list->getItem(index, ec)); in getItem()
|
/external/skia/include/views/ |
D | SkOSMenu.h | 34 const char* getItem(int index, uint32_t* cmdID) const;
|