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

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditCommand.h 39 class Document;
61 explicit EditCommand(Document&);
62 EditCommand(Document*, const VisibleSelection&, const VisibleSelection&);
64 Document& document() const { return *m_document.get(); } function in class:WebCore::EditCommand
70 RefPtr<Document> m_document;
87 explicit SimpleEditCommand(Document& document) : EditCommand(document) { }
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLImportChild.cpp 34 #include "core/dom/Document.h"
66 // If the node is "document blocked", it cannot create HTMLImportLoader
85 Document* HTMLImportChild::importedDocument() const
107 Document* HTMLImportChild::document() const function in class:WebCore::HTMLImportChild
109 return (m_loader && m_loader->isOwnedBy(this)) ? m_loader->document() : 0;
114 // For imported documens this shouldn't be called because Document::m_import is
115 // cleared before Document is destroyed by HTMLImportChild::importDestroyed().
125 // Once all preceding imports are loaded and "document blocking" ends,
146 m_loader = HTMLImportLoader::create(this, parent()->document()->fetcher())
    [all...]
HTMLImportLoader.h 39 class Document;
45 // Owning imported Document lifetime. It also implements ResourceClient through HTMLImportResourceOwner
46 // to feed fetched bytes to the DocumentWriter of the imported document.
63 Document* document() const { return m_importedDocument.get(); } function in class:WebCore::HTMLImportLoader
64 Document* importedDocument() const;
95 RefPtr<Document> m_importedDocument;
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLParserScheduler.cpp 29 #include "core/dom/Document.h"
44 ActiveParserSession::ActiveParserSession(Document* document)
45 : m_document(document)
59 PumpSession::PumpSession(unsigned& nestingLevel, Document* document)
61 , ActiveParserSession(document)
95 if (m_parser->document()->shouldParserYieldAgressivelyBeforeScriptExecution()) {
106 Document* document = m_parser->document() local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/testing/
MockPagePopupDriver.cpp 62 Document* document = mainFrame->document(); local
63 ASSERT(document);
64 m_iframe = HTMLIFrameElement::create(*document);
70 if (document->body())
71 document->body()->appendChild(m_iframe.get());
  /external/chromium_org/third_party/WebKit/Source/core/workers/
Worker.cpp 32 #include "core/dom/Document.h"
56 Document* document = toDocument(context); local
57 UseCounter::count(document->domWindow(), UseCounter::WorkerStart);
58 ASSERT(document->page());
59 WorkerGlobalScopeProxyProvider* proxyProvider = WorkerGlobalScopeProxyProvider::from(document->page());
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBFactory.cpp 34 #include "core/dom/Document.h"
69 Document* document = toDocument(context); local
70 return document->frame() && document->page();
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIAccess.cpp 35 #include "core/dom/Document.h"
113 Document* document = toDocument(executionContext()); local
114 ASSERT(document);
116 double timeStampInMilliseconds = 1000 * document->loader()->timing()->monotonicTimeToZeroBasedDocumentTime(timeStamp);
134 Document* document = toDocument(executionContext()); local
135 ASSERT(document);
136 double documentStartTime = document->loader()->timing()->referenceMonotonicTime();
150 Document* document = toDocument(executionContext()) local
165 Document* document = toDocument(executionContext()); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebDevToolsFrontendImpl.cpp 46 #include "core/dom/Document.h"
68 InspectorFrontendResumeObserver(WebDevToolsFrontendImpl* webDevToolsFrontendImpl, Document* document)
69 : ActiveDOMObject(document)
125 Document* document = m_webViewImpl->page()->mainFrame()->document(); local
126 if (document->activeDOMObjectsAreSuspended()) {
127 m_inspectorFrontendResumeObserver = adoptPtr(new InspectorFrontendResumeObserver(this, document));
166 ScriptController::callFunction(frame->frame()->document(), function, dispatcherObject, args.size(), args.data(), isolate)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
CompositedLayerMappingTest.cpp 39 #include "core/dom/Document.h"
124 Document* document = m_webViewImpl->mainFrameImpl()->frame()->document(); local
125 Element* layerElement = document->getElementById("layer");
130 layerElement = document->getElementById("layer-solid-color");
WebPageSerializerTest.cpp 38 #include "core/dom/Document.h"
50 using WebCore::Document;
165 // document loader of the iframe that has it as its src to assert on close,
174 RefPtr<Document> document = static_cast<PassRefPtr<Document> >(m_webView->mainFrame()->document()); local
175 document->updateLayoutIgnorePendingStylesheets(Document::RunPostLayoutTasksSynchronously);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
XmlFormatProcessor.java 50 IStructuredDocument document = structuredModel.getStructuredDocument(); local
52 context.setProperty(CONTEXT_MEDIUM, document);
56 formatter.formatMaster(context, document, start, length);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/refactorings/core/
RenameResourceXmlTextActionTest.java 21 import org.eclipse.jface.text.Document;
85 IDocument document = new Document(); local
86 document.replace(0, 0, contents);
88 RenameResourceXmlTextAction.findClassName(document, null, cursor);
101 IDocument document = new Document(); local
102 document.replace(0, 0, contents);
104 RenameResourceXmlTextAction.findResource(document, cursor);
  /libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
DocumentBuilderImpl.java 32 import org.w3c.dom.Document;
86 public Document newDocument() {
91 public Document parse(InputSource source) throws SAXException, IOException {
101 DocumentImpl document = new DocumentImpl( local
103 document.setDocumentURI(systemId);
125 throw new SAXParseException("Unexpected end of document", null);
128 parse(parser, document, document, XmlPullParser.END_DOCUMENT);
157 return document;
161 * Implements the whole parsing of the XML document. The XML pull parser i
    [all...]
  /external/chromium_org/v8/benchmarks/spinning-balls/
v.js 198 var canvas = document.createElement("canvas");
201 document.body.appendChild(canvas);
296 var canvas = document.createElement("canvas");
299 document.body.appendChild(canvas);
373 var msg = document.createElement("p");
376 var table = document.createElement("table");
380 var row = document.createElement("tr");
381 var time = document.createElement("td");
382 var count = document.createElement("td");
429 function create(tag) { return document.createElement(tag);
    [all...]
  /external/v8/benchmarks/spinning-balls/
v.js 198 var canvas = document.createElement("canvas");
201 document.body.appendChild(canvas);
296 var canvas = document.createElement("canvas");
299 document.body.appendChild(canvas);
373 var msg = document.createElement("p");
376 var table = document.createElement("table");
380 var row = document.createElement("tr");
381 var time = document.createElement("td");
382 var count = document.createElement("td");
429 function create(tag) { return document.createElement(tag);
    [all...]
  /external/chromium/chrome/browser/resources/file_manager/js/
harness.js 27 var paramstr = decodeURIComponent(document.location.search.substr(1));
30 var input = document.getElementById('default-path');
34 var iframe = document.getElementById('dialog');
35 iframe.setAttribute('src', 'main.html' + document.location.search);
46 var input = document.getElementById('default-path');
52 document.location.href = '?' + JSON.stringify(this.params);
90 return document.getElementById('dialog').contentWindow.fileManager;
  /external/chromium/webkit/glue/
webaccessibility.cc 367 const WebKit::WebDocument& document = src.document(); local
369 name = document.title();
370 attributes[ATTR_DOC_TITLE] = document.title();
371 attributes[ATTR_DOC_URL] = document.frame()->url().spec().utf16();
372 if (document.isXHTMLDocument())
377 const WebKit::WebDocumentType& doctype = document.doctype();
381 const gfx::Size& scroll_offset = document.frame()->scrollOffset();
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/media/
video_player.js 12 var errorBanner = document.querySelector('#error');
30 document.querySelector('#video-player').setAttribute('disabled', 'true');
62 document.addEventListener('keydown', function(e) {
134 document.ondragstart = function(e) { e.preventDefault() };
140 document.querySelector('#video-player'),
141 document.querySelector('#video-container'),
142 document.querySelector('#controls'));
163 document.addEventListener('keydown', reloadVideo, true);
164 document.addEventListener('click', reloadVideo, true);
199 document.querySelector('#video-player').removeAttribute('disabled')
    [all...]
  /external/chromium_org/chrome/renderer/
external_host_bindings.cc 57 std::string origin = frame_->document().securityOrigin().toString().utf8();
76 GURL document_url(frame_->document().url());
163 "document",
171 CppVariant document; local
172 bool ok = WebBindings::getProperty(NULL, window, identifiers[0], &document);
173 DCHECK(document.isObject());
176 if (ok && document.isObject()) {
180 success = WebBindings::invoke(NULL, document.value.objectValue,
web_apps.cc 79 GURL url = link.document().completeURL(href);
125 WebDocument document = frame->document(); local
126 if (document.isNull())
129 WebElement head = document.head();
133 GURL document_url = document.url();
  /external/chromium_org/chrome/renderer/safe_browsing/
malware_dom_details.cc 66 blink::WebDocument document = frame->document(); local
67 details_node.url = GURL(document.url());
68 if (document.isNull()) {
74 blink::WebNodeCollection elements = document.all();
105 blink::WebURL full_url = element.document().completeURL(
  /external/chromium_org/chrome_frame/test/
mock_ie_event_sink_test.cc 163 base::win::ScopedComPtr<IDispatch> document; local
164 browser->get_Document(document.Receive());
165 EXPECT_TRUE(document != NULL);
166 if (document) {
169 EXPECT_HRESULT_SUCCEEDED(document->Invoke(DISPID_READYSTATE, IID_NULL,
  /external/chromium_org/content/renderer/
notification_provider.cc 38 WebDocument document = render_view()->GetWebView()->mainFrame()->document(); local
42 params.origin = GURL(document.securityOrigin().toString());
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestInterfaceNamedConstructor.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 TestInterfaceNamedConstructor instance
93 toV8(document, info.Holder(), info.GetIsolate());
95 RefPtr<TestInterfaceNamedConstructor> impl = TestInterfaceNamedConstructor::createForJSConstructor(*document);

Completed in 495 milliseconds

1 23 4 5 6 7 8 91011>>