Searched defs:Document (Results 1 - 24 of 24) sorted by relevance

/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dexterns.js6 Document.prototype.documentElement.innerWidth;
7 Document.prototype.documentElement.head;
5 Document.prototype.documentElement.innerWidth; class
/external/clang/test/SemaTemplate/
H A Ddelegating-constructors.cpp34 class Document class in namespace:PR12890
37 Document() = default;
41 Document(T&& t) : Document() function in class:PR12890::Document
47 Document d(1);
/external/chromium_org/remoting/webapp/js_proto/
H A Ddom_proto.js10 Document.prototype.activeElement;
13 Document.prototype.all;
16 Document.prototype.hidden;
19 Document.prototype.execCommand = function(command) {};
22 Document.prototype.webkitCancelFullScreen = function() {};
25 Document.prototype.webkitIsFullScreen;
28 Document.prototype.webkitHidden;
31 Document.prototype.firstElementChild;
0 Document.prototype.activeElement; class
/external/deqp/scripts/
H A Dconvert_case_list_to_xml.py3 from xml.dom.minidom import Document namespace
67 doc = Document()
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/kdom/
H A DDocument.java31 public class Document extends Node { class in inherits:Node
93 throw new RuntimeException("Document end expected!");
110 throw new RuntimeException("Document has no root element!");
/external/pdfium/fpdfsdk/include/javascript/
H A DDocument.h82 class Document : public CJS_EmbedObj class in inherits:CJS_EmbedObj
85 Document(CJS_Object* pJSObject);
86 virtual ~Document();
207 JS_STATIC_PROP(ADBE, Document);
208 JS_STATIC_PROP(author, Document);
209 JS_STATIC_PROP(baseURL, Document);
210 JS_STATIC_PROP(bookmarkRoot, Document);
211 JS_STATIC_PROP(calculate, Document);
212 JS_STATIC_PROP(Collab, Document);
213 JS_STATIC_PROP(creationDate, Document);
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DDOMExtension.js375 Document.prototype.createElementWithClass = function(elementName, className)
368 Document.prototype.createElementWithClass = function(elementName, className) class
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebDocument.cpp41 #include "core/dom/Document.h"
73 return constUnwrap<Document>()->url();
78 if (!constUnwrap<Document>())
80 return WebSecurityOrigin(constUnwrap<Document>()->securityOrigin());
85 return constUnwrap<Document>()->encodingName();
90 return constUnwrap<Document>()->contentLanguage();
95 return constUnwrap<Document>()->referrer();
100 return constUnwrap<Document>()->themeColor().rgb();
105 return const_cast<Document*>(constUnwrap<Document>())
[all...]
/external/llvm/include/llvm/Support/
H A DYAMLParser.h58 class Document;
99 std::unique_ptr<Document> CurrentDoc;
101 friend class Document;
118 Node(unsigned int Type, std::unique_ptr<Document> &, StringRef Anchor,
136 // These functions forward to Document and Scanner.
158 std::unique_ptr<Document> &Doc;
180 NullNode(std::unique_ptr<Document> &D)
195 ScalarNode(std::unique_ptr<Document> &D, StringRef Anchor, StringRef Tag,
238 KeyValueNode(std::unique_ptr<Document> &D)
354 MappingNode(std::unique_ptr<Document>
462 class Document { class in namespace:llvm::yaml
[all...]
/external/pdfium/fpdfsdk/src/javascript/
H A DDocument.cpp12 #include "../../include/javascript/Document.h"
56 /* ---------------------- Document ---------------------- */
141 IMPLEMENT_JS_CLASS(CJS_Document, Document)
148 Document* pDoc = (Document*)GetEmbedObject();
156 /* --------------------------------- Document --------------------------------- */
158 Document::Document(CJS_Object* pJSObject) : CJS_EmbedObj(pJSObject), function in class:Document
167 Document::~Document()
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
H A DResourceType.js101 if (this === WebInspector.resourceTypes.Document)
116 Document: new WebInspector.ResourceType("document", "Document", "Documents", "rgb(47,102,236)", true),
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
H A Dmootools-1.2.2-core-nc.js291 The Browser Core. Contains Browser initialization, Window and Document, and the Browser Hash.
416 var Document = new Native({
418 name: 'Document',
420 legacy: (Browser.Engine.trident) ? null: window.Document,
433 return $extend(doc, Document.Prototype);
437 document[property] = Document.Prototype[property] = value;
442 Document.Prototype = {$family: {name: 'document'}};
444 new Document(document);
1355 new Document(iframe.contentWindow.document);
1399 Document
440 Document.Prototype = {$family: {name: 'document'}}; class
[all...]
/external/llvm/lib/Support/
H A DYAMLParser.cpp564 OS << "Document-Start: ";
567 OS << "Document-End: ";
1550 CurrentDoc.reset(new Document(*this));
1563 Node::Node(unsigned int Type, std::unique_ptr<Document> &D, StringRef A,
2016 Document::Document(Stream &S) : stream(S), Root(nullptr) { function in class:Document
2028 bool Document::skip() {
2044 Token &Document::peekNext() {
2048 Token Document::getNext() {
2052 void Document
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocument.h192 class Document;
196 DocumentVisibilityObserver(Document&);
204 void setObservedDocument(Document&);
210 void registerObserver(Document&);
213 RawPtrWillBeMember<Document> m_document;
216 class Document : public ContainerNode, public TreeScope, public SecurityContext, public ExecutionContext class in namespace:blink
217 , public DocumentSupplementable, public LifecycleContext<Document> {
219 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(Document);
221 static PassRefPtrWillBeRawPtr<Document> create(const DocumentInit& initializer = DocumentInit())
223 return adoptRefWillBeNoop(new Document(initialize
[all...]
H A DDocument.cpp29 #include "core/dom/Document.h"
303 // If a Document has the address "about:blank"
304 // The origin of the Document is the origin it was assigned when its browsing context was created.
341 Document* ancestorDocument = toLocalFrame(ancestorFrame)->document();
368 uint64_t Document::s_globalTreeVersion = 0;
371 typedef WillBeHeapHashSet<RawPtrWillBeWeakMember<Document> > WeakDocumentSet;
379 // This class doesn't work with non-Document ExecutionContext.
392 Document* document = toDocument(context);
400 DocumentVisibilityObserver::DocumentVisibilityObserver(Document& document)
426 void DocumentVisibilityObserver::registerObserver(Document
440 Document::Document(const DocumentInit& initializer, DocumentClassFlags documentClasses) function in class:blink::Document
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.text_3.5.0.v20100601-1300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.lucene_1.9.1.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/owasp/sanitizer/lib/htmlparser-1.3/
H A Dhtmlparser-1.3-with-transitions.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
H A Dhtmlparser-1.3.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Ddom4j-1.6.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/dom4j/ org/dom4j/bean/ org/dom4j/datatype/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 2127 milliseconds