Searched refs:document (Results 401 - 425 of 1377) sorted by relevance

<<11121314151617181920>>

/macosx-10.9.5/Chess-310.5/Sources/
H A DMBCPlayer.h85 @property (nonatomic,assign) MBCDocument * document; variable
/macosx-10.9.5/WebCore-7537.78.1/Modules/mediastream/
H A DNavigatorMediaStream.cpp60 RefPtr<UserMediaRequest> request = UserMediaRequest::create(navigator->frame()->document(), userMedia, options, successCallback, errorCallback, ec);
/macosx-10.9.5/WebCore-7537.78.1/accessibility/
H A DAccessibilityScrollbar.h55 virtual Document* document() const;
/macosx-10.9.5/WebCore-7537.78.1/bindings/gobject/
H A DDOMObjectCache.cpp48 WebCore::Document* document = node->document();
49 if (!document)
51 return document->frame();
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSDOMGlobalObject.cpp108 JSDOMGlobalObject* toJSDOMGlobalObject(Document* document, JSC::ExecState* exec) argument
110 return toJSDOMWindow(document->frame(), currentWorld(exec));
127 JSDOMGlobalObject* toJSDOMGlobalObject(Document* document, DOMWrapperWorld* world) argument
129 return toJSDOMWindow(document->frame(), world);
H A DJSLazyEventListener.cpp86 Document* document = toDocument(executionContext);
88 if (!document->frame())
91 if (!document->contentSecurityPolicy()->allowInlineEventHandlers(m_sourceURL, m_position.m_line))
94 ScriptController* script = document->frame()->script();
125 // (and the document, and the form - see JSHTMLElement::eventHandlerScope)
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DWebKitCSSSVGDocumentValue.cpp57 CachedResourceRequest request(ResourceRequest(loader->document()->completeURL(m_url)));
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DMicroDataItemList.cpp48 , m_typeNames(typeNames, document()->inQuirksMode())
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DSetNodeAttributeCommand.cpp36 : SimpleEditCommand(element->document())
H A DTypingCommand.h81 static PassRefPtr<TypingCommand> create(Document* document, ETypingCommand command, const String& text = "", Options options = 0, TextGranularity granularity = CharacterGranularity) argument
83 return adoptRef(new TypingCommand(document, command, text, options, granularity, TextCompositionNone));
86 static PassRefPtr<TypingCommand> create(Document* document, ETypingCommand command, const String& text, Options options, TextCompositionType compositionType) argument
88 return adoptRef(new TypingCommand(document, command, text, options, CharacterGranularity, compositionType));
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLDetailsElement.h30 static PassRefPtr<HTMLDetailsElement> create(const QualifiedName& tagName, Document* document);
H A DHTMLFontElement.cpp43 HTMLFontElement::HTMLFontElement(const QualifiedName& tagName, Document* document) argument
44 : HTMLElement(tagName, document)
49 PassRefPtr<HTMLFontElement> HTMLFontElement::create(const QualifiedName& tagName, Document* document) argument
51 return adoptRef(new HTMLFontElement(tagName, document));
H A DHTMLLabelElement.cpp55 inline HTMLLabelElement::HTMLLabelElement(const QualifiedName& tagName, Document* document) argument
56 : HTMLElement(tagName, document)
61 PassRefPtr<HTMLLabelElement> HTMLLabelElement::create(const QualifiedName& tagName, Document* document) argument
63 return adoptRef(new HTMLLabelElement(tagName, document));
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DSection.js37 this.element = document.createElement("div");
41 this.headerElement = document.createElement("div");
44 this.titleElement = document.createElement("div");
47 this.subtitleElement = document.createElement("div");
/macosx-10.9.5/WebCore-7537.78.1/loader/cache/
H A DCachedSVGDocument.h39 SVGDocument* document() const { return m_document.get(); } function in class:WebCore::FINAL
/macosx-10.9.5/WebCore-7537.78.1/mathml/
H A DMathMLElement.cpp42 MathMLElement::MathMLElement(const QualifiedName& tagName, Document* document) argument
43 : StyledElement(tagName, document, CreateStyledElement)
47 PassRefPtr<MathMLElement> MathMLElement::create(const QualifiedName& tagName, Document* document) argument
49 return adoptRef(new MathMLElement(tagName, document));
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DPageThrottler.cpp77 if (frame->document())
78 frame->document()->scriptedAnimationControllerSetThrottled(true);
98 if (frame->document())
99 frame->document()->scriptedAnimationControllerSetThrottled(false);
/macosx-10.9.5/WebCore-7537.78.1/page/wince/
H A DFrameWinCE.cpp63 if (!frame->document() || !frame->view() || !frame->document()->renderView())
66 RenderView* root = frame->document()->renderView();
135 frame->document()->updateLayout();
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DFilterEffectRenderer.cpp91 static PassRefPtr<FECustomFilter> createCustomFilterEffect(Filter* filter, Document* document, ValidatedCustomFilterOperation* operation) argument
93 if (!document)
96 CustomFilterGlobalContext* globalContext = document->renderView()->customFilterGlobalContext();
97 globalContext->prepareContextIfNeeded(document->view()->hostWindow());
133 Document* document = renderer->document();
134 ASSERT(document);
137 CachedSVGDocument* cachedSVGDocument = cachedSVGDocumentReference ? cachedSVGDocumentReference->document() : 0;
139 // If we have an SVG document, this is an external reference. Otherwise
140 // we look up the referenced node in the current document
356 Document* document = renderer ? renderer->document() : 0; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGClipPathElement.cpp48 inline SVGClipPathElement::SVGClipPathElement(const QualifiedName& tagName, Document* document) argument
49 : SVGStyledTransformableElement(tagName, document)
56 PassRefPtr<SVGClipPathElement> SVGClipPathElement::create(const QualifiedName& tagName, Document* document) argument
58 return adoptRef(new SVGClipPathElement(tagName, document));
H A DSVGFEBlendElement.cpp46 inline SVGFEBlendElement::SVGFEBlendElement(const QualifiedName& tagName, Document* document) argument
47 : SVGFilterPrimitiveStandardAttributes(tagName, document)
54 PassRefPtr<SVGFEBlendElement> SVGFEBlendElement::create(const QualifiedName& tagName, Document* document) argument
56 return adoptRef(new SVGFEBlendElement(tagName, document));
H A DSVGFEGaussianBlurElement.cpp47 inline SVGFEGaussianBlurElement::SVGFEGaussianBlurElement(const QualifiedName& tagName, Document* document) argument
48 : SVGFilterPrimitiveStandardAttributes(tagName, document)
54 PassRefPtr<SVGFEGaussianBlurElement> SVGFEGaussianBlurElement::create(const QualifiedName& tagName, Document* document) argument
56 return adoptRef(new SVGFEGaussianBlurElement(tagName, document));
H A DSVGFEOffsetElement.cpp46 inline SVGFEOffsetElement::SVGFEOffsetElement(const QualifiedName& tagName, Document* document) argument
47 : SVGFilterPrimitiveStandardAttributes(tagName, document)
53 PassRefPtr<SVGFEOffsetElement> SVGFEOffsetElement::create(const QualifiedName& tagName, Document* document) argument
55 return adoptRef(new SVGFEOffsetElement(tagName, document));
H A DSVGImageLoader.cpp56 return element()->document()->completeURL(stripLeadingAndTrailingHTMLSpaces(attribute));
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/InjectedBundle/
H A DInjectedBundleHitTestResult.cpp60 Document* document = node->document();
61 if (!document)
64 Frame* frame = document->frame();

Completed in 155 milliseconds

<<11121314151617181920>>