/external/pdfium/fxbarcode/oned/ |
D | BC_OnedUPCAWriter.cpp | 127 CFX_FloatRect rect((float)leftPosition, (float)(m_Height - iTextHeight), in ShowChars() 128 (float)(leftPosition + strWidth - 0.5), (float)m_Height); in ShowChars() 134 (float)(m_Height - iTextHeight), in ShowChars() 136 (float)m_Height); in ShowChars() 142 CFX_FloatRect rect2(0.0, (float)(m_Height - iTextHeight), in ShowChars() 143 (float)strWidth1 - 1, (float)m_Height); in ShowChars() 149 (float)(m_Height - iTextHeight), in ShowChars() 151 (float)m_Height); in ShowChars() 161 (float)(m_Height - iTextHeight + iFontSize)); in ShowChars() 175 (float)(m_Height - iTextHeight + iFontSize)); in ShowChars() [all …]
|
D | BC_OnedEAN13Writer.cpp | 156 CFX_FloatRect rect((float)leftPosition, (float)(m_Height - iTextHeight), in ShowChars() 157 (float)(leftPosition + strWidth - 0.5), (float)m_Height); in ShowChars() 162 (float)(leftPosition + 47 * multiple), (float)(m_Height - iTextHeight), in ShowChars() 163 (float)(leftPosition + 47 * multiple + strWidth - 0.5), (float)m_Height); in ShowChars() 170 CFX_FloatRect rect2(0.0f, (float)(m_Height - iTextHeight), in ShowChars() 171 (float)strWidth1 - 0.5f, (float)m_Height); in ShowChars() 185 (float)(m_Height - iTextHeight) + iFontSize); in ShowChars() 200 (float)(m_Height - iTextHeight + iFontSize)); in ShowChars() 216 (float)(m_Height - iTextHeight + iFontSize)); in ShowChars()
|
D | BC_OnedEAN8Writer.cpp | 159 CFX_FloatRect rect((float)leftPosition, (float)(m_Height - iTextHeight), in ShowChars() 160 (float)(leftPosition + strWidth - 0.5), (float)m_Height); in ShowChars() 166 (float)(leftPosition + 33 * multiple), (float)(m_Height - iTextHeight), in ShowChars() 167 (float)(leftPosition + 33 * multiple + strWidth - 0.5), (float)m_Height); in ShowChars() 178 (float)(m_Height - iTextHeight + iFontSize)); in ShowChars() 192 (float)(m_Height - iTextHeight + iFontSize)); in ShowChars()
|
D | BC_OneDimWriter.cpp | 247 locY = m_Height - iTextHeight; in ShowChars() 253 locY = m_Height - iTextHeight; in ShowChars() 271 static_cast<float>(m_Height)); in RenderDeviceResult() 275 static_cast<float>(m_Height), 0.0, 0.0); in RenderDeviceResult()
|
/external/pdfium/core/fxge/dib/ |
D | cfx_dibitmap.cpp | 42 m_Height = 0; in Create() 66 m_Height = height; in Create() 79 m_Height = 0; in Create() 117 m_Height = pSrcBitmap->m_Height; in TakeOver() 128 memset(pBuffer, (color & 0xff000000) ? 0xff : 0, m_Pitch * m_Height); in Clear() 132 memset(pBuffer, index ? 0xff : 0, m_Pitch * m_Height); in Clear() 136 memset(pBuffer, color >> 24, m_Pitch * m_Height); in Clear() 140 memset(pBuffer, index, m_Pitch * m_Height); in Clear() 151 memset(pBuffer, r, m_Pitch * m_Height); in Clear() 159 for (int row = 1; row < m_Height; row++) { in Clear() [all …]
|
D | cfx_dibsource.cpp | 600 : m_Width(0), m_Height(0), m_bpp(0), m_AlphaFlag(0), m_Pitch(0) {} in CFX_DIBSource() 613 FX_RECT rect(0, 0, m_Width, m_Height); in Clone() 681 if (!m_pAlphaMask->Create(m_Width, m_Height, FXDIB_8bppMask)) { in BuildAlphaMask() 750 if (dest_left > m_Width || dest_top > m_Height) { in GetOverlapRect() 762 FX_RECT dest_bound(0, 0, m_Width, m_Height); in GetOverlapRect() 807 FX_RECT rect(0, 0, m_Width, m_Height); in CloneAlphaMask() 833 FX_RECT rect(0, 0, pAlphaMask->m_Width, pAlphaMask->m_Height); in SetAlphaMask() 837 rect.Height() != m_Height) { in SetAlphaMask() 841 if (pAlphaMask->m_Width != m_Width || pAlphaMask->m_Height != m_Height) in SetAlphaMask() 844 for (int row = 0; row < m_Height; ++row) { in SetAlphaMask() [all …]
|
D | cfx_dibsource.h | 48 int GetHeight() const { return m_Height; } in GetHeight() 128 int m_Height; variable
|
D | cfx_filtereddib.cpp | 18 m_Height = pSrc->GetHeight(); in LoadSrc()
|
/external/pdfium/fxbarcode/ |
D | BC_TwoDimWriter.cpp | 26 path.AppendRect(0, 0, (float)m_Width, (float)m_Height); in RenderDeviceResult() 33 topPos = (m_Height - m_output->GetHeight()) / 2; in RenderDeviceResult() 36 if (m_Width < m_output->GetWidth() && m_Height < m_output->GetHeight()) { in RenderDeviceResult() 38 0.0, (float)m_Height / (float)m_output->GetHeight(), in RenderDeviceResult() 78 if (m_Width < outputWidth || m_Height < outputHeight) { in RenderResult() 82 if (m_Width > outputWidth || m_Height > outputHeight) { in RenderResult() 86 (int32_t)(outputHeight * ceil((float)m_Height / (float)outputHeight)); in RenderResult()
|
D | BC_Writer.cpp | 13 m_Height = 320; in CBC_Writer() 39 m_Height = height; in SetHeight()
|
D | BC_Writer.h | 32 int32_t m_Height; variable
|
/external/pdfium/core/fpdfapi/render/ |
D | cpdf_dibsource.cpp | 159 m_Height = m_pDict->GetIntegerFor("Height"); in Load() 160 if (m_Width <= 0 || m_Height <= 0 || m_Width > kMaxImageDimension || in Load() 161 m_Height > kMaxImageDimension) { in Load() 173 CalculatePitch8(m_bpc, m_nComponents, m_Width) * m_Height; in Load() 270 m_Height = m_pDict->GetIntegerFor("Height"); in StartLoadDIBSource() 271 if (m_Width <= 0 || m_Height <= 0 || m_Width > kMaxImageDimension || in StartLoadDIBSource() 272 m_Height > kMaxImageDimension) { in StartLoadDIBSource() 285 CalculatePitch8(m_bpc, m_nComponents, m_Width) * m_Height; in StartLoadDIBSource() 336 m_pJbig2Context.get(), m_pDocument->CodecContext(), m_Width, m_Height, in ContinueLoadDIBSource() 492 m_Width, m_Height, m_bImageMask ? FXDIB_1bppMask : FXDIB_1bppRgb)) { in CreateDecoder() [all …]
|
/external/pdfium/core/fpdfapi/page/ |
D | cpdf_image.h | 38 int32_t GetPixelHeight() const { return m_Height; } in GetPixelHeight() 74 int32_t m_Height = 0; variable
|
D | cpdf_image.cpp | 63 m_Height = m_pDict->GetIntegerFor("Height"); in FinishInitialization() 119 m_Height = height; in InitJPEG() 325 m_Height = BitmapHeight; in SetImage()
|
/external/pdfium/core/fxge/win32/ |
D | fx_win32_print.cpp | 338 m_Height = ::GetDeviceCaps(m_hDC, VERTRES); in CPSPrinterDriver() 342 m_Height, bCmykOutput); in CPSPrinterDriver() 379 return m_Height; in GetDeviceCaps() 498 m_Height(INT_MAX), in CTextOnlyPrinterDriver() 517 return m_Height; in GetDeviceCaps() 566 pRect->bottom = m_Height; in GetClipBox()
|
D | win32_int.h | 183 int m_Height; variable 328 int m_Height; variable 390 int m_Height; variable
|
D | fx_win32_dib.cpp | 209 ::BitBlt(m_hMemDC, 0, 0, m_Width, m_Height, hDC, left, top, SRCCOPY); in LoadFromDevice() 213 ::BitBlt(hDC, left, top, m_Width, m_Height, m_hMemDC, 0, 0, SRCCOPY); in SetToDevice()
|
D | fx_win32_device.cpp | 736 m_Height = abs(bitmap.bmHeight); in CGdiDeviceDriver() 742 m_Height = ::GetDeviceCaps(m_hDC, VERTRES); in CGdiDeviceDriver() 760 return m_Height; in GetDeviceCaps() 926 ((y1 < 0) << 2) | ((y1 > m_Height) << 3); in DrawLine() 928 ((y2 < 0) << 2) | ((y2 > m_Height) << 3); in DrawLine() 939 rect_base rect = {0.0f, 0.0f, (float)(m_Width), (float)(m_Height)}; in DrawLine() 943 (float)(m_Height)); in DrawLine()
|
/external/pdfium/core/fxge/ |
D | cfx_renderdevice.h | 112 int GetHeight() const { return m_Height; } in GetHeight() 297 int m_Height; variable
|
D | cfx_renderdevice.cpp | 372 m_Height(0), in CFX_RenderDevice() 401 m_Height = m_pDeviceDriver->GetDeviceCaps(FXDC_PIXEL_HEIGHT); in InitDeviceInfo() 409 m_ClipBox.bottom = m_Height; in InitDeviceInfo() 507 m_ClipBox.bottom = m_Height; in UpdateClipBox()
|
/external/pdfium/fxbarcode/pdf417/ |
D | BC_PDF417Writer.cpp | 56 int32_t row = m_Height / (m_ModuleWidth * 20); in Encode()
|