HomeSort by relevance Sort by last modified time
    Searched refs:Document (Results 1 - 25 of 2283) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/
TestInterfaceDocument.idl 31 interface TestInterfaceDocument : Document {
TestInterfaceEventTarget.idl 33 ConstructorCallWith=Document,
  /external/chromium_org/third_party/WebKit/Source/core/dom/
XMLDocument.idl 26 interface XMLDocument : Document {
DocumentSupplementable.h 35 class Document;
37 typedef WillBeHeapSupplementable<Document> DocumentSupplementable;
38 typedef WillBeHeapSupplement<Document> DocumentSupplement;
DocumentFullscreen.h 31 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&);
DocumentLifecycleObserver.h 33 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*);
IncrementLoadEventDelayCount.h 14 class Document;
16 // A helper class that will increment a document's loadEventDelayCount on
22 IncrementLoadEventDelayCount(Document&);
25 // Increments the new document's count and decrements the old count.
26 void documentChanged(Document& newDocument);
29 RefPtrWillBePersistent<Document> m_document;
DocumentLifecycleObserver.cpp 30 #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
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
DocumentAnimations.h 38 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/loader/
CookieJar.h 35 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/modules/geolocation/testing/
InternalsGeolocation.h 39 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*);
InternalsGeolocation.idl 32 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);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLTreeViewer.h 36 class Document;
41 explicit XMLTreeViewer(Document*);
46 RawPtrWillBeMember<Document> m_document;
  /external/chromium_org/third_party/WebKit/Source/modules/vibration/testing/
InternalsVibration.h 38 class Document;
43 static bool isVibrating(Internals&, Document*);
44 static Vector<unsigned> pendingVibrationPattern(Internals&, Document*);
InternalsVibration.idl 32 boolean isVibrating(Document document);
33 sequence<unsigned long> pendingVibrationPattern(Document document);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAudioElement.h 34 class Document;
38 static PassRefPtrWillBeRawPtr<HTMLAudioElement> create(Document&);
39 static PassRefPtrWillBeRawPtr<HTMLAudioElement> createForJSConstructor(Document&, const AtomicString& src);
42 HTMLAudioElement(Document&);
  /external/chromium_org/third_party/WebKit/Source/core/css/
DocumentFontFaceSet.h 34 class Document;
39 static PassRefPtrWillBeRawPtr<FontFaceSet> fonts(Document&);
FontSize.h 27 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);
CSSTestHelper.h 38 class Document;
57 RefPtrWillBePersistent<Document> m_document;
  /external/chromium_org/third_party/WebKit/Source/modules/navigatorcontentutils/testing/
InternalsNavigatorContentUtils.h 10 class Document;
16 static void setNavigatorContentUtilsClientMock(Internals&, Document*);
  /external/chromium_org/third_party/WebKit/Source/modules/speech/testing/
InternalsSpeechSynthesis.h 36 class Document;
41 static void enableMockSpeechSynthesizer(Internals&, Document*);
InternalsSpeechSynthesis.idl 32 void enableMockSpeechSynthesizer(Document document);
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLParserOptions.h 31 class Document;
39 explicit HTMLParserOptions(Document* = 0);
  /external/clang/test/SemaTemplate/
delegating-constructors.cpp 34 class Document
37 Document() = default;
41 Document(T&& t) : Document()
47 Document d(1);
  /external/pdfium/fpdfsdk/include/javascript/
Document.h 82 class Document : public 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 417 milliseconds

1 2 3 4 5 6 7 8 91011>>