OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:WebIDBKeyPath
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/public/platform/
WebIDBKeyPath.h
39
class
WebIDBKeyPath
{
41
WEBKIT_EXPORT static
WebIDBKeyPath
create(const WebString&);
42
WEBKIT_EXPORT static
WebIDBKeyPath
create(const WebVector<WebString>&);
43
WEBKIT_EXPORT static
WebIDBKeyPath
createNull();
45
WebIDBKeyPath
(const
WebIDBKeyPath
& keyPath) { assign(keyPath); }
46
virtual ~
WebIDBKeyPath
() { reset(); }
47
WebIDBKeyPath
& operator=(const
WebIDBKeyPath
& keyPath)
54
WEBKIT_EXPORT void assign(const
WebIDBKeyPath
&)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/web/
WebIDBKeyPath.cpp
27
#include "public/platform/
WebIDBKeyPath
.h"
38
WebIDBKeyPath
WebIDBKeyPath
::create(const WebString& keyPath)
40
return
WebIDBKeyPath
(IDBKeyPath(keyPath));
43
WebIDBKeyPath
WebIDBKeyPath
::create(const WebVector<WebString>& keyPath)
48
return
WebIDBKeyPath
(IDBKeyPath(strings));
51
WebIDBKeyPath
WebIDBKeyPath
::createNull()
53
return
WebIDBKeyPath
(IDBKeyPath())
[
all
...]
Completed in 245 milliseconds