HomeSort by relevance Sort by last modified time
    Searched refs:HTMLAllCollection (Results 1 - 15 of 15) sorted by null

  /external/webkit/Source/WebCore/html/
HTMLAllCollection.h 33 class HTMLAllCollection : public HTMLCollection {
35 static PassRefPtr<HTMLAllCollection> create(PassRefPtr<Node>);
36 virtual ~HTMLAllCollection();
39 HTMLAllCollection(PassRefPtr<Node>);
HTMLAllCollection.cpp 27 #include "HTMLAllCollection.h"
33 PassRefPtr<HTMLAllCollection> HTMLAllCollection::create(PassRefPtr<Node> base)
35 return adoptRef(new HTMLAllCollection(base));
38 HTMLAllCollection::HTMLAllCollection(PassRefPtr<Node> base)
43 HTMLAllCollection::~HTMLAllCollection()
HTMLAllCollection.idl 33 ] HTMLAllCollection {
38 // FIXME: This should return an HTMLAllCollection.
HTMLDocument.idl 39 attribute [Custom, Deletable] HTMLAllCollection all;
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8HTMLAllCollectionCustom.cpp 34 #include "HTMLAllCollection.h"
44 static v8::Handle<v8::Value> getNamedItems(HTMLAllCollection* collection, AtomicString name)
58 static v8::Handle<v8::Value> getItem(HTMLAllCollection* collection, v8::Handle<v8::Value> argument)
76 INC_STATS("DOM.HTMLAllCollection.NamedPropertyGetter");
89 HTMLAllCollection* imp = V8HTMLAllCollection::toNative(info.Holder());
95 INC_STATS("DOM.HTMLAllCollection.item()");
96 HTMLAllCollection* imp = V8HTMLAllCollection::toNative(args.Holder());
102 INC_STATS("DOM.HTMLAllCollection.namedItem()");
103 HTMLAllCollection* imp = V8HTMLAllCollection::toNative(args.Holder());
114 INC_STATS("DOM.HTMLAllCollection.callAsFunction()")
    [all...]
V8HTMLCollectionCustom.cpp 148 return toV8(static_cast<HTMLAllCollection*>(impl));
  /external/webkit/Source/WebCore/bindings/js/
JSHTMLAllCollectionCustom.cpp 29 #include "HTMLAllCollection.h"
69 HTMLAllCollection* collection = static_cast<HTMLAllCollection*>(jsCollection->impl());
109 bool JSHTMLAllCollection::canGetItemsForName(ExecState*, HTMLAllCollection* collection, const Identifier& propertyName)
JSHTMLCollectionCustom.cpp 25 #include "HTMLAllCollection.h"
147 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, HTMLAllCollection, collection);
  /external/webkit/Source/WebKit/chromium/src/
WebPageSerializer.cpp 37 #include "HTMLAllCollection.h"
166 RefPtr<HTMLAllCollection> allNodes = frame->document()->all();
WebPageSerializerImpl.cpp 86 #include "HTMLAllCollection.h"
480 RefPtr<HTMLAllCollection> all = currentDoc->all();
  /external/webkit/Source/WebCore/inspector/
InjectedScriptSource.js 351 return (typeof object === "undefined") && inspectedWindow.HTMLAllCollection && object instanceof inspectedWindow.HTMLAllCollection;
  /external/webkit/Source/WebCore/dom/
Document.h 85 class HTMLAllCollection;
391 PassRefPtr<HTMLAllCollection> all();
    [all...]
Document.cpp 75 #include "HTMLAllCollection.h"
    [all...]
  /external/webkit/Source/WebCore/page/
DOMWindow.idl 483 attribute HTMLAllCollectionConstructor HTMLAllCollection;
    [all...]
  /external/webkit/Source/WebCore/
Android.mk 328 html/HTMLAllCollection.cpp \
    [all...]

Completed in 1235 milliseconds