OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:V8CustomXPathNSResolver
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8CustomXPathNSResolver.h
42
//
V8CustomXPathNSResolver
does not create a persistent handle to the
43
// given resolver object. So the lifetime of
V8CustomXPathNSResolver
45
class
V8CustomXPathNSResolver
: public XPathNSResolver {
47
static PassRefPtr<
V8CustomXPathNSResolver
> create(v8::Handle<v8::Object> resolver, v8::Isolate*);
49
virtual ~
V8CustomXPathNSResolver
();
53
V8CustomXPathNSResolver
(v8::Handle<v8::Object> resolver, v8::Isolate*);
V8CustomXPathNSResolver.cpp
31
#include "bindings/v8/custom/
V8CustomXPathNSResolver
.h"
46
PassRefPtr<
V8CustomXPathNSResolver
>
V8CustomXPathNSResolver
::create(v8::Handle<v8::Object> resolver, v8::Isolate* isolate)
48
return adoptRef(new
V8CustomXPathNSResolver
(resolver, isolate));
51
V8CustomXPathNSResolver
::
V8CustomXPathNSResolver
(v8::Handle<v8::Object> resolver, v8::Isolate* isolate)
57
V8CustomXPathNSResolver
::~
V8CustomXPathNSResolver
()
61
AtomicString
V8CustomXPathNSResolver
::lookupNamespaceURI(const String& prefix)
Completed in 35 milliseconds