Home
last modified time | relevance | path

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

/external/pdfium/core/fxge/apple/
Dfx_apple_platform.cpp36 int nChars, in CGDrawGlyphRun() argument
42 if (nChars == 0) in CGDrawGlyphRun()
62 std::vector<uint16_t> glyph_indices(nChars); in CGDrawGlyphRun()
63 std::vector<CGPoint> glyph_positions(nChars); in CGDrawGlyphRun()
64 for (int i = 0; i < nChars; i++) { in CGDrawGlyphRun()
83 glyph_positions.data(), nChars, argb); in CGDrawGlyphRun()
105 bool CFX_AggDeviceDriver::DrawDeviceText(int nChars, in DrawDeviceText() argument
120 for (int i = 0; i < nChars; i++) { in DrawDeviceText()
156 bool ret = CGDrawGlyphRun(ctx, nChars, pCharPos, pFont, mtObject2Device, in DrawDeviceText()
/external/pdfium/core/fxge/win32/
Dfx_win32_print.cpp202 bool CGdiPrinterDriver::DrawDeviceText(int nChars, in DrawDeviceText() argument
212 if (nChars < 1 || !pFont || !pFont->IsEmbedded() || !pFont->IsTTFont()) in DrawDeviceText()
293 std::vector<INT> spacing(nChars); in DrawDeviceText()
295 for (int i = 0; i < nChars; ++i) { in DrawDeviceText()
317 if (ExtTextOutW(m_hDC, 0, 0, ETO_GLYPH_INDEX, nullptr, wsText.c_str(), nChars, in DrawDeviceText()
318 nChars > 1 ? &spacing[1] : nullptr)) { in DrawDeviceText()
327 g_pdfium_typeface_accessible_func(&lf, wsText.c_str(), nChars); in DrawDeviceText()
329 nChars, nChars > 1 ? &spacing[1] : nullptr); in DrawDeviceText()
506 bool CPSPrinterDriver::DrawDeviceText(int nChars, in DrawDeviceText() argument
512 return m_PSRenderer.DrawText(nChars, pCharPos, pFont, mtObject2Device, in DrawDeviceText()
[all …]
Dwin32_int.h210 bool DrawDeviceText(int nChars,
273 bool DrawDeviceText(int nChars,
337 bool DrawDeviceText(int nChars,
Dcfx_psrenderer.h93 bool DrawText(int nChars,
Dcfx_psrenderer.cpp574 bool CFX_PSRenderer::DrawText(int nChars, in DrawText() argument
607 for (int i = 0; i < nChars; i++) { in DrawText()
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
DLexer.java126 int nChars = pat.length(); in tokenize() local
138 for (int i = 0; i < nChars; i++) in tokenize()
164 for (i++; (i < nChars) && ((c = pat.charAt(i)) != '\"'); i++); in tokenize()
166 if (c == '\"' && i < nChars) in tokenize()
198 for (i++; (i < nChars) && ((c = pat.charAt(i)) != '\''); i++); in tokenize()
200 if (c == '\'' && i < nChars) in tokenize()
365 posOfNSSep = mapNSTokens(pat, startSubstring, posOfNSSep, nChars); in tokenize()
369 addToTokenQueue(pat.substring(startSubstring, nChars)); in tokenize()
/external/apache-xml/src/main/java/org/apache/xalan/processor/
DProcessorCharacters.java54 int nChars = m_accumulator.length(); in startNonText() local
56 if ((nChars > 0) in startNonText()
80 char[] chars = new char[nChars]; in startNonText()
82 m_accumulator.getChars(0, nChars, chars, 0); in startNonText()
/external/pdfium/core/fpdfapi/render/
Dcpdf_textrenderer.cpp86 int nChars = pFont->CountChar(str.AsStringView()); in DrawTextString() local
87 if (nChars <= 0) in DrawTextString()
93 codes.resize(nChars); in DrawTextString()
94 positions.resize(nChars - 1); in DrawTextString()
96 for (int i = 0; i < nChars; i++) { in DrawTextString()
/external/pdfium/core/fpdfapi/page/
Dcpdf_textobject.cpp207 int nChars = 0; in SetSegments() local
209 nChars += pFont->CountChar(pStrs[i].AsStringView()); in SetSegments()
210 nChars += nSegs - 1; in SetSegments()
211 m_CharCodes.resize(nChars); in SetSegments()
212 m_CharPos.resize(nChars - 1); in SetSegments()
/external/mdnsresponder/mDNSWindows/ControlPanel/
DControlPanelExe.cpp307 DWORD nChars; in InitInstance() local
310 nChars = GetModuleFileName( NULL, exePath, sizeof_array( exePath ) ); in InitInstance()
312 err = translate_errno( nChars > 0, (OSStatus) GetLastError(), kUnknownErr ); in InitInstance()
/external/pdfium/core/fxge/skia/
Dfx_skia_device.cpp830 bool HasRSX(int nChars, in HasRSX() argument
837 for (int index = 0; index < nChars; ++index) { in HasRSX()
862 bool DrawText(int nChars, in DrawText() argument
873 bool hasRSX = HasRSX(nChars, pCharPos, &scaleX, &oneAtATime); in DrawText()
905 m_charDetails.SetCount(nChars + count); in DrawText()
907 m_rsxform.setCount(nChars + count); in DrawText()
913 for (int index = 0; index < nChars; ++index) { in DrawText()
929 for (int index = 0; index < nChars; ++index) { in DrawText()
936 for (int index = 0; index < nChars; ++index) { in DrawText()
1655 bool CFX_SkiaDeviceDriver::DrawDeviceText(int nChars, in DrawDeviceText() argument
[all …]
Dfx_skia_device.h134 bool DrawDeviceText(int nChars,
/external/pdfium/core/fxge/
Dcfx_renderdevice.h158 bool DrawNormalText(int nChars,
165 bool DrawTextPath(int nChars,
Drenderdevicedriver_iface.cpp62 bool RenderDeviceDriverIface::DrawDeviceText(int nChars, in DrawDeviceText() argument
Dcfx_renderdevice.cpp852 bool CFX_RenderDevice::DrawNormalText(int nChars, in DrawNormalText() argument
864 nChars, pCharPos, pFont, mtText2Device, font_size, fill_color)) { in DrawNormalText()
872 m_pDeviceDriver->DrawDeviceText(nChars, pCharPos, pFont, mtText2Device, in DrawNormalText()
886 return DrawTextPath(nChars, pCharPos, pFont, font_size, mtText2Device, in DrawNormalText()
916 std::vector<TextGlyphPos> glyphs(nChars); in DrawNormalText()
1043 bool CFX_RenderDevice::DrawTextPath(int nChars, in DrawTextPath() argument
1054 for (int iChar = 0; iChar < nChars; ++iChar) { in DrawTextPath()
Drenderdevicedriver_iface.h99 virtual bool DrawDeviceText(int nChars,
/external/pdfium/core/fxge/agg/
Dfx_agg_driver.h96 bool DrawDeviceText(int nChars,
Dfx_agg_driver.cpp1159 bool CFX_AggDeviceDriver::DrawDeviceText(int nChars, in DrawDeviceText() argument
/external/icu/icu4c/source/test/letest/
DFontObject.h195 le_uint32 unicodesToGlyphs(LEUnicode *chars, le_uint32 nChars, LEGlyphID *glyphs,
/external/icu/icu4c/source/test/perf/leperf/
DFontObject.h199 le_uint32 unicodesToGlyphs(LEUnicode *chars, le_uint32 nChars, LEGlyphID *glyphs,
/external/pdfium/core/fpdftext/
Dcpdf_textpage.cpp1133 size_t nChars = pTextObj->CountChars(); in GetTextObjectWritingMode() local
1134 if (nChars <= 1) in GetTextObjectWritingMode()
1139 pTextObj->GetCharInfo(nChars - 1, &last); in GetTextObjectWritingMode()
/external/pdfium/third_party/lcms/src/
Dcmstypes.c5011 cmsUInt32Number nChars; in ReadOneWChar() local
5023 nChars = e ->Sizes[i] / sizeof(cmsUInt16Number); in ReadOneWChar()
5026 *wcstr = (wchar_t*) _cmsMallocZero(e ->ContextID, (nChars + 1) * sizeof(wchar_t)); in ReadOneWChar()
5029 if (!_cmsReadWCharArray(io, nChars, *wcstr)) { in ReadOneWChar()
5035 (*wcstr)[nChars] = 0; in ReadOneWChar()
/external/kotlinc/lib/
Dkotlin-stdlib.jarMETA-INF/ META-INF/MANIFEST.MF kotlin/ kotlin/collections/ kotlin/ ...