Searched defs:document (Results 251 - 275 of 714) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DPrerenderHandle.cpp45 PassOwnPtr<PrerenderHandle> PrerenderHandle::create(Document& document, PrerenderClient* client, const KURL& url, const unsigned prerenderRelTypes) argument
49 const ReferrerPolicy referrerPolicy = document.referrerPolicy();
51 if (!document.frame())
54 const String referrer = SecurityPolicy::generateReferrerHeader(referrerPolicy, url, document.outgoingReferrer());
58 PrerendererClient* prerendererClient = PrerendererClient::from(document.page());
63 return adoptPtr(new PrerenderHandle(document, prerender.release()));
66 PrerenderHandle::PrerenderHandle(Document& document, PassRefPtr<Prerender> prerender) argument
67 : DocumentLifecycleObserver(&document)
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGCursorElement.cpp30 inline SVGCursorElement::SVGCursorElement(Document& document) argument
31 : SVGElement(SVGNames::cursorTag, document)
H A DSVGFEColorMatrixElement.cpp43 inline SVGFEColorMatrixElement::SVGFEColorMatrixElement(Document& document) argument
44 : SVGFilterPrimitiveStandardAttributes(SVGNames::feColorMatrixTag, document)
H A DSVGFEComponentTransferElement.cpp36 inline SVGFEComponentTransferElement::SVGFEComponentTransferElement(Document& document) argument
37 : SVGFilterPrimitiveStandardAttributes(SVGNames::feComponentTransferTag, document)
H A DSVGFECompositeElement.cpp45 inline SVGFECompositeElement::SVGFECompositeElement(Document& document) argument
46 : SVGFilterPrimitiveStandardAttributes(SVGNames::feCompositeTag, document)
H A DSVGFEDisplacementMapElement.cpp42 inline SVGFEDisplacementMapElement::SVGFEDisplacementMapElement(Document& document) argument
43 : SVGFilterPrimitiveStandardAttributes(SVGNames::feDisplacementMapTag, document)
H A DSVGFEDropShadowElement.cpp32 inline SVGFEDropShadowElement::SVGFEDropShadowElement(Document& document) argument
33 : SVGFilterPrimitiveStandardAttributes(SVGNames::feDropShadowTag, document)
H A DSVGFELightElement.cpp35 SVGFELightElement::SVGFELightElement(const QualifiedName& tagName, Document& document) argument
36 : SVGElement(tagName, document)
H A DSVGFETurbulenceElement.cpp50 inline SVGFETurbulenceElement::SVGFETurbulenceElement(Document& document) argument
51 : SVGFilterPrimitiveStandardAttributes(SVGNames::feTurbulenceTag, document)
H A DSVGFitToViewBox.h53 bool parseAttribute(const QualifiedName& name, const AtomicString& value, Document& document, SVGParsingError& parseError) argument
58 document.accessSVGExtensions().reportError("A negative value for ViewBox width is not allowed");
62 document.accessSVGExtensions().reportError("A negative value for ViewBox height is not allowed");
H A DSVGFontFaceUriElement.cpp37 inline SVGFontFaceUriElement::SVGFontFaceUriElement(Document& document) argument
38 : SVGElement(font_face_uriTag, document)
91 ResourceFetcher* fetcher = document().fetcher();
92 FetchRequest request(ResourceRequest(document().completeURL(href)), localName());
H A DSVGForeignObjectElement.cpp33 inline SVGForeignObjectElement::SVGForeignObjectElement(Document& document) argument
34 : SVGGraphicsElement(SVGNames::foreignObjectTag, document)
45 UseCounter::count(document, UseCounter::SVGForeignObjectElement);
H A DSVGGradientElement.cpp48 SVGGradientElement::SVGGradientElement(const QualifiedName& tagName, Document& document) argument
49 : SVGElement(tagName, document)
H A DSVGStopElement.cpp30 inline SVGStopElement::SVGStopElement(Document& document) argument
31 : SVGElement(SVGNames::stopTag, document)
/external/chromium_org/third_party/WebKit/Source/core/workers/
H A DSharedWorker.cpp74 Document* document = toDocument(context); local
75 if (!document->securityOrigin()->canAccessSharedWorkers()) {
76 exceptionState.throwSecurityError("Access to shared workers is denied to origin '" + document->securityOrigin()->toString() + "'.");
84 if (document->frame()->loader().client()->sharedWorkerRepositoryClient())
85 document->frame()->loader().client()->sharedWorkerRepositoryClient()->connect(worker.get(), remotePort.release(), scriptURL, name, exceptionState);
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DDocumentXPathEvaluator.cpp39 DocumentXPathEvaluator& DocumentXPathEvaluator::from(DocumentSupplementable& document) argument
41 DocumentXPathEvaluator* cache = static_cast<DocumentXPathEvaluator*>(DocumentSupplement::from(document, supplementName()));
44 DocumentSupplement::provideTo(document, supplementName(), adoptPtrWillBeNoop(cache));
49 PassRefPtrWillBeRawPtr<XPathExpression> DocumentXPathEvaluator::createExpression(DocumentSupplementable& document, argument
52 DocumentXPathEvaluator& suplement = from(document);
58 PassRefPtrWillBeRawPtr<XPathNSResolver> DocumentXPathEvaluator::createNSResolver(DocumentSupplementable& document, Node* nodeResolver) argument
60 DocumentXPathEvaluator& suplement = from(document);
66 PassRefPtrWillBeRawPtr<XPathResult> DocumentXPathEvaluator::evaluate(DocumentSupplementable& document, const String& expression, argument
70 DocumentXPathEvaluator& suplement = from(document);
H A DXSLTProcessor.h45 static PassRefPtrWillBeRawPtr<XSLTProcessor> create(Document& document) argument
48 return adoptRefWillBeNoop(new XSLTProcessor(document));
83 XSLTProcessor(Document& document) argument
84 : m_document(&document)
/external/chromium_org/third_party/WebKit/Source/modules/device_light/
H A DDeviceLightController.cpp16 DeviceLightController::DeviceLightController(Document& document) argument
17 : DeviceSingleWindowEventController(document)
31 DeviceLightController& DeviceLightController::from(Document& document) argument
33 DeviceLightController* controller = static_cast<DeviceLightController*>(DocumentSupplement::from(document, supplementName()));
35 controller = new DeviceLightController(document);
36 DocumentSupplement::provideTo(document, supplementName(), adoptPtrWillBeNoop(controller));
/external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
H A DDeviceMotionController.cpp16 DeviceMotionController::DeviceMotionController(Document& document) argument
17 : DeviceSingleWindowEventController(document)
31 DeviceMotionController& DeviceMotionController::from(Document& document) argument
33 DeviceMotionController* controller = static_cast<DeviceMotionController*>(DocumentSupplement::from(document, supplementName()));
35 controller = new DeviceMotionController(document);
36 DocumentSupplement::provideTo(document, supplementName(), adoptPtrWillBeNoop(controller));
/external/chromium_org/third_party/WebKit/Source/web/
H A DStorageQuotaClientImpl.cpp67 Document* document = toDocument(executionContext); local
68 WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(document->frame());
83 Document* document = toDocument(scriptState->executionContext()); local
84 WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(document->frame());
H A DWebLeakDetector.cpp90 RefPtrWillBeRawPtr<Document> document = PassRefPtrWillBeRawPtr<Document>(frame->document()); local
91 if (ResourceFetcher* fetcher = document->fetcher())
103 // so previous document is still held by the loader until the next event loop.
/external/pdfium/fpdfsdk/src/
H A Dfpdfeditimg.cpp11 DLLEXPORT FPDF_PAGEOBJECT STDCALL FPDFPageObj_NewImgeObj(FPDF_DOCUMENT document) argument
13 if (!document)
16 CPDF_Image* pImg = FX_NEW CPDF_Image((CPDF_Document *)document);
H A Dfpdfsave.cpp56 FPDF_BOOL _FPDF_Doc_Save(FPDF_DOCUMENT document,FPDF_FILEWRITE * pFileWrite,FPDF_DWORD flags, FPDF_BOOL bSetVersion, argument
59 CPDF_Document* pDoc = (CPDF_Document*)document;
80 DLLEXPORT FPDF_BOOL STDCALL FPDF_SaveAsCopy( FPDF_DOCUMENT document,FPDF_FILEWRITE * pFileWrite, argument
83 return _FPDF_Doc_Save(document, pFileWrite, flags, FALSE , 0);
87 DLLEXPORT FPDF_BOOL STDCALL FPDF_SaveWithVersion( FPDF_DOCUMENT document,FPDF_FILEWRITE * pFileWrite, argument
90 return _FPDF_Doc_Save(document, pFileWrite, flags, TRUE , fileVersion);
/external/chromium_org/v8/benchmarks/spinning-balls/
H A Dv.js198 var canvas = document.createElement("canvas");
201 document.body.appendChild(canvas);
296 var canvas = document.createElement("canvas");
299 document.body.appendChild(canvas);
373 var msg = document.createElement("p");
376 var table = document.createElement("table");
380 var row = document.createElement("tr");
381 var time = document.createElement("td");
382 var count = document.createElement("td");
429 function create(tag) { return document
[all...]
/external/chromium_org/chrome/renderer/autofill/
H A Dpassword_generation_agent_browsertest.cc57 WebDocument document = GetMainFrame()->document(); local
59 document.getElementById(WebString::fromUTF8(element_id));
62 base::StringPrintf("document.getElementById('%s').focus();",
146 WebDocument document = GetMainFrame()->document(); local
148 document.getElementById(WebString::fromUTF8("first_password"));
151 element = document.getElementById(WebString::fromUTF8("second_password"));
172 element = document.getElementById(WebString::fromUTF8("first_password"));
174 EXPECT_EQ(element, document
182 WebDocument document = GetMainFrame()->document(); local
264 WebDocument document = GetMainFrame()->document(); local
[all...]

Completed in 373 milliseconds

<<11121314151617181920>>