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

1 2

  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
ins.h 6 #define nChars 256
re.h 23 CharPtn *rep[nChars];
24 CharPtn ptn[nChars];
actions.c 643 Char rep[nChars];
648 for(j = 0; j < nChars; ++j){
653 *(cs.freeTail = &cs.ptn[nChars-1].nxt) = NULL;
654 cs.ptn[0].card = nChars;
658 for(unsigned int k = 0; k < nChars;){
659 for(j = k; ++k < nChars && cs.rep[k] == cs.rep[j];);
664 for(j = 0; j < nChars; ++j){
  /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 42 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,
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);
apple_int.h 154 virtual FX_BOOL DrawDeviceText(int nChars, const FXTEXT_CHARPOS* pCharPos, CFX_Font* pFont,
163 FX_BOOL CG_DrawGlypRun(int nChars,
fx_quartz_device.cpp 802 FX_BOOL CFX_QuartzDeviceDriver::CG_DrawGlypRun(int nChars,
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++ ) {
    [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/chromium_org/chrome/test/android/javatests/src/org/chromium/chrome/test/util/
TranslateUtil.java 48 float nChars = text.getLayout().getLineVisibleEnd(0);
51 float sizePerChar = text.getLayout().getLineWidth(0) / nChars;
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_text.cpp 524 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,
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,
601 CharPosList.Load(nChars, pCharCodes, pCharPos, pFont, font_size);
621 int nChars = pFont->CountChar(str, str.GetLength());
622 if (nChars == 0) {
    [all...]
  /external/pdfium/core/include/fpdfapi/
fpdf_render.h 225 static FX_BOOL DrawTextPath(CFX_RenderDevice* pDevice, int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pCharPos,
231 static FX_BOOL DrawNormalText(CFX_RenderDevice* pDevice, int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pCharPos,
235 static FX_BOOL DrawType3Text(CFX_RenderDevice* pDevice, int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pCharPos,
fpdf_pageobj.h 570 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)
585 nChars = m_nChars;
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page.cpp 286 void CPDF_TextObject::SetText(int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pKernings)
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)
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/fxge/ge/
fx_ge_text.cpp 15 FX_RECT FXGE_GetGlyphsBBox(FXTEXT_GLYPHPOS* pGlyphAndPos, int nChars, int anti_alias, FX_FLOAT retinaScaleX, FX_FLOAT retinaScaleY)
19 for (int iChar = 0; iChar < nChars; iChar ++) {
56 static void _AdjustGlyphSpace(FXTEXT_GLYPHPOS* pGlyphAndPos, int nChars)
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,
164 if (m_pDeviceDriver->DrawDeviceText(nChars, pCharPos, pFont, pCache, pText2Device, font_size, fill_color, alpha_flag, pIccTransform)) {
179 if (m_pDeviceDriver->DrawDeviceText(nChars, pCharPos, pFont, pCache, pText2Device, font_size, fill_color, alpha_flag, pIccTransform)) {
    [all...]
fx_ge_linux.cpp 21 FX_BOOL CFX_AggDeviceDriver::DrawDeviceText(int nChars, const FXTEXT_CHARPOS* pCharPos, CFX_Font* pFont,
  /external/chromium_org/third_party/icu/source/test/letest/
FontObject.h 193 le_uint32 unicodesToGlyphs(LEUnicode *chars, le_uint32 nChars, LEGlyphID *glyphs,
  /external/chromium_org/third_party/icu/source/test/perf/leperf/
FontObject.h 193 le_uint32 unicodesToGlyphs(LEUnicode *chars, le_uint32 nChars, LEGlyphID *glyphs,
  /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 437 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,
697 FX_BOOL DrawText(int nChars, const FXTEXT_CHARPOS* pCharPos, CFX_Font* pFont, CFX_FontCache* pCache,
fx_font.h 416 FX_RECT FXGE_GetGlyphsBBox(FXTEXT_GLYPHPOS* pGlyphAndPos, int nChars, int anti_alias, FX_FLOAT retinaScaleX = 1.0f, FX_FLOAT retinaScaleY = 1.0f);
  /external/pdfium/core/src/fxge/agg/include/
fx_agg_driver.h 92 virtual FX_BOOL DrawDeviceText(int nChars, const FXTEXT_CHARPOS* pCharPos, CFX_Font* pFont,
  /external/pdfium/core/src/fxge/win32/
fx_win32_print.cpp 420 FX_BOOL CPSPrinterDriver::DrawDeviceText(int nChars, const FXTEXT_CHARPOS* pCharPos, CFX_Font* pFont,
424 return m_PSRenderer.DrawText(nChars, pCharPos, pFont, pCache, pObject2Device, font_size, color, alpha_flag, pIccTransform);
win32_int.h 224 virtual FX_BOOL DrawDeviceText(int nChars, const FXTEXT_CHARPOS* pCharPos, CFX_Font* pFont,
  /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);

Completed in 623 milliseconds

1 2