HomeSort by relevance Sort by last modified time
    Searched defs:document (Results 76 - 100 of 385) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestNamedConstructor.cpp 41 #include "core/dom/Document.h"
88 Document* document = currentDocument(); local
89 ASSERT(document);
91 // Make sure the document is added to the DOM Node map. Otherwise, the TestNamedConstructor instance
93 toV8(document, info.Holder(), info.GetIsolate());
104 RefPtr<TestNamedConstructor> impl = TestNamedConstructor::createForJSConstructor(*document, str1, str2, str3, exceptionState);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8XMLHttpRequestCustom.cpp 45 #include "core/dom/Document.h"
122 Document* document = xmlHttpRequest->responseXML(exceptionState); local
125 v8SetReturnValueFast(info, document, xmlHttpRequest);
203 // FIXME: add other document types.
223 Document* document = V8Document::toNative(object); local
224 ASSERT(document);
225 xmlHttpRequest->send(document, exceptionState);
  /external/chromium_org/third_party/WebKit/Source/core/animation/
ElementAnimationTest.cpp 39 #include "core/dom/Document.h"
64 document = Document::create();
65 document->animationClock().resetTimeForTesting();
66 element = document->createElement("foo", ASSERT_NO_EXCEPTION);
67 document->timeline()->setZeroTime(0);
68 ASSERT_EQ(0, document->timeline()->currentTime());
71 RefPtr<Document> document; member in class:WebCore::AnimationElementAnimationTest
114 Player* player = document->timeline()->players().at(0).get()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
ScopedStyleTree.cpp 31 #include "core/dom/Document.h"
75 // Since StyleResolver creates RuleSets according to styles' document
137 Document& document = element->document(); local
142 if (scopedResolver->treeScope() == treeScope || (applyAuthorStyles && scopedResolver->treeScope() == document))
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentParser.h 33 class Document;
48 // insert is used by document.write.
74 // document() will return 0 after detach() is called.
75 Document* document() const { ASSERT(m_document); return m_document; } function in class:WebCore::DocumentParser
95 // Document is expected to detach the parser before releasing its ref.
110 explicit DocumentParser(Document*);
122 // Every DocumentParser needs a pointer back to the document.
124 Document* m_document;
StyleElement.cpp 27 #include "core/dom/Document.h"
42 StyleElement::StyleElement(Document* document, bool createdByParser)
47 if (createdByParser && document && document->scriptableDocumentParser() && !document->isInDocumentWrite())
48 m_startPosition = document->scriptableDocumentParser()->textPosition();
57 void StyleElement::processStyleSheet(Document& document, Element* element)
60 document.styleEngine()->addStyleSheetCandidateNode(element, m_createdByParser)
122 Document& document = e->document(); local
    [all...]
StyleSheetCollection.h 31 #include "core/dom/Document.h"
96 Document* document() { return m_treeScope.documentScope(); } function in class:WebCore::StyleSheetCollection
  /external/chromium_org/third_party/WebKit/Source/core/editing/
Caret.cpp 29 #include "core/dom/Document.h"
65 Document* document = 0; local
68 document = &node->document();
73 updateCaretRect(document, m_position);
99 m_position.deepEquivalent().document()->renderView()->clearSelection();
127 bool CaretBase::updateCaretRect(Document* document, const VisiblePosition& caretPosition)
129 document->updateStyleIfNeeded()
    [all...]
TextIteratorTest.cpp 35 #include "core/dom/Document.h"
62 HTMLDocument& document() const;
78 m_document = toHTMLDocument(&m_dummyPageHolder->document());
84 document().view()->updateLayoutAndStyleIfNeededRecursive(); // Force renderers to be created; TextIterator needs them.
96 HTMLDocument& TextIteratorTest::document() const function in class:__anon10655::TextIteratorTest
103 document().body()->setInnerHTML(String::fromUTF8(bodyContent), ASSERT_NO_EXCEPTION);
108 RefPtr<Range> range(Range::create(document()));
109 range->selectNode(document().body());
203 createShadowRootForElementWithIDAndSetInnerHTML(document(), "input", shadowContent);
219 createShadowRootForElementWithIDAndSetInnerHTML(document(), "host", shadowContent)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLImportsController.cpp 34 #include "core/dom/Document.h"
41 void HTMLImportsController::provideTo(Document* master)
49 HTMLImportsController::HTMLImportsController(Document* master)
88 ResourcePtr<RawResource> resource = parent->document()->fetcher()->fetchImport(request);
131 Document* HTMLImportsController::document() const function in class:WebCore::HTMLImportsController
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDOMStorageAgent.cpp 36 #include "core/dom/Document.h"
173 Document* document = storage->frame()->document(); local
174 ASSERT(document);
175 DOMWindow* window = document->domWindow();
177 RefPtr<SecurityOrigin> securityOrigin = document->securityOrigin();
228 return StorageNamespace::localStorageArea(frame->document()->securityOrigin());
229 return m_pageAgent->page()->sessionStorage()->storageArea(frame->document()->securityOrigin());
  /external/chromium_org/third_party/WebKit/Source/core/page/
SpatialNavigation.h 119 Document* document() const { return visibleNode ? &visibleNode->document() : 0; } function in struct:WebCore::FocusCandidate
  /external/chromium_org/third_party/WebKit/Source/core/plugins/
