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

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ResourceFetcher.h 54 class Document;
74 // are initialized without a Frame), so a Document can keep a ResourceFetcher
75 // alive past detach if scripts still reference the Document.
120 Document* document() const { return m_document; } // Can be null function in class:WebCore::ResourceFetcher
121 void setDocument(Document* document) { m_document = document; }
203 Document* m_document;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLLinkElement.cpp 36 #include "core/dom/Document.h"
61 inline HTMLLinkElement::HTMLLinkElement(Document& document, bool createdByParser)
62 : HTMLElement(linkTag, document)
72 PassRefPtr<HTMLLinkElement> HTMLLinkElement::create(Document& document, bool createdByParser)
74 return adoptRef(new HTMLLinkElement(document, createdByParser));
82 document().styleEngine()->removeStyleSheetCandidateNode(this);
121 RefPtr<Document> originalDocument(document());
387 Document& LinkStyle::document() function in class:WebCore::LinkStyle
    [all...]
HTMLOptionElement.cpp 32 #include "core/dom/Document.h"
49 HTMLOptionElement::HTMLOptionElement(Document& document)
50 : HTMLElement(optionTag, document)
58 PassRefPtr<HTMLOptionElement> HTMLOptionElement::create(Document& document)
60 return adoptRef(new HTMLOptionElement(document));
63 PassRefPtr<HTMLOptionElement> HTMLOptionElement::createForJSConstructor(Document& document, const String& data, const AtomicString& value,
66 RefPtr<HTMLOptionElement> element = adoptRef(new HTMLOptionElement(document));
107 Document& document = this->document(); local
    [all...]
ImageDocument.cpp 56 static PassRefPtr<ImageEventListener> create(ImageDocument* document) { return adoptRef(new ImageEventListener(document)); }
67 ImageEventListener(ImageDocument* document)
69 , m_doc(document)
80 static PassRefPtr<ImageDocumentParser> create(ImageDocument* document)
82 return adoptRef(new ImageDocumentParser(document));
85 ImageDocument* document() const function in class:WebCore::ImageDocumentParser
87 return toImageDocument(RawDataDocumentParser::document());
91 ImageDocumentParser(ImageDocument* document)
92 : RawDataDocumentParser(document)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
TextTrack.h 36 class Document;
58 static PassRefPtr<TextTrack> create(Document& document, TextTrackClient* client, const AtomicString& kind, const AtomicString& label, const AtomicString& language)
60 return adoptRef(new TextTrack(document, client, kind, label, language, emptyAtom, AddTrack));
132 Document& document() const { return *m_document; } function in class:WebCore::TextTrack
139 TextTrack(Document&, TextTrackClient*, const AtomicString& kind, const AtomicString& label, const AtomicString& language, const AtomicString& id, TextTrackType);
149 // FIXME: Remove this pointer and get the Document from m_client
150 Document* m_document;
  /external/chromium_org/third_party/WebKit/Source/core/loader/
WorkerThreadableLoader.cpp 36 #include "core/dom/Document.h"
107 Document* document = toDocument(context); local
112 thisPtr->m_mainThreadLoader = DocumentThreadableLoader::create(document, thisPtr, *request, options);
114 // DocumentThreadableLoader::create may return 0 when the document loader has been already changed.
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventSource.cpp 40 #include "core/dom/Document.h"
91 Document* document = toDocument(context); local
92 shouldBypassMainWorldContentSecurityPolicy = document->frame()->script().shouldBypassMainWorldContentSecurityPolicy();
96 exceptionState.throwSecurityError("Refused to connect to '" + fullURL.elidedString() + "' because it violates the document's Content Security Policy.");
PageSerializer.cpp 45 #include "core/dom/Document.h"
104 SerializerMarkupAccumulator(PageSerializer*, Document*, Vector<Node*>*);
115 Document* m_document;
118 SerializerMarkupAccumulator::SerializerMarkupAccumulator(PageSerializer* serializer, Document* document, Vector<Node*>* nodes)
121 , m_document(document)
160 KURL url = frame->document()->url();
188 Document* document = frame->document(); local
266 Document* document = styleSheet->ownerDocument(); local
    [all...]
PrintContext.cpp 62 if (!m_frame->document() || !m_frame->view() || !m_frame->document()->renderView())
70 RenderView* view = m_frame->document()->renderView();
95 if (!m_frame->document() || !m_frame->view() || !m_frame->document()->renderView())
98 RenderView* view = m_frame->document()->renderView();
180 if (m_frame->document() && m_frame->document()->renderView())
181 useViewWidth = m_frame->document()->renderView()->style()->isHorizontalWritingMode();
204 outputLinkedDestinations(ctx, m_frame->document(), pageRect)
310 Document* document = frame->document(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
FilterEffectRenderer.cpp 31 #include "core/dom/Document.h"
81 static PassRefPtr<FECustomFilter> createCustomFilterEffect(Filter* filter, Document* document, ValidatedCustomFilterOperation* operation)
83 if (!document)
86 CustomFilterGlobalContext* globalContext = document->renderView()->customFilterGlobalContext();
265 Document* document = renderer ? &renderer->document() : 0; local
266 effect = createCustomFilterEffect(this, document, toValidatedCustomFilterOperation(filterOperation));
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
NewWebSocketChannelImpl.cpp 34 #include "core/dom/Document.h"
141 InspectorInstrumentation::didCreateWebSocket(document(), m_identifier, url, protocol);
164 InspectorInstrumentation::didSendWebSocketFrame(document(), m_identifier, frame);
181 InspectorInstrumentation::didSendWebSocketFrame(document(), m_identifier, frame);
195 InspectorInstrumentation::didSendWebSocketFrame(document(), m_identifier, frame);
222 InspectorInstrumentation::didReceiveWebSocketFrameError(document(), m_identifier, reason);
238 InspectorInstrumentation::didCloseWebSocket(document(), m_identifier);
342 Document* NewWebSocketChannelImpl::document() function in class:WebCore::NewWebSocketChannelImpl
370 InspectorInstrumentation::willSendWebSocketHandshakeRequest(document(), m_identifier, request.toCoreRequest())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebDocument.cpp 50 #include "core/dom/Document.h"
75 return constUnwrap<Document>()->url();
80 if (!constUnwrap<Document>())
82 return WebSecurityOrigin(constUnwrap<Document>()->securityOrigin());
87 return constUnwrap<Document>()->encodingName();
92 return constUnwrap<Document>()->contentLanguage();
97 return constUnwrap<Document>()->referrer();
102 return const_cast<Document*>(constUnwrap<Document>())->openSearchDescriptionURL();
107 return WebFrameImpl::fromFrame(constUnwrap<Document>()->frame())
216 RefPtr<Document> document = unwrap<Document>(); local
225 RefPtr<Document> document = unwrap<Document>(); local
270 const Document* document = constUnwrap<Document>(); local
276 const Document* document = constUnwrap<Document>(); local
283 const Document* document = constUnwrap<Document>(); local
298 Document* document = unwrap<Document>(); local
    [all...]
WebNode.cpp 45 #include "core/dom/Document.h"
101 WebDocument WebNode::document() const function in class:blink::WebNode
103 return WebDocument(&m_private->document());
155 m_private->document().updateLayoutIgnorePendingStylesheets();
225 m_private->document().updateLayoutIgnorePendingStylesheets();
WebPageSerializerImpl.cpp 49 // "document.write('<base href="http://www.yahoo.com/"...');" to setup base URL
64 // always uses the latest "href" attribute of base tag to set document's base
69 // the base target value from document object when appending new base tag.
70 // If there are multiple base tags in original document, we will comment all old
84 #include "core/dom/Document.h"
109 Document* document,
113 , document(document)
115 , isHTMLDocument(document->isHTMLDocument()
502 Document* document = webFrame->frame()->document(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
ScrollingCoordinatorChromiumTest.cpp 182 Document* document = m_webViewImpl->mainFrameImpl()->frame()->document(); local
184 Element* element = document->getElementById("div-tl");
193 Element* element = document->getElementById("div-tr");
202 Element* element = document->getElementById("div-bl");
211 Element* element = document->getElementById("div-br");
220 Element* element = document->getElementById("span-tl");
229 Element* element = document->getElementById("span-tr");
238 Element* element = document->getElementById("span-bl")
    [all...]
TouchActionTest.cpp 44 #include "core/dom/Document.h"
136 RefPtr<WebCore::Document> document = static_cast<PassRefPtr<WebCore::Document> >(webView->mainFrame()->document()); local
137 runTestOnTree(document.get(), webView, client);
147 RefPtr<WebCore::Document> document = static_cast<PassRefPtr<WebCore::Document> >(webView->mainFrame()->document()); local
172 RefPtr<WebCore::Document> document = static_cast<PassRefPtr<WebCore::Document> >(webView->mainFrame()->document()); local
    [all...]
WebPageNewSerializerTest.cpp 41 #include "core/dom/Document.h"
53 using WebCore::Document;
216 RefPtr<Document> document = static_cast<PassRefPtr<Document> >(m_webView->mainFrame()->document()); local
217 document->updateLayoutIgnorePendingStylesheets(Document::RunPostLayoutTasksSynchronously);
  /external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
tinyxml.cpp 305 // A document can never be a child. Thanks to Noam.
306 TiXmlDocument* document = GetDocument(); local
307 if ( document )
308 document->SetError( TIXML_ERROR_DOCUMENT_TOP_ONLY, 0, 0, TIXML_ENCODING_UNKNOWN );
1016 // parsed entities (including the document entity) on input, before parsing, by translating
    [all...]
  /external/chromium_org/ui/base/ime/win/
tsf_bridge.cc 59 // Returns true if a TSF document manager and a TSF context is successfully
69 // Returns true if |document_manager| is the focused document manager.
76 // |attached_window_handle_| and the current document manager. Keeping this
82 // change the focused document manager. This is problematic when
88 // document manager. See the comment inside the method body for
93 // A triple of document manager, text store and binding cookie between
94 // a context owned by the document manager and the text store. This is a
95 // minimum working set of an editable document in TSF.
111 // An ITfThreadMgr object to be used in focus and document management.
114 // A map from TextInputType to an editable document for TSF. We use multipl
221 TSFDocument* document = GetAssociatedDocument(); local
229 TSFDocument* document = GetAssociatedDocument(); local
241 TSFDocument* document = GetAssociatedDocument(); local
254 TSFDocument* document = GetAssociatedDocument(); local
    [all...]
  /external/droiddriver/src/com/google/android/droiddriver/finders/
ByXPath.java 30 import org.w3c.dom.Document;
54 // document needs to be static so that when buildDomNode is called recursively
55 // on children they are in the same document to be appended.
56 private static Document document; field in class:ByXPath
94 Logs.log(Log.ERROR, e, "Failed to clear document");
95 document = null; // getDocument will create new
100 private static Document getDocument() {
101 if (document == null) {
103 document = DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument()
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
ErrorTracker.java 23 import org.w3c.dom.Document;
71 Document document = parser.parse(fileName); local
72 NodeList elements = document.getElementsByTagName("platform");
92 NodeList effectedFiles = document.getElementsByTagName("effectedFile");
113 NodeList testLogList = document.getElementsByTagName("logFile");
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
PreferenceLoader.java 10 import org.w3c.dom.Document;
34 protected void processResourceXml(File xmlFile, Document document, boolean isSystem) throws Exception {
36 processChildren(document.getChildNodes(), topLevelNode);
  /external/sfntly/cpp/src/test/tinyxml/
tinyxml.cpp 305 // A document can never be a child. Thanks to Noam.
306 TiXmlDocument* document = GetDocument(); local
307 if ( document )
308 document->SetError( TIXML_ERROR_DOCUMENT_TOP_ONLY, 0, 0, TIXML_ENCODING_UNKNOWN );
1016 // parsed entities (including the document entity) on input, before parsing, by translating
    [all...]
  /libcore/benchmarks/src/benchmarks/
XmlParseBenchmark.java 33 import org.w3c.dom.Document;
108 Document document = documentBuilder.parse(inputStream); local
109 elementCount += countDomElements(document.getDocumentElement());
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/CodeWarrior/
Standard_Suite.py 194 """offset - offset of a text object from the beginning of the document (first char has offset 1) """
206 """index - index of a line object from the beginning of the document (first line has index 1) """
240 """document - the document that owns this window """
262 class document(aetools.ComponentItem): class in inherits:aetools.ComponentItem
263 """document - a document """
266 """file permissions - the file permissions for the document """
270 """kind - the kind of document """
274 """location - the file of the document """
    [all...]

Completed in 214 milliseconds

1 2 3 4 5 67 8 91011>>