Searched refs:scaleFactor (Results 26 - 50 of 96) sorted by relevance

1234

/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DSimpleFontDataLinux.cpp158 SimpleFontData* SimpleFontData::scaledFontData(const FontDescription& fontDescription, float scaleFactor) const
160 const float scaledSize = lroundf(fontDescription.computedSize() * scaleFactor);
H A DGLES2Canvas.cpp797 int scaleFactor = 1; local
800 scaleFactor *= 2;
804 srcRect.scale(scaleFactor);
805 for (int i = 1; i < scaleFactor; i *= 2) {
826 if (scaleFactor > 1) {
838 if (scaleFactor > 1) {
847 if (scaleFactor > 1) {
859 dstRect.scale(scaleFactor);
/external/webkit/Source/WebCore/platform/graphics/wx/
H A DSimpleFontDataWx.cpp93 SimpleFontData* SimpleFontData::scaledFontData(const FontDescription& fontDescription, float scaleFactor) const
96 desc.setSpecifiedSize(scaleFactor * fontDescription.computedSize());
/external/aac/libAACdec/src/
H A Daacdec_pns.cpp292 static void ScaleBand (FIXP_DBL *RESTRICT spec, int size, int scaleFactor, int specScale, int noise_e, int out_of_phase) argument
297 /* Get gain from scale factor value = 2^(scaleFactor * 0.25) */
298 sfMatissa = MantissaTable[scaleFactor & 0x03][0];
299 /* sfExponent = (scaleFactor >> 2) + ExponentTable[scaleFactor & 0x03][0]; */
300 /* Note: ExponentTable[scaleFactor & 0x03][0] is always 1. */
301 sfExponent = (scaleFactor >> 2) + 1;
/external/webkit/Source/WebKit2/UIProcess/API/mac/
H A DPDFViewController.mm168 CGFloat scaleFactor = preferences->pdfScaleFactor();
169 if (!scaleFactor)
173 [_pdfView setScaleFactor:scaleFactor];
187 CGFloat scaleFactor = [_pdfView autoScales] ? 0 : [_pdfView scaleFactor];
188 preferences->setPDFScaleFactor(scaleFactor);
444 return [m_pdfView scaleFactor];
H A DPageClientImpl.h110 virtual void didPerformDictionaryLookup(const String&, double scaleFactor, const DictionaryPopupInfo&);
H A DPageClientImpl.mm378 void PageClientImpl::didPerformDictionaryLookup(const String& text, double scaleFactor, const DictionaryPopupInfo& dictionaryPopupInfo)
381 NSFont *font = [NSFont fontWithDescriptor:fontDescriptor size:((scaleFactor != 1) ? [fontDescriptor pointSize] * scaleFactor : 0)];
/external/webkit/Source/WebKit/mac/WebView/
H A DWebPDFView.mm790 [state addObject:[NSNumber numberWithFloat:[PDFSubview scaleFactor]]];
841 return [PDFSubview scaleFactor] != 1.0;
1064 float scaleFactor = [prefs PDFScaleFactor];
1065 if (scaleFactor == 0)
1069 [PDFSubview setScaleFactor:scaleFactor];
1352 float scaleFactor = [PDFSubview scaleFactor];
1353 if (scaleFactor == 1.0)
1372 NSFont *scaledFont = [NSFont fontWithName:[unscaledFont fontName] size:[unscaledFont pointSize]*scaleFactor];
1430 float scaleFactor
[all...]
/external/webkit/Source/WebCore/svg/
H A DSVGPathParser.cpp437 float scaleFactor = sqrtf(scaleFactorSquared); local
439 scaleFactor = -scaleFactor;
441 delta.scale(scaleFactor);
/external/webkit/Source/WebCore/platform/audio/
H A DSincResampler.cpp68 SincResampler::SincResampler(double scaleFactor, unsigned kernelSize, unsigned numberOfKernelOffsets) argument
69 : m_scaleFactor(scaleFactor)
/external/webkit/Source/WebCore/platform/graphics/win/
H A DSimpleFontDataWin.cpp111 SimpleFontData* SimpleFontData::scaledFontData(const FontDescription& fontDescription, float scaleFactor) const
113 float scaledSize = scaleFactor * m_platformData.size();
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
H A DWKBundlePage.cpp247 WKImageRef WKBundlePageCreateScaledSnapshotInDocumentCoordinates(WKBundlePageRef pageRef, WKRect rect, double scaleFactor, WKImageOptions options) argument
249 RefPtr<WebImage> webImage = toImpl(pageRef)->scaledSnapshotInDocumentCoordinates(toIntRect(rect), scaleFactor, toImageOptions(options));
/external/aac/libFDK/src/
H A Dqmf.cpp631 QMF_SCALE_FACTOR *scaleFactor,
640 scaleFactor->lb_scale = -ALGORITHMIC_SCALING_IN_ANALYSIS_FILTERBANK;
641 scaleFactor->lb_scale -= anaQmf->filterScale;
921 const QMF_SCALE_FACTOR *scaleFactor,
934 scaleFactorHighBand = -ALGORITHMIC_SCALING_IN_ANALYSIS_FILTERBANK - scaleFactor->hb_scale;
935 scaleFactorLowBand_ov = - ALGORITHMIC_SCALING_IN_ANALYSIS_FILTERBANK - scaleFactor->ov_lb_scale;
936 scaleFactorLowBand_no_ov = - ALGORITHMIC_SCALING_IN_ANALYSIS_FILTERBANK - scaleFactor->lb_scale;
628 qmfAnalysisFiltering( HANDLE_QMF_FILTER_BANK anaQmf, FIXP_QMF **qmfReal, FIXP_QMF **qmfImag, QMF_SCALE_FACTOR *scaleFactor, const INT_PCM *timeIn, const int stride, FIXP_QMF *pWorkBuffer ) argument
918 qmfSynthesisFiltering( HANDLE_QMF_FILTER_BANK synQmf, FIXP_QMF **QmfBufferReal, FIXP_QMF **QmfBufferImag, const QMF_SCALE_FACTOR *scaleFactor, const INT ov_len, INT_PCM *timeOut, const INT stride, FIXP_QMF *pWorkBuffer ) argument
/external/webkit/Source/WebCore/page/
H A DChrome.h94 float scaleFactor();
H A DChrome.cpp143 float Chrome::scaleFactor() function in class:WebCore::Chrome
145 return m_client->scaleFactor();
H A DChromeClient.h84 virtual float scaleFactor() = 0;
/external/webkit/Source/WebKit/efl/WebCoreSupport/
H A DChromeClientEfl.h47 virtual float scaleFactor();
/external/webkit/Source/WebKit/haiku/WebCoreSupport/
H A DChromeClientHaiku.h53 virtual float scaleFactor();
/external/webkit/Source/WebKit/win/
H A DFullscreenVideoController.cpp215 float scaleFactor; local
217 scaleFactor = layerBounds.width() / videoSize.width();
219 scaleFactor = layerBounds.height() / videoSize.height();
220 videoSize.scale(scaleFactor);
/external/webkit/Source/WebKit/wince/WebCoreSupport/
H A DChromeClientWinCE.h45 virtual float scaleFactor();
/external/webkit/Source/WebKit/wx/WebKitSupport/
H A DChromeClientWx.h50 virtual float scaleFactor();
/external/webkit/Source/WebKit2/UIProcess/
H A DPageClient.h138 virtual void didPerformDictionaryLookup(const String&, double scaleFactor, const DictionaryPopupInfo&) = 0;
/external/webkit/Source/WebKit2/UIProcess/win/
H A DWebPopupMenuProxyWin.h51 virtual void showPopupMenu(const WebCore::IntRect&, WebCore::TextDirection, double scaleFactor, const Vector<WebPopupItem>&, const PlatformPopupMenuData&, int32_t selectedIndex);
/external/aac/libSBRdec/src/
H A Dsbrdec_drc.cpp187 \scaleFactor Pointer to the out scale factor of the time slot.
475 \scaleFactor Pointer to the out scale factor of the frame.
484 int *scaleFactor
496 return; /* Avoid changing the scaleFactor even though the processing is disabled. */
525 *scaleFactor += maxShift;
/external/webkit/Source/WebCore/platform/graphics/mac/
H A DSimpleFontDataMac.mm372 SimpleFontData* SimpleFontData::scaledFontData(const FontDescription& fontDescription, float scaleFactor) const
376 scaledFontData.m_size = scaledFontData.m_size * scaleFactor;
381 float size = m_platformData.size() * scaleFactor;

Completed in 449 milliseconds

1234