PluginOcclusionSupport.cpp 97 // Inspect the document order. Later order means higher stacking.
195 Document* document = parentFrameView->frame().document(); local
196 const Vector<RefPtr<Element> >& elements = document->topLayerElements();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGInlineFlowBox.cpp 92 Document& document = textRenderer->document(); local
93 Vector<DocumentMarker*> markers = document.markers()->markersFor(textRenderer->node());
SVGResourcesCache.cpp 86 Document& document = renderer->document(); local
88 SVGDocumentExtensions* extensions = document.accessSVGExtensions();
197 SVGDocumentExtensions* extensions = clientElement->document().accessSVGExtensions();
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechRecognition.cpp 31 #include "core/dom/Document.h"
177 Document* document = toDocument(executionContext()); local
179 Page* page = document->page();
  /external/chromium_org/third_party/WebKit/Source/web/
SharedWorkerRepositoryClientImpl.cpp 149 static WebSharedWorkerRepositoryClient::DocumentID getId(void* document)
151 ASSERT(document);
152 return reinterpret_cast<WebSharedWorkerRepositoryClient::DocumentID>(document);
159 // No nested workers (for now) - connect() should only be called from document context.
161 Document* document = toDocument(worker->executionContext()); local
162 OwnPtr<WebSharedWorkerConnector> webWorkerConnector = adoptPtr(m_client->createSharedWorkerConnector(url, name, getId(document)));
175 void SharedWorkerRepositoryClientImpl::documentDetached(Document* document)
178 m_client->documentDetached(getId(document));
    [all...]
SpellCheckerClientImpl.cpp 64 const Document* document = frame->document(); local
65 if (!document)
67 const Element* element = document->focusedElement();
97 for (Frame* frame = page->mainFrame(); frame && frame->document(); frame = frame->tree().traverseNext()) {
98 frame->document()->markers()->removeMarkers(DocumentMarker::MisspellingMarkers());
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebInputEventConversionTest.cpp 110 RefPtr<Document> document = webViewImpl->page()->mainFrame()->document(); local
111 DOMWindow* domWindow = webViewImpl->page()->mainFrame()->document()->domWindow();
112 RenderObject* docRenderer = webViewImpl->page()->mainFrame()->document()->renderer();
245 RefPtr<MouseEvent> mouseEvent = MouseEvent::create(WebCore::EventTypeNames::mousemove, domWindow, platformMouseEvent, 0, document);
258 RefPtr<MouseEvent> mouseEvent = MouseEvent::create(WebCore::EventTypeNames::mousemove, domWindow, platformMouseEvent, 0, document);
277 RefPtr<Touch> touch = Touch::create(webViewImpl->page()->mainFrame(), document.get(), 0, 10, 10, 10, 10, 10, 10, 0, 0);
311 RefPtr<Document> document = webViewImpl->page()->mainFrame()->document() local
455 RefPtr<Document> document = webViewImpl->page()->mainFrame()->document(); local
    [all...]
  /external/chromium_org/third_party/libxml/src/
testXPath.c 49 static xmlDocPtr document = NULL; variable
52 * Default document
85 ctxt = xmlXPtrNewContext(document, NULL, NULL);
89 ctxt = xmlXPathNewContext(document);
90 ctxt->node = xmlDocGetRootElement(document);
179 if (document == NULL) {
181 document = xmlReadDoc(buffer,NULL,NULL,XML_PARSE_COMPACT);
183 document = xmlReadFile(filename,NULL,XML_PARSE_COMPACT);
210 printf("\t-i filename : read the document from filename\n");
214 if (document != NULL)
    [all...]
  /libcore/luni/src/test/java/libcore/xml/
DomSerializationTest.java 28 import org.w3c.dom.Document;
42 Document document = documentBuilder.newDocument(); local
43 Element foo = document.createElement("foo");
44 Attr quux = document.createAttribute("quux");
47 foo.appendChild(document.createElement("bar"));
48 foo.appendChild(document.createElement("baz"));
49 document.appendChild(foo);
50 assertXmlEquals("<foo quux=\"abc\"><bar/><baz/></foo>", document);
54 Document document = documentBuilder.newDocument() local
    [all...]
NodeTest.java 20 import org.w3c.dom.Document;
42 Document document = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(bis); local
43 Node root = document.getDocumentElement();
50 Document document = builder.parse(file); local
52 assertFileUriEquals(file, document.getBaseURI());
54 Element documentElement = document.getDocumentElement();
SimpleBuilderTest.java 23 import org.w3c.dom.Document;
58 Document document = builder.parse(getClass().getResourceAsStream( local
61 Element root = document.getDocumentElement();
90 list = document.getChildNodes();
111 Document document = builder.parse(getClass().getResourceAsStream( local
114 Element root = document.getDocumentElement();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
EclipseXmlPrettyPrinter.java 32 import org.eclipse.wst.xml.core.internal.provisional.document.IDOMElement;
33 import org.eclipse.wst.xml.core.internal.provisional.document.IDOMNode;
34 import org.w3c.dom.Document;
64 * Pretty-prints the given XML document, which must be well-formed. If it is not,
65 * the original unformatted XML document is returned
72 * @return the formatted document (or if a parsing error occurred, returns the
73 * unformatted document)
81 Document document = DomUtilities.parseStructuredDocument(xml); local
82 if (document != null)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
AddPrefixFix.java 49 protected void apply(IDocument document, IStructuredModel model, Node node, int start,
53 document.replace(start, 0, prefix + ':');

Completed in 265 milliseconds

1 2 34 5 6 7 8 91011>>