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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/content/renderer/accessibility/
renderer_accessibility_focus_only.cc 53 WebDocument document = frame->document();
58 HandleFocusedNodeChanged(document.focusedNode(), false);
64 const WebDocument& document = GetMainDocument(); local
65 if (document.isNull())
102 // Always include the root of the tree, the document. It always has id 1.
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXScrollbar.cpp 61 Document* AXScrollbar::document() const function in class:WebCore::AXScrollbar
66 return parent->document();
  /external/chromium_org/third_party/WebKit/Source/core/animation/
PlayerTest.cpp 38 #include "core/dom/Document.h"
51 document = Document::create();
52 document->animationClock().resetTimeForTesting();
53 timeline = DocumentTimeline::create(document.get());
61 document->animationClock().updateTime(time);
66 RefPtr<Document> document; member in class:__anon10620::AnimationPlayerTest
353 RefPtr<Element> element = document->createElement("foo", ASSERT_NO_EXCEPTION);
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSFontSelector.h 44 class Document;
67 static PassRefPtr<CSSFontSelector> create(Document* document)
69 return adoptRef(new CSSFontSelector(document));
90 Document* document() const { return m_document; } function in class:WebCore::CSSFontSelector
98 explicit CSSFontSelector(Document*);
102 Document* m_document;
103 // FIXME: Move to Document or StyleEngine.
StyleRuleImport.cpp 27 #include "core/dom/Document.h"
72 Document* document = m_parentStyleSheet ? m_parentStyleSheet->singleOwnerDocument() : 0; local
73 m_styleSheet->parseAuthorStyleSheet(cachedStyleSheet, document ? document->securityOrigin() : 0);
92 Document* document = m_parentStyleSheet->singleOwnerDocument();
93 if (!document)
96 ResourceFetcher* fetcher = document->fetcher();
105 absURL = document->completeURL(m_strHref)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
SharedStyleFinder.h 69 Document& document() const { return element().document(); } function in class:WebCore::SharedStyleFinder
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentMarkerControllerTest.cpp 35 #include "core/dom/Document.h"
53 Document& document() const { return *m_document; } function in class:__anon10641::DocumentMarkerControllerTest
62 Document* m_document;
68 m_document = &m_dummyPageHolder->document();
74 return document().createTextNode(String::fromUTF8(textContents));
81 document().updateLayout();
88 document().body()->setInnerHTML(String::fromUTF8(bodyContent), ASSERT_NO_EXCEPTION);
95 RefPtr<Element> parent = toElement(document().body()->firstChild()->firstChild());
108 RefPtr<Element> parent = toElement(document().body()->firstChild()->firstChild())
    [all...]
NamedFlowCollection.cpp 35 #include "core/dom/Document.h"
42 NamedFlowCollection::NamedFlowCollection(Document* document)
43 : DocumentLifecycleObserver(document)
84 InspectorInstrumentation::didCreateNamedFlow(document(), newFlow.get());
91 // The document is not valid anymore so the collection will be destroyed anyway.
92 if (!document())
98 InspectorInstrumentation::willRemoveNamedFlow(document(), namedFlow);
103 Document* NamedFlowCollection::document() cons function in class:WebCore::NamedFlowCollection
    [all...]
