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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/core/
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;
IncrementLoadEventDelayCount.h 14 class Document;
16 // A helper class that will increment a document's loadEventDelayCount on
22 static PassOwnPtr<IncrementLoadEventDelayCount> create(Document&);
25 // Increments the new document's count and decrements the old count.
26 void documentChanged(Document& newDocument);
29 IncrementLoadEventDelayCount(Document&);
30 RefPtrWillBePersistent<Document> m_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*);
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...]
DocumentFullscreen.h 33 class Document;
38 static bool fullscreenEnabled(Document&);
39 static Element* fullscreenElement(Document&);
40 static void exitFullscreen(Document&);
46 static bool webkitFullScreenKeyboardInputAllowed(Document&);
47 static Element* webkitCurrentFullScreenElement(Document&);
Comment.idl 22 ConstructorCallWith=Document,
StyleElement.h 30 class Document;
36 StyleElement(Document*, bool createdByParser);
47 bool sheetLoaded(Document&);
48 void startLoadingDynamicSheet(Document&);
50 void processStyleSheet(Document&, Element*);
51 void removedFromDocument(Document&, Element*);
52 void removedFromDocument(Document&, Element*, ContainerNode* scopingNode, TreeScope&);
53 void clearDocumentData(Document&, Element*);
  /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/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/css/
DocumentFontFaceSet.h 34 class Document;
39 static PassRefPtrWillBeRawPtr<FontFaceSet> fonts(Document&);
CSSTestHelper.h 38 class Document;
57 RefPtrWillBePersistent<Document> m_document;
DocumentFontFaceSet.idl 31 partial interface Document {
  /external/chromium_org/third_party/WebKit/Source/modules/navigatorcontentutils/testing/
InternalsNavigatorContentUtils.h 10 class Document;
15 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/chromium_org/third_party/WebKit/Source/core/html/
HTMLAudioElement.h 34 class Document;
39 static PassRefPtrWillBeRawPtr<HTMLAudioElement> create(Document&);
40 static PassRefPtrWillBeRawPtr<HTMLAudioElement> createForJSConstructor(Document&, const AtomicString& src);
45 HTMLAudioElement(Document&);
  /external/clang/test/SemaTemplate/
delegating-constructors.cpp 34 class Document
37 Document() = default;
41 Document(T&& t) : Document()
47 Document d(1);

Completed in 1454 milliseconds

1 2 3 4 5 6 7 8 91011>>