HomeSort by relevance Sort by last modified time
    Searched refs:nChars (Results 1 - 25 of 38) sorted by null

1 2

  /libcore/ojluni/src/main/java/java/io/
BufferedReader.java 76 private int nChars, nextChar;
107 nextChar = nChars = 0;
166 nextChar = nChars = delta;
175 nChars = dst + n;
192 if (nextChar >= nChars) {
194 if (nextChar >= nChars)
214 if (nextChar >= nChars) {
225 if (nextChar >= nChars) return -1;
230 if (nextChar >= nChars)
232 if (nextChar >= nChars)
    [all...]
BufferedWriter.java 71 private int nChars, nextChar;
106 nChars = sz;
142 if (nextChar >= nChars)
183 if (len >= nChars) {
194 int d = min(nChars - nextChar, t - b);
198 if (nextChar >= nChars)
225 int d = min(nChars - nextChar, t - b);
229 if (nextChar >= nChars)
Console.java 406 private int nChars, nextChar;
411 nextChar = nChars = 0;
433 if (nextChar >= nChars) { //fill
439 nChars = n;
464 while (nextChar < nChars) {
483 if (nextChar == nChars && in.ready()) {
491 nChars = in.read(cb, 0, cb.length);
494 if (nextChar < nChars && cb[nextChar] == '\n') {
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorCharacters.java 54 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/
fx_apple_platform.cpp 43 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,
118 for (int i = 0; i < nChars; i++) {
156 _CGDrawGlyphRun(ctx, nChars, pCharPos, pFont, pCache, pObject2Device,
apple_int.h 165 FX_BOOL DrawDeviceText(int nChars,
185 FX_BOOL CG_DrawGlypRun(int nChars,
fx_quartz_device.cpp 738 FX_BOOL CFX_QuartzDeviceDriver::CG_DrawGlypRun(int nChars,
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,
826 while (i < nChars) {
855 nChars -= i;
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Lexer.java 126 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/
fpdf_render_text.cpp 513 void Load(int nChars,
528 void CPDF_CharPosList::Load(int nChars,
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());
639 if (nChars == 0) {
646 if (nChars == 1)
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page.cpp 281 void CPDF_TextObject::SetText(int nChars,
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,
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/
fpdf_render.h 185 int nChars,
199 int nChars,
209 int nChars,
fpdf_pageobj.h 440 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) {
458 nChars = m_nChars;
  /external/pdfium/core/src/fxge/skia/
fx_skia_device.h 114 virtual FX_BOOL DrawDeviceText(int nChars,
fx_skia_device.cpp 272 FX_BOOL CFX_SkiaDeviceDriver::DrawDeviceText(int nChars,
281 return m_pAggDriver->DrawDeviceText(nChars, pCharPos, pFont, pCache,
  /external/pdfium/core/src/fxge/ge/
fx_ge_text.cpp 45 int nChars,
51 for (int iChar = 0; iChar < nChars; iChar++) {
89 static void _AdjustGlyphSpace(FXTEXT_GLYPHPOS* pGlyphAndPos, int nChars) {
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,
196 m_pDeviceDriver->DrawDeviceText(nChars, pCharPos, pFont, pCache,
217 m_pDeviceDriver->DrawDeviceText(nChars, pCharPos, pFont, pCache
    [all...]
fx_ge_ps.cpp 642 FX_BOOL CFX_PSRenderer::DrawText(int nChars,
672 for (int i = 0; i < nChars; i++) {
  /external/icu/icu4c/source/test/letest/
FontObject.h 193 le_uint32 unicodesToGlyphs(LEUnicode *chars, le_uint32 nChars, LEGlyphID *glyphs,
  /external/icu/icu4c/source/test/perf/leperf/
FontObject.h 193 le_uint32 unicodesToGlyphs(LEUnicode *chars, le_uint32 nChars, LEGlyphID *glyphs,
  /external/pdfium/core/include/fxge/
fx_ge.h 378 FX_BOOL DrawNormalText(int nChars,
389 FX_BOOL DrawTextPath(int nChars,
592 virtual FX_BOOL DrawDeviceText(int nChars,
682 FX_BOOL DrawText(int nChars,
fx_font.h 521 int nChars,
  /external/pdfium/core/src/fxge/agg/include/
fx_agg_driver.h 115 FX_BOOL DrawDeviceText(int nChars,
  /external/pdfium/core/src/fxge/win32/
fx_win32_print.cpp 462 FX_BOOL CPSPrinterDriver::DrawDeviceText(int nChars,
471 return m_PSRenderer.DrawText(nChars, pCharPos, pFont, pCache, pObject2Device,
win32_int.h 346 FX_BOOL DrawDeviceText(int nChars,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
snmp.h 187 SNMPAPI SNMP_FUNC_TYPE SnmpUtilOctetsNCmp(AsnOctetString *pOctets1,AsnOctetString *pOctets2,UINT nChars);
  /frameworks/base/core/jni/android/graphics/
Paint.cpp     [all...]

Completed in 1132 milliseconds

1 2