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/webkit/Source/WebKit/chromium/public/
WebIDBKeyPath.h
41
class
WebIDBKeyPath
{
43
WEBKIT_API static
WebIDBKeyPath
create(const WebString&);
44
WebIDBKeyPath
(const
WebIDBKeyPath
& keyPath) { assign(keyPath); }
45
~
WebIDBKeyPath
() { reset(); }
48
WEBKIT_API void assign(const
WebIDBKeyPath
&);
56
WebIDBKeyPath
();
59
WebIDBKeyPath
(const WTF::Vector<WebCore::IDBKeyPathElement, 0>&, int parseError);
/external/webkit/Source/WebKit/chromium/src/
WebIDBKeyPath.cpp
27
#include "
WebIDBKeyPath
.h"
40
WebIDBKeyPath
WebIDBKeyPath
::create(const WebString& keyPath)
45
return
WebIDBKeyPath
(idbElements, static_cast<int>(idbError));
48
WebIDBKeyPath
::
WebIDBKeyPath
(const WTF::Vector<IDBKeyPathElement>& elements, int parseError)
54
int
WebIDBKeyPath
::parseError() const
59
void
WebIDBKeyPath
::assign(const
WebIDBKeyPath
& keyPath)
65
void
WebIDBKeyPath
::reset(
[
all
...]
Completed in 43 milliseconds