Searched refs:Document (Results 1 - 25 of 1198) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/
H A DTestInterfaceDocument.idl31 interface TestInterfaceDocument : Document {
H A DTestInterfaceEventTarget.idl33 ConstructorCallWith=Document,
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DXMLDocument.idl26 interface XMLDocument : Document {
H A DDocumentFullscreen.h31 class Document;
36 static bool webkitIsFullScreen(Document&);
37 static bool webkitFullScreenKeyboardInputAllowed(Document&);
38 static Element* webkitCurrentFullScreenElement(Document&);
39 static void webkitCancelFullScreen(Document&);
41 static bool webkitFullscreenEnabled(Document&);
42 static Element* webkitFullscreenElement(Document&);
43 static void webkitExitFullscreen(Document&);
H A DDocumentSupplementable.h35 class Document;
37 typedef WillBeHeapSupplementable<Document> DocumentSupplementable;
38 typedef WillBeHeapSupplement<Document> DocumentSupplement;
H A DDocumentLifecycleObserver.cpp30 #include "core/dom/Document.h"
34 template<> void observerContext(Document* context, LifecycleObserver<Document>* observer)
36 static_cast<LifecycleContext<Document>*>(context)->wasObservedBy(observer);
39 template<> void unobserverContext(Document* context, LifecycleObserver<Document>* observer)
41 static_cast<LifecycleContext<Document>*>(context)->wasUnobservedBy(observer);
44 DocumentLifecycleObserver::DocumentLifecycleObserver(Document* document)
45 : LifecycleObserver<Document>(document, DocumentLifecycleObserverType)
H A DDocumentLifecycleObserver.h33 class Document;
35 template<> void observerContext(Document*, LifecycleObserver<Document>*);
36 template<> void unobserverContext(Document*, LifecycleObserver<Document>*);
38 class DocumentLifecycleObserver : public LifecycleObserver<Document> {
40 explicit DocumentLifecycleObserver(Document*);
H A DIncrementLoadEventDelayCount.h14 class Document;
22 IncrementLoadEventDelayCount(Document&);
26 void documentChanged(Document& newDocument);
29 RefPtrWillBePersistent<Document> m_document;
H A DComment.idl22 ConstructorCallWith=Document,
/external/chromium_org/third_party/WebKit/Source/modules/vibration/testing/
H A DInternalsVibration.idl32 boolean isVibrating(Document document);
33 sequence<unsigned long> pendingVibrationPattern(Document document);
H A DInternalsVibration.h38 class Document;
43 static bool isVibrating(Internals&, Document*);
44 static Vector<unsigned> pendingVibrationPattern(Internals&, Document*);
/external/chromium_org/third_party/WebKit/Source/modules/speech/testing/
H A DInternalsSpeechSynthesis.idl32 void enableMockSpeechSynthesizer(Document document);
H A DInternalsSpeechSynthesis.h36 class Document;
41 static void enableMockSpeechSynthesizer(Internals&, Document*);
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/testing/
H A DInternalsGeolocation.idl32 void setGeolocationClientMock(Document document);
33 void setGeolocationPosition(Document document, double latitude, double longitude, double accuracy);
34 void setGeolocationPositionUnavailableError(Document document, DOMString message);
35 void setGeolocationPermission(Document document, boolean allowed);
36 long numberOfPendingGeolocationPermissionRequests(Document document);
H A DInternalsGeolocation.h39 class Document;
45 static void setGeolocationClientMock(Internals&, Document*);
46 static void setGeolocationPosition(Internals&, Document*, double latitude, double longitude, double accuracy);
47 static void setGeolocationPositionUnavailableError(Internals&, Document*, const String& message);
48 static void setGeolocationPermission(Internals&, Document*, bool allowed);
49 static int numberOfPendingGeolocationPermissionRequests(Internals&, Document*);
52 static GeolocationClientMock* geolocationClient(Document*);
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DCookieJar.h35 class Document;
39 String cookies(const Document*, const KURL&);
40 void setCookies(Document*, const KURL&, const String& cookieString);
41 bool cookiesEnabled(const Document*);
42 String cookieRequestHeaderFieldValue(const Document*, const KURL&);
43 bool getRawCookies(const Document*, const KURL&, Vector<Cookie>&);
44 void deleteCookie(const Document*, const KURL&, const String& cookieName);
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DDocumentAnimations.h38 class Document;
44 static void updateAnimationTimingForAnimationFrame(Document&, double monotonicAnimationStartTime);
45 static bool needsOutdatedAnimationPlayerUpdate(const Document&);
46 static void updateOutdatedAnimationPlayersIfNeeded(Document&);
48 static void startPendingAnimations(Document&);
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXMLTreeViewer.h36 class Document;
41 explicit XMLTreeViewer(Document*);
46 RawPtrWillBeMember<Document> m_document;
/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/chromium_org/third_party/WebKit/Source/core/css/
H A DFontSize.h27 class Document;
38 static float getComputedSizeFromSpecifiedSize(const Document*, float zoomFactor, bool isAbsoluteSize, float specifiedSize, ESmartMinimumForFontSize = UseSmartMinimumForFontFize);
42 static float fontSizeForKeyword(const Document*, int keyword, bool shouldUseFixedDefaultSize);
45 static int legacyFontSize(const Document*, int pixelFontSize, bool shouldUseFixedDefaultSize);
H A DDocumentFontFaceSet.h34 class Document;
39 static PassRefPtrWillBeRawPtr<FontFaceSet> fonts(Document&);
H A DDocumentFontFaceSet.idl33 ] partial interface Document {
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLAudioElement.h34 class Document;
38 static PassRefPtrWillBeRawPtr<HTMLAudioElement> create(Document&);
39 static PassRefPtrWillBeRawPtr<HTMLAudioElement> createForJSConstructor(Document&, const AtomicString& src);
42 HTMLAudioElement(Document&);
/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/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...]

Completed in 391 milliseconds

1234567891011>>