Searched defs:nChars (Results 1 - 15 of 15) sorted by relevance

/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dins.h6 #define nChars 256 macro
/external/pdfium/core/src/fxge/apple/
H A Dfx_apple_platform.cpp42 int nChars,
52 if (nChars == 0) {
75 CFX_FixedBufGrow<FX_WORD, 32> glyph_indices(nChars);
76 CFX_FixedBufGrow<CGPoint, 32> glyph_positions(nChars);
77 for (int i = 0; i < nChars; i++ ) {
98 nChars,
103 FX_BOOL CFX_AggDeviceDriver::DrawDeviceText(int nChars, argument
121 for (int i = 0; i < nChars; i ++) {
157 FX_BOOL ret = _CGDrawGlyphRun(ctx, nChars, pCharPos, pFont, pCache, pObject2Device, font_size, argb, alpha_flag, pIccTransform);
41 _CGDrawGlyphRun(CGContextRef pContext, int nChars, const FXTEXT_CHARPOS* pCharPos, CFX_Font* pFont, CFX_FontCache* pCache, const CFX_AffineMatrix* pObject2Device, FX_FLOAT font_size, FX_DWORD argb, int alpha_flag, void* pIccTransform) argument
H A Dfx_quartz_device.cpp802 FX_BOOL CFX_QuartzDeviceDriver::CG_DrawGlypRun(int nChars, argument
813 if (nChars == 0) {
826 CFX_FixedBufGrow<FX_WORD, 32> glyph_indices(nChars);
827 CFX_FixedBufGrow<CGPoint, 32> glyph_positions(nChars);
828 for (int i = 0; i < nChars; i++ ) {
875 nChars);
879 FX_BOOL CFX_QuartzDeviceDriver::DrawDeviceText(int nChars, argument
902 while (i < nChars) {
929 nChars -= i;
/external/pdfium/core/src/fxge/ge/
H A Dfx_ge_linux.cpp21 FX_BOOL CFX_AggDeviceDriver::DrawDeviceText(int nChars, const FXTEXT_CHARPOS* pCharPos, CFX_Font* pFont, argument
H A Dfx_ge_ps.cpp604 FX_BOOL CFX_PSRenderer::DrawText(int nChars, const FXTEXT_CHARPOS* pCharPos, CFX_Font* pFont, argument
628 for (int i = 0; i < nChars; i ++) {
H A Dfx_ge_text.cpp15 FX_RECT FXGE_GetGlyphsBBox(FXTEXT_GLYPHPOS* pGlyphAndPos, int nChars, int anti_alias, FX_FLOAT retinaScaleX, FX_FLOAT retinaScaleY) argument
19 for (int iChar = 0; iChar < nChars; iChar ++) {
56 static void _AdjustGlyphSpace(FXTEXT_GLYPHPOS* pGlyphAndPos, int nChars) argument
58 ASSERT(nChars > 1);
60 if (pGlyphAndPos[nChars - 1].m_OriginX == pGlyphAndPos[0].m_OriginX) {
62 } else if (pGlyphAndPos[nChars - 1].m_OriginY != pGlyphAndPos[0].m_OriginY) {
65 int i = nChars - 1;
149 FX_BOOL CFX_RenderDevice::DrawNormalText(int nChars, const FXTEXT_CHARPOS* pCharPos, argument
164 if (m_pDeviceDriver->DrawDeviceText(nChars, pCharPos, pFont, pCache, pText2Device, font_size, fill_color, alpha_flag, pIccTransform)) {
179 if (m_pDeviceDriver->DrawDeviceText(nChars, pCharPo
944 DrawTextPath(int nChars, const FXTEXT_CHARPOS* pCharPos, CFX_Font* pFont, CFX_FontCache* pCache, FX_FLOAT font_size, const CFX_AffineMatrix* pText2User, const CFX_AffineMatrix* pUser2Device, const CFX_GraphStateData* pGraphState, FX_DWORD fill_color, FX_ARGB stroke_color, CFX_PathData* pClippingPath, int nFlag, int alpha_flag, void* pIccTransform, int blend_type) argument
[all...]
/external/pdfium/core/src/fxge/agg/agg23/
H A Dfx_agg_driver.cpp224 FX_BOOL CFX_AggDeviceDriver::DrawDeviceText(int nChars, const FXTEXT_CHARPOS* pCharPos, CFX_Font* pFont, argument
/external/pdfium/core/src/fxge/win32/
H A Dfx_win32_print.cpp420 FX_BOOL CPSPrinterDriver::DrawDeviceText(int nChars, const FXTEXT_CHARPOS* pCharPos, CFX_Font* pFont, argument
424 return m_PSRenderer.DrawText(nChars, pCharPos, pFont, pCache, pObject2Device, font_size, color, alpha_flag, pIccTransform);
/external/pdfium/core/src/fpdfapi/fpdf_render/
H A Dfpdf_render_text.cpp524 void Load(int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pCharPos, CPDF_Font* pFont, FX_FLOAT font_size);
539 void CPDF_CharPosList::Load(int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pCharPos, CPDF_Font* pFont, argument
542 m_pCharPos = FX_Alloc(FXTEXT_CHARPOS, nChars);
543 FXSYS_memset32(m_pCharPos, 0, sizeof(FXTEXT_CHARPOS) * nChars);
547 for (int iChar = 0; iChar < nChars; iChar ++) {
548 FX_DWORD CharCode = nChars == 1 ? (FX_DWORD)(FX_UINTPTR)pCharCodes : pCharCodes[iChar];
593 FX_BOOL CPDF_TextRenderer::DrawTextPath(CFX_RenderDevice* pDevice, int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pCharPos, argument
601 CharPosList.Load(nChars, pCharCodes, pCharPos, pFont, font_size);
621 int nChars = pFont->CountChar(str, str.GetLength()); local
622 if (nChars
663 DrawNormalText(CFX_RenderDevice* pDevice, int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pCharPos, CPDF_Font* pFont, FX_FLOAT font_size, const CFX_AffineMatrix* pText2Device, FX_ARGB fill_argb, const CPDF_RenderOptions* pOptions) argument
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Ducol_tok.cpp893 uint32_t nChars = U16_LENGTH(src->currentRangeCp); local
895 src->parsedToken.charsLen = nChars;
898 ucol_tok_addToExtraCurrent(src, buff, nChars, status);
/external/pdfium/core/include/fpdfapi/
H A Dfpdf_pageobj.h570 void SetText(int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pKernings);
581 void SetData(int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pCharPos, FX_FLOAT x, FX_FLOAT y);
583 void GetData(int& nChars, FX_DWORD*& pCharCodes, FX_FLOAT*& pCharPos) argument
585 nChars = m_nChars;
/external/pdfium/core/include/fxge/
H A Dfx_ge.h437 FX_BOOL DrawNormalText(int nChars, const FXTEXT_CHARPOS* pCharPos,
443 FX_BOOL DrawTextPath(int nChars, const FXTEXT_CHARPOS* pCharPos,
618 virtual FX_BOOL DrawDeviceText(int nChars, const FXTEXT_CHARPOS* pCharPos, CFX_Font* pFont, argument
697 FX_BOOL DrawText(int nChars, const FXTEXT_CHARPOS* pCharPos, CFX_Font* pFont, CFX_FontCache* pCache,
/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page.cpp286 void CPDF_TextObject::SetText(int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pKernings) argument
298 for (i = 0; i < nChars - 1; i ++)
302 m_nChars = nChars + nKernings;
307 for (int i = 0; i < nChars; i ++) {
309 if (pKernings[i] != 0 && i != nChars - 1) {
582 void CPDF_TextObject::SetData(int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pCharPos, FX_FLOAT x, FX_FLOAT y) argument
585 m_nChars = nChars;
588 if (nChars == 0) {
591 if (nChars == 1) {
594 m_pCharCodes = FX_Alloc(FX_DWORD, nChars);
[all...]
/external/pdfium/core/src/fpdftext/
H A Dfpdf_text_int.cpp1636 FX_INT32 nChars = pTextObj->CountChars(); local
1637 if (nChars == 1) {
1848 FX_INT32 nChars = pTextObj->CountChars(); local
1849 if (nChars == 1) {
1854 pTextObj->GetCharInfo(nChars - 1, &last);
2012 FX_INT32 nChars = pObj->CountChars(); local
2013 if (nChars == 1 && ( 0x2D == curChar || 0xAD == curChar))
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmstypes.c4944 cmsUInt32Number nChars; local
4956 nChars = e ->Sizes[i] / sizeof(cmsUInt16Number);
4959 *wcstr = (wchar_t*) _cmsMallocZero(e ->ContextID, (nChars + 1) * sizeof(wchar_t));
4962 if (!_cmsReadWCharArray(io, nChars, *wcstr)) {
4968 (*wcstr)[nChars] = 0;

Completed in 950 milliseconds