HomeSort by relevance Sort by last modified time
    Searched refs:document (Results 101 - 125 of 4108) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webkit/Source/WebCore/html/
HTMLMapElement.cpp 26 #include "Document.h"
41 HTMLMapElement::HTMLMapElement(const QualifiedName& tagName, Document* document)
42 : HTMLElement(tagName, document)
47 PassRefPtr<HTMLMapElement> HTMLMapElement::create(Document* document)
49 return adoptRef(new HTMLMapElement(mapTag, document));
52 PassRefPtr<HTMLMapElement> HTMLMapElement::create(const QualifiedName& tagName, Document* document)
54 return adoptRef(new HTMLMapElement(tagName, document));
108 Document* document = this->document(); local
    [all...]
HTMLNameCollection.h 31 class Document;
35 static PassRefPtr<HTMLNameCollection> create(PassRefPtr<Document> document, CollectionType type, const String& name)
37 return adoptRef(new HTMLNameCollection(document, type, name));
41 HTMLNameCollection(PassRefPtr<Document>, CollectionType, const String& name);
HTMLIFrameElement.cpp 39 inline HTMLIFrameElement::HTMLIFrameElement(const QualifiedName& tagName, Document* document)
40 : HTMLFrameElementBase(tagName, document)
45 PassRefPtr<HTMLIFrameElement> HTMLIFrameElement::create(const QualifiedName& tagName, Document* document)
47 return adoptRef(new HTMLIFrameElement(tagName, document));
116 if (inDocument() && document()->isHTMLDocument()) {
117 HTMLDocument* document = static_cast<HTMLDocument*>(this->document()); local
118 document->removeExtraNamedItem(m_name)
    [all...]
HTMLPlugInImageElement.cpp 36 HTMLPlugInImageElement::HTMLPlugInImageElement(const QualifiedName& tagName, Document* document, bool createdByParser, PreferPlugInsForImagesOption preferPlugInsForImagesOption)
37 : HTMLPlugInElement(tagName, document)
61 if (Frame* frame = document()->frame()) {
73 ASSERT(document());
74 ASSERT(document()->frame());
75 if (document()->frame()->page()->frameCount() >= Page::maxNumberOfFrames)
80 KURL completeURL = document()->completeURL(url);
82 for (Frame* frame = document()->frame(); frame; frame = frame->tree()->parent()) {
83 if (equalIgnoringFragmentIdentifier(frame->document()->url(), completeURL))
    [all...]
HTMLKeygenElement.cpp 29 #include "Document.h"
47 static PassRefPtr<KeygenSelectElement> create(Document* document)
49 return adoptRef(new KeygenSelectElement(document));
59 KeygenSelectElement(Document* document)
60 : HTMLSelectElement(selectTag, document, 0)
65 inline HTMLKeygenElement::HTMLKeygenElement(const QualifiedName& tagName, Document* document, HTMLFormElement* form)
66 : HTMLFormControlElementWithState(tagName, document, form
    [all...]
  /external/webkit/Source/WebCore/dom/
StyleElement.cpp 25 #include "Document.h"
40 StyleElement::StyleElement(Document* document, bool createdByParser)
45 if (createdByParser && document && document->scriptableDocumentParser())
46 m_startLineNumber = document->scriptableDocumentParser()->lineNumber();
53 void StyleElement::insertedIntoDocument(Document* document, Element* element)
55 ASSERT(document);
57 document->addStyleSheetCandidateNode(element, m_createdByParser)
134 Document* document = e->document(); local
    [all...]
ShadowRoot.h 34 class Document;
38 static PassRefPtr<ShadowRoot> create(Document*);
44 ShadowRoot(Document*);
48 inline PassRefPtr<ShadowRoot> ShadowRoot::create(Document* document)
50 return adoptRef(new ShadowRoot(document));
DocumentParser.cpp 33 DocumentParser::DocumentParser(Document* document)
36 , m_document(document)
38 ASSERT(document);
43 // Document is expected to call detach() before releasing its ref.
45 // as there is no Document to release the ref.
  /external/chromium/chrome/common/extensions/docs/examples/tutorials/analytics/
analytics.js 29 var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
31 var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  /external/webkit/Source/WebCore/editing/
CreateLinkCommand.h 35 static PassRefPtr<CreateLinkCommand> create(Document* document, const String& linkURL)
37 return adoptRef(new CreateLinkCommand(document, linkURL));
41 CreateLinkCommand(Document*, const String& linkURL);
InsertLineBreakCommand.h 35 static PassRefPtr<InsertLineBreakCommand> create(Document* document)
37 return adoptRef(new InsertLineBreakCommand(document));
41 InsertLineBreakCommand(Document*);
SetSelectionCommand.cpp 34 : SimpleEditCommand(selection.base().anchorNode()->document())
42 SelectionController* selectionController = document()->frame()->selection();
53 SelectionController* selectionController = document()->frame()->selection();
  /external/webkit/Source/WebCore/html/parser/
HTMLParserScheduler.cpp 31 #include "Document.h"
65 , m_parserTimeLimit(parserTimeLimit(m_parser->document()->page()))
66 , m_parserChunkSize(parserChunkSize(m_parser->document()->page()))
82 if (m_parser->document()->isLayoutTimerActive()) {
93 Document* document = m_parser->document(); local
94 bool needsFirstPaint = document->view() && !document->view()->hasEverPainted();
95 if (needsFirstPaint && document->isLayoutTimerActive()
    [all...]
TextDocumentParser.h 35 static PassRefPtr<TextDocumentParser> create(HTMLDocument* document)
37 return adoptRef(new TextDocumentParser(document));
  /external/webkit/Source/WebCore/manual-tests/inspector/resources/
script-error.js 1 var test = document.body;
  /external/webkit/Source/WebCore/page/
AbstractView.idl 34 readonly attribute Document document;
PageGroupLoadDeferrer.cpp 51 frame->document()->suspendScriptedAnimationControllerCallbacks();
52 frame->document()->suspendActiveDOMObjects(ActiveDOMObject::WillShowDialog);
53 frame->document()->scriptRunner()->suspend();
54 if (DocumentParser* parser = frame->document()->parser())
74 frame->document()->resumeActiveDOMObjects();
75 frame->document()->resumeScriptedAnimationControllerCallbacks();
76 frame->document()->scriptRunner()->resume();
77 if (DocumentParser* parser = frame->document()->parser())
  /external/webkit/Source/WebCore/wml/
WMLInsertedLegendElement.cpp 28 WMLInsertedLegendElement::WMLInsertedLegendElement(const QualifiedName& tagName, Document* doc)
33 PassRefPtr<WMLInsertedLegendElement> WMLInsertedLegendElement::create(const QualifiedName& tagName, Document* document)
35 return adoptRef(new WMLInsertedLegendElement(tagName, document));
  /external/webkit/Source/WebKit/win/
AccessibleDocument.cpp 30 #include <WebCore/Document.h>
36 AccessibleDocument::AccessibleDocument(Document* doc)
46 Document* AccessibleDocument::document() const function in class:AccessibleDocument
50 return m_object->document();
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DocumentFragmentImpl.java 35 DocumentFragmentImpl(DocumentImpl document) {
36 super(document);
41 return "#document-fragment";
CDATASectionImpl.java 34 public CDATASectionImpl(DocumentImpl document, String data) {
35 super(document, data);
59 parent.insertBefore(new CDATASectionImpl(document, parts[0] + "]]"), this);
61 parent.insertBefore(new CDATASectionImpl(document, ">" + parts[p] + "]]"), this);
82 TextImpl replacement = new TextImpl(document, getData());
  /external/webkit/Source/WebCore/css/
StyleMedia.cpp 56 Document* document = m_frame->document();
57 ASSERT(document);
58 Element* documentElement = document->documentElement();
62 CSSStyleSelector* styleSelector = document->styleSelector();
  /external/chromium/chrome/common/extensions/docs/js/
sample_search.js 8 var i = document.createElement("input");
14 var clearlink = document.getElementById('clearlink');
15 var searchinput = document.getElementById('searchinput');
16 var noresults = document.getElementById('noresults');
35 var sampleentry = document.getElementById(key);
51 var anchors = document.getElementsByTagName('a');
60 var searchinput = document.getElementById('searchinput');
68 var searchinput = document.getElementById('searchinput');
75 var searchinput = document.getElementById('searchinput');
82 var elem = document.getElementById(hash)
    [all...]
  /external/webkit/Source/WebCore/accessibility/chromium/
AXObjectCacheChromium.cpp 53 // Send document value changed on scrollbar value changed notification.
57 Document* document = static_cast<FrameView*>(scrollBar->parent())->frame()->document();
58 if (document != document->topDocument())
60 obj = get(document->renderer());
63 if (!obj || !obj->document() || !obj->documentFrameView() || !obj->documentFrameView()->frame() || !obj->documentFrameView()->frame()->page())
72 if (!obj->document()->focusedNode() || (obj->node() != obj->document()->focusedNode())
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
PanelEnablerView.js 33 this.contentElement = document.createElement("div");
37 this.imageElement = document.createElement("img");
40 this.choicesForm = document.createElement("form");
43 this.headerElement = document.createElement("h1");
49 var label = document.createElement("label");
50 var option = document.createElement("input");
56 label.appendChild(document.createTextNode(text));
64 this.disclaimerElement = document.createElement("div");
69 this.enableButton = document.createElement("button");

Completed in 504 milliseconds

1 2 3 45 6 7 8 91011>>