Home
last modified time | relevance | path

Searched refs:WebIDBKeyPath (Results 1 – 24 of 24) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/
DWebIDBKeyPath.cpp36 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 …]
Dweb.gypi166 'WebIDBKeyPath.cpp',
Dblink_web.target.linux-mips64.mk135 third_party/WebKit/Source/web/WebIDBKeyPath.cpp \
Dblink_web.target.linux-x86_64.mk135 third_party/WebKit/Source/web/WebIDBKeyPath.cpp \
Dblink_web.target.linux-arm64.mk135 third_party/WebKit/Source/web/WebIDBKeyPath.cpp \
Dblink_web.target.darwin-mips.mk135 third_party/WebKit/Source/web/WebIDBKeyPath.cpp \
Dblink_web.target.linux-x86.mk135 third_party/WebKit/Source/web/WebIDBKeyPath.cpp \
Dblink_web.target.darwin-x86.mk135 third_party/WebKit/Source/web/WebIDBKeyPath.cpp \
Dblink_web.target.linux-arm.mk135 third_party/WebKit/Source/web/WebIDBKeyPath.cpp \
Dblink_web.target.darwin-mips64.mk135 third_party/WebKit/Source/web/WebIDBKeyPath.cpp \
Dblink_web.target.linux-mips.mk135 third_party/WebKit/Source/web/WebIDBKeyPath.cpp \
Dblink_web.target.darwin-x86_64.mk135 third_party/WebKit/Source/web/WebIDBKeyPath.cpp \
Dblink_web.target.darwin-arm64.mk135 third_party/WebKit/Source/web/WebIDBKeyPath.cpp \
Dblink_web.target.darwin-arm.mk135 third_party/WebKit/Source/web/WebIDBKeyPath.cpp \
/external/chromium_org/third_party/WebKit/public/platform/
DWebIDBKeyPath.h39 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&);
DWebIDBMetadata.h59 WebIDBKeyPath keyPath;
65 : keyPath(WebIDBKeyPath::createNull()) in ObjectStore()
71 WebIDBKeyPath keyPath;
76 : keyPath(WebIDBKeyPath::createNull()) in Index()
DWebIDBDatabase.h42 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
DWebIDBCallbacks.h42 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/
Dindexed_db_key_builders.cc110 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()
Dindexed_db_key_builders.h48 static IndexedDBKeyPath Build(const blink::WebIDBKeyPath& key_path);
56 static blink::WebIDBKeyPath Build(const IndexedDBKeyPath& key_path);
Dwebidbdatabase_impl.h35 const blink::WebIDBKeyPath& key_path,
94 const blink::WebIDBKeyPath&,
Dwebidbdatabase_impl.cc28 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/
DWebIDBCallbacksImpl.h47 class WebIDBKeyPath; variable
63 …ss(const WebData&, const WebVector<WebBlobInfo>&, const WebIDBKey&, const WebIDBKeyPath&) OVERRIDE;
DWebIDBCallbacksImpl.cpp51 using blink::WebIDBKeyPath;
127 …lue, const WebVector<WebBlobInfo>& webBlobInfo, const WebIDBKey& key, const WebIDBKeyPath& keyPath) in onSuccess()