TouchController.cpp 29 #include "core/dom/Document.h"
40 TouchController::TouchController(Document* document)
41 : DOMWindowLifecycleObserver(document->domWindow())
42 , DocumentLifecycleObserver(document)
55 TouchController* TouchController::from(Document* document)
57 TouchController* controller = static_cast<TouchController*>(DocumentSupplement::from(document, supplementName()));
59 controller = new TouchController(document);
60 DocumentSupplement::provideTo(document, supplementName(), adoptPtr(controller))
123 Document* document = window->document(); local
131 Document* document = window->document(); local
144 Document* document = static_cast<Document*>(executionContext()); local
156 Document* document = static_cast<Document*>(executionContext()); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
SurroundingText.cpp 34 #include "core/dom/Document.h"
54 Document* document = position.document(); local
55 ASSERT(document);
57 if (!forwardRange || !Range::create(*document, position, forwardRange->startPosition())->text().length()) {
72 m_positionOffsetInContent = Range::create(*document, backwardsRange->endPosition(), position)->text().length();
73 m_contentRange = Range::create(*document, backwardsRange->endPosition(), forwardRange->startPosition());
96 ASSERT(start.document());
97 return Range::create(*start.document(), start, end)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
DocumentResource.h 33 class Document;
42 Document* document() const { return m_document.get(); } function in class:WebCore::DocumentResource
49 PassRefPtr<Document> createDocument(const KURL&);
51 RefPtr<Document> m_document;
  /external/chromium_org/third_party/WebKit/Source/core/frame/
History.cpp 30 #include "core/dom/Document.h"
104 Document* activeDocument = toDocument(context);
116 Document* document = m_frame->document(); local
119 return document->url();
121 return document->baseURL();
123 return KURL(document->baseURL(), urlString);
132 if (!fullURL.isValid() || !m_frame->document()->securityOrigin()->canRequest(fullURL)) {
134 exceptionState.throwSecurityError("A history state object with URL '" + fullURL.elidedString() + "' cannot be created in a document with origin '" + m_frame->document()->securityOrigin()->toString() + "'.")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLIFrameElement.cpp 37 inline HTMLIFrameElement::HTMLIFrameElement(Document& document)
38 : HTMLFrameElementBase(iframeTag, document)
45 PassRefPtr<HTMLIFrameElement> HTMLIFrameElement::create(Document& document)
47 return adoptRef(new HTMLIFrameElement(document));
79 if (inDocument() && document().isHTMLDocument() && !isInShadowTree()) {
80 HTMLDocument& document = toHTMLDocument(this->document()); local
81 document.removeExtraNamedItem(m_name)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLViewSourceParser.h 39 static PassRefPtr<HTMLViewSourceParser> create(HTMLViewSourceDocument* document, const String& mimeType)
41 return adoptRef(new HTMLViewSourceParser(document, mimeType));
53 HTMLViewSourceDocument* document() const { return static_cast<HTMLViewSourceDocument*>(DecodedDataDocumentParser::document()); } function in class:WebCore::FINAL
  /external/chromium_org/third_party/WebKit/Source/core/workers/
SharedWorker.cpp 72 Document* document = toDocument(context); local
73 if (!document->securityOrigin()->canAccessSharedWorkers()) {
74 exceptionState.throwSecurityError("Access to shared workers is denied to origin '" + document->securityOrigin()->toString() + "'.");
82 if (document->page() && document->page()->sharedWorkerRepositoryClient())
83 document->page()->sharedWorkerRepositoryClient()->connect(worker.get(), remotePort.release(), scriptURL, name, exceptionState);
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
DOMWindowIndexedDatabase.cpp 29 #include "core/dom/Document.h"
81 Document* document = m_window->document(); local
82 if (!document)
85 Page* page = document->page();
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketChannel.cpp 36 #include "core/dom/Document.h"
73 Document* document = toDocument(context); local
74 Settings* settings = document->settings();
77 return MainThreadWebSocketChannel::create(document, client, sourceURL, lineNumber);
79 return MainThreadWebSocketChannel::create(document, client, sourceURL, lineNumber);
  /external/chromium_org/third_party/WebKit/Source/web/tests/
RenderTableCellTest.cpp 34 #include "core/dom/Document.h"
61 static Document* document() function in class:WebCore::__anon10949::RenderTableCellDeathTest
63 return toWebFrameImpl(s_webViewHelper->webView()->mainFrame())->frame()->document();
68 m_cell = RenderTableCell::createAnonymous(document());
RenderTableRowTest.cpp 34 #include "core/dom/Document.h"
61 static Document* document() function in class:WebCore::__anon10950::RenderTableRowDeathTest
63 return toWebFrameImpl(s_webViewHelper->webView()->mainFrame())->frame()->document();
68 m_row = RenderTableRow::createAnonymous(document());
  /frameworks/base/tools/aidl/
aidl_language_y.y 31 document: label
32 document_items { g_callbacks->document($1.document_item); }
33 | headers document_items { g_callbacks->document($2.document_item); }
generate_java.cpp 73 Document* document = new Document; local
74 document->comment = "";
75 if (iface->package) document->package = iface->package;
76 document->originalSrc = originalSrc;
77 document->classes.push_back(cl);
94 document->Write(to);
  /external/chromium_org/third_party/WebKit/Source/web/resources/
colorSuggestionPicker.js 88 document.body.addEventListener("keydown", this._handleKeyDown.bind(this));
147 var selectedElement = document.activeElement;
  /external/chromium_org/chrome/renderer/autofill/
autofill_renderer_browsertest.cc 88 WebDocument document = web_frame->document(); local
90 document.getElementById("firstname").to<WebInputElement>();
174 WebDocument document = web_frame->document(); local
176 document.getElementById("firstname").to<WebInputElement>();
178 document.getElementById("middlename").to<WebInputElement>();
page_click_tracker_browsertest.cc 72 blink::WebDocument document = view_->GetWebView()->mainFrame()->document(); variable
73 text_ = document.getElementById("text_1");
130 EXPECT_NE(text_, text_.document().focusedNode());
132 EXPECT_EQ(text_, text_.document().focusedNode());
  /external/chromium_org/google_apis/drive/
drive_api_parser_unittest.cc 19 scoped_ptr<base::Value> document = test_util::LoadJSONFile( local
21 ASSERT_TRUE(document.get());
23 ASSERT_EQ(base::Value::TYPE_DICTIONARY, document->GetType());
25 EXPECT_TRUE(resource->Parse(*document));
36 scoped_ptr<base::Value> document = test_util::LoadJSONFile( local
38 ASSERT_TRUE(document.get());
40 ASSERT_EQ(base::Value::TYPE_DICTIONARY, document->GetType());
42 EXPECT_TRUE(applist->Parse(*document));
110 EXPECT_EQ(DriveAppIcon::DOCUMENT, icon2.category());
118 scoped_ptr<base::Value> document = test_util::LoadJSONFile local
246 scoped_ptr<base::Value> document = local
    [all...]

Completed in 270 milliseconds

12 3 4 5 6 7 8 91011>>