/external/chromium_org/third_party/WebKit/Source/web/ |
D | WebIDBKeyPath.cpp | 36 WebIDBKeyPath WebIDBKeyPath::create(const WebString& keyPath) in create() 38 return WebIDBKeyPath(IDBKeyPath(keyPath)); in create() 41 WebIDBKeyPath WebIDBKeyPath::create(const WebVector<WebString>& keyPath) in create() 46 return WebIDBKeyPath(IDBKeyPath(strings)); in create() 49 WebIDBKeyPath WebIDBKeyPath::createNull() in createNull() 51 return WebIDBKeyPath(IDBKeyPath()); in createNull() 54 void WebIDBKeyPath::assign(const WebIDBKeyPath& keyPath) in assign() 60 void WebIDBKeyPath::reset() in reset() 65 bool WebIDBKeyPath::isValid() const in isValid() 71 WebIDBKeyPathType WebIDBKeyPath::keyPathType() const in keyPathType() [all …]
|
D | web.gypi | 166 'WebIDBKeyPath.cpp',
|
D | blink_web.target.linux-mips64.mk | 135 third_party/WebKit/Source/web/WebIDBKeyPath.cpp \
|
D | blink_web.target.linux-x86_64.mk | 135 third_party/WebKit/Source/web/WebIDBKeyPath.cpp \
|
D | blink_web.target.linux-arm64.mk | 135 third_party/WebKit/Source/web/WebIDBKeyPath.cpp \
|
D | blink_web.target.darwin-mips.mk | 135 third_party/WebKit/Source/web/WebIDBKeyPath.cpp \
|
D | blink_web.target.linux-x86.mk | 135 third_party/WebKit/Source/web/WebIDBKeyPath.cpp \
|
D | blink_web.target.darwin-x86.mk | 135 third_party/WebKit/Source/web/WebIDBKeyPath.cpp \
|
D | blink_web.target.linux-arm.mk | 135 third_party/WebKit/Source/web/WebIDBKeyPath.cpp \
|
D | blink_web.target.darwin-mips64.mk | 135 third_party/WebKit/Source/web/WebIDBKeyPath.cpp \
|
D | blink_web.target.linux-mips.mk | 135 third_party/WebKit/Source/web/WebIDBKeyPath.cpp \
|
D | blink_web.target.darwin-x86_64.mk | 135 third_party/WebKit/Source/web/WebIDBKeyPath.cpp \
|
D | blink_web.target.darwin-arm64.mk | 135 third_party/WebKit/Source/web/WebIDBKeyPath.cpp \
|
D | blink_web.target.darwin-arm.mk | 135 third_party/WebKit/Source/web/WebIDBKeyPath.cpp \
|
/external/chromium_org/third_party/WebKit/public/platform/ |
D | WebIDBKeyPath.h | 39 class WebIDBKeyPath { 41 BLINK_EXPORT static WebIDBKeyPath create(const WebString&); 42 BLINK_EXPORT static WebIDBKeyPath create(const WebVector<WebString>&); 43 BLINK_EXPORT static WebIDBKeyPath createNull(); 45 WebIDBKeyPath(const WebIDBKeyPath& keyPath) { assign(keyPath); } in WebIDBKeyPath() function 46 virtual ~WebIDBKeyPath() { reset(); } in ~WebIDBKeyPath() 47 WebIDBKeyPath& operator=(const WebIDBKeyPath& keyPath) 54 BLINK_EXPORT void assign(const WebIDBKeyPath&); 62 WebIDBKeyPath(const IDBKeyPath&); 63 WebIDBKeyPath& operator=(const IDBKeyPath&);
|
D | WebIDBMetadata.h | 59 WebIDBKeyPath keyPath; 65 : keyPath(WebIDBKeyPath::createNull()) in ObjectStore() 71 WebIDBKeyPath keyPath; 76 : keyPath(WebIDBKeyPath::createNull()) in Index()
|
D | WebIDBDatabase.h | 42 class WebIDBKeyPath; variable 50 … transactionId, long long objectStoreId, const WebString& name, const WebIDBKeyPath&, bool autoInc… in createObjectStore() argument 59 …g long objectStoreId, long long indexId, const WebString& name, const WebIDBKeyPath&, bool unique,… in createIndex() argument
|
D | WebIDBCallbacks.h | 42 class WebIDBKeyPath; variable 56 …onst WebData&, const WebVector<WebBlobInfo>&, const WebIDBKey&, const WebIDBKeyPath&) { BLINK_ASSE… in onSuccess() argument
|
/external/chromium_org/content/child/indexed_db/ |
D | indexed_db_key_builders.cc | 110 const blink::WebIDBKeyPath& key_path) { in Build() 124 blink::WebIDBKeyPath WebIDBKeyPathBuilder::Build( in Build() 128 return blink::WebIDBKeyPath::create(WebString(key_path.string())); in Build() 130 return blink::WebIDBKeyPath::create(CopyArray(key_path.array())); in Build() 132 return blink::WebIDBKeyPath::createNull(); in Build() 135 return blink::WebIDBKeyPath::createNull(); in Build()
|
D | indexed_db_key_builders.h | 48 static IndexedDBKeyPath Build(const blink::WebIDBKeyPath& key_path); 56 static blink::WebIDBKeyPath Build(const IndexedDBKeyPath& key_path);
|
D | webidbdatabase_impl.h | 35 const blink::WebIDBKeyPath& key_path, 94 const blink::WebIDBKeyPath&,
|
D | webidbdatabase_impl.cc | 28 using blink::WebIDBKeyPath; 57 const WebIDBKeyPath& key_path, in createObjectStore() 242 const WebIDBKeyPath& key_path, in createIndex()
|
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
D | WebIDBCallbacksImpl.h | 47 class WebIDBKeyPath; variable 63 …ss(const WebData&, const WebVector<WebBlobInfo>&, const WebIDBKey&, const WebIDBKeyPath&) OVERRIDE;
|
D | WebIDBCallbacksImpl.cpp | 51 using blink::WebIDBKeyPath; 127 …lue, const WebVector<WebBlobInfo>& webBlobInfo, const WebIDBKey& key, const WebIDBKeyPath& keyPath) in onSuccess()
|