Searched refs:nChars (Results 1 - 23 of 23) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DProcessorCharacters.java54 int nChars = m_accumulator.length();
56 if ((nChars > 0)
80 char[] chars = new char[nChars];
82 m_accumulator.getChars(0, nChars, chars, 0);
/external/pdfium/core/src/fxge/apple/
H A Dfx_apple_platform.cpp43 int nChars,
52 if (nChars == 0) {
77 CFX_FixedBufGrow<FX_WORD, 32> glyph_indices(nChars);
78 CFX_FixedBufGrow<CGPoint, 32> glyph_positions(nChars);
79 for (int i = 0; i < nChars; i++) {
97 nChars, argb, NULL);
100 FX_BOOL CFX_AggDeviceDriver::DrawDeviceText(int nChars, argument
118 for (int i = 0; i < nChars; i++) {
156 _CGDrawGlyphRun(ctx, nChars, pCharPos, pFont, pCache, pObject2Device,
42 _CGDrawGlyphRun(CGContextRef pContext, int nChars, const FXTEXT_CHARPOS* pCharPos, CFX_Font* pFont, CFX_FontCache* pCache, const CFX_Matrix* pObject2Device, FX_FLOAT font_size, FX_DWORD argb, int alpha_flag, void* pIccTransform) argument
H A Dapple_int.h165 FX_BOOL DrawDeviceText(int nChars,
185 FX_BOOL CG_DrawGlypRun(int nChars,
H A Dfx_quartz_device.cpp738 FX_BOOL CFX_QuartzDeviceDriver::CG_DrawGlypRun(int nChars, argument
748 if (nChars == 0) {
763 CFX_FixedBufGrow<FX_WORD, 32> glyph_indices(nChars);
764 CFX_FixedBufGrow<CGPoint, 32> glyph_positions(nChars);
765 for (int i = 0; i < nChars; i++) {
800 glyph_positions, nChars);
804 FX_BOOL CFX_QuartzDeviceDriver::DrawDeviceText(int nChars, argument
826 while (i < nChars) {
855 nChars -= i;
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DLexer.java126 int nChars = pat.length();
138 for (int i = 0; i < nChars; i++)
164 for (i++; (i < nChars) && ((c = pat.charAt(i)) != '\"'); i++);
166 if (c == '\"' && i < nChars)
198 for (i++; (i < nChars) && ((c = pat.charAt(i)) != '\''); i++);
200 if (c == '\'' && i < nChars)
365 posOfNSSep = mapNSTokens(pat, startSubstring, posOfNSSep, nChars);
369 addToTokenQueue(pat.substring(startSubstring, nChars));
/external/pdfium/core/src/fpdfapi/fpdf_render/
H A Dfpdf_render_text.cpp513 void Load(int nChars,
528 void CPDF_CharPosList::Load(int nChars, argument
533 m_pCharPos = FX_Alloc(FXTEXT_CHARPOS, nChars);
537 for (int iChar = 0; iChar < nChars; iChar++) {
539 nChars == 1 ? (FX_DWORD)(uintptr_t)pCharCodes : pCharCodes[iChar];
587 int nChars,
603 CharPosList.Load(nChars, pCharCodes, pCharPos, pFont, font_size);
638 int nChars = pFont->CountChar(str, str.GetLength()); local
639 if (nChars == 0) {
646 if (nChars
586 DrawTextPath(CFX_RenderDevice* pDevice, int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pCharPos, CPDF_Font* pFont, FX_FLOAT font_size, const CFX_Matrix* pText2User, const CFX_Matrix* pUser2Device, const CFX_GraphStateData* pGraphState, FX_ARGB fill_argb, FX_ARGB stroke_argb, CFX_PathData* pClippingPath, int nFlag) argument
681 DrawNormalText(CFX_RenderDevice* pDevice, int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pCharPos, CPDF_Font* pFont, FX_FLOAT font_size, const CFX_Matrix* pText2Device, FX_ARGB fill_argb, const CPDF_RenderOptions* pOptions) argument
[all...]
/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page.cpp281 void CPDF_TextObject::SetText(int nChars, argument
292 for (i = 0; i < nChars - 1; ++i) {
297 m_nChars = nChars + nKernings;
301 for (int i = 0, index = 0; i < nChars; ++i) {
303 if (pKernings[i] != 0 && i != nChars - 1) {
582 void CPDF_TextObject::SetData(int nChars, argument
588 m_nChars = nChars;
591 if (nChars == 0) {
594 if (nChars == 1) {
597 m_pCharCodes = FX_Alloc(FX_DWORD, nChars);
[all...]
/external/pdfium/core/include/fpdfapi/
H A Dfpdf_render.h185 int nChars,
199 int nChars,
209 int nChars,
H A Dfpdf_pageobj.h440 void SetText(int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pKernings);
451 void SetData(int nChars,
457 void GetData(int& nChars, FX_DWORD*& pCharCodes, FX_FLOAT*& pCharPos) { argument
458 nChars = m_nChars;
/external/pdfium/core/src/fxge/ge/
H A Dfx_ge_text.cpp45 int nChars,
51 for (int iChar = 0; iChar < nChars; iChar++) {
89 static void _AdjustGlyphSpace(FXTEXT_GLYPHPOS* pGlyphAndPos, int nChars) { argument
90 ASSERT(nChars > 1);
92 if (pGlyphAndPos[nChars - 1].m_OriginX == pGlyphAndPos[0].m_OriginX) {
94 } else if (pGlyphAndPos[nChars - 1].m_OriginY != pGlyphAndPos[0].m_OriginY) {
97 int i = nChars - 1;
174 FX_BOOL CFX_RenderDevice::DrawNormalText(int nChars, argument
196 m_pDeviceDriver->DrawDeviceText(nChars, pCharPos, pFont, pCache,
217 m_pDeviceDriver->DrawDeviceText(nChars, pCharPo
44 FXGE_GetGlyphsBBox(FXTEXT_GLYPHPOS* pGlyphAndPos, int nChars, int anti_alias, FX_FLOAT retinaScaleX, FX_FLOAT retinaScaleY) argument
1106 DrawTextPath(int nChars, const FXTEXT_CHARPOS* pCharPos, CFX_Font* pFont, CFX_FontCache* pCache, FX_FLOAT font_size, const CFX_Matrix* pText2User, const CFX_Matrix* 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...]
H A Dfx_ge_ps.cpp642 FX_BOOL CFX_PSRenderer::DrawText(int nChars, argument
672 for (int i = 0; i < nChars; i++) {
/external/icu/icu4c/source/test/letest/
H A DFontObject.h193 le_uint32 unicodesToGlyphs(LEUnicode *chars, le_uint32 nChars, LEGlyphID *glyphs,
/external/icu/icu4c/source/test/perf/leperf/
H A DFontObject.h193 le_uint32 unicodesToGlyphs(LEUnicode *chars, le_uint32 nChars, LEGlyphID *glyphs,
/external/pdfium/core/include/fxge/
H A Dfx_ge.h378 FX_BOOL DrawNormalText(int nChars,
389 FX_BOOL DrawTextPath(int nChars,
592 virtual FX_BOOL DrawDeviceText(int nChars, argument
682 FX_BOOL DrawText(int nChars,
H A Dfx_font.h521 int nChars,
/external/pdfium/core/src/fxge/agg/include/
H A Dfx_agg_driver.h115 FX_BOOL DrawDeviceText(int nChars,
/external/pdfium/core/src/fxge/skia/
H A Dfx_skia_device.h114 virtual FX_BOOL DrawDeviceText(int nChars,
H A Dfx_skia_device.cpp272 FX_BOOL CFX_SkiaDeviceDriver::DrawDeviceText(int nChars, argument
281 return m_pAggDriver->DrawDeviceText(nChars, pCharPos, pFont, pCache,
/external/pdfium/core/src/fxge/win32/
H A Dfx_win32_print.cpp462 FX_BOOL CPSPrinterDriver::DrawDeviceText(int nChars, argument
471 return m_PSRenderer.DrawText(nChars, pCharPos, pFont, pCache, pObject2Device,
H A Dwin32_int.h346 FX_BOOL DrawDeviceText(int nChars,
/external/pdfium/core/src/fpdftext/
H A Dfpdf_text_int.cpp1548 int32_t nChars = pTextObj->CountChars(); local
1549 if (nChars == 1) {
1757 int32_t nChars = pTextObj->CountChars(); local
1758 if (nChars == 1) {
1763 pTextObj->GetCharInfo(nChars - 1, &last);
1932 int32_t nChars = pObj->CountChars();
1933 if (nChars == 1 && (0x2D == curChar || 0xAD == curChar) &&
/external/pdfium/third_party/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;
/external/pdfium/core/src/fxge/agg/src/
H A Dfx_agg_driver.cpp220 FX_BOOL CFX_AggDeviceDriver::DrawDeviceText(int nChars, argument

Completed in 2542 milliseconds