Home
last modified time | relevance | path

Searched refs:charPos (Results 1 – 12 of 12) sorted by relevance

/external/pdfium/xfa/fxbarcode/oned/
DBC_OneDimWriter.cpp152 FXTEXT_CHARPOS* charPos, in CalcTextInfo() argument
180 charPos[0].m_Origin = CFX_PointF(penX + left, penY + top); in CalcTextInfo()
181 charPos[0].m_GlyphIndex = encoding->GlyphFromCharCode(pCharCode[0]); in CalcTextInfo()
182 charPos[0].m_FontCharWidth = cFont->GetGlyphWidth(charPos[0].m_GlyphIndex); in CalcTextInfo()
184 charPos[0].m_ExtGID = charPos[0].m_GlyphIndex; in CalcTextInfo()
186 penX += (FX_FLOAT)(charPos[0].m_FontCharWidth) * (FX_FLOAT)fontSize / 1000.0f; in CalcTextInfo()
188 charPos[i].m_Origin = CFX_PointF(penX + left, penY + top); in CalcTextInfo()
189 charPos[i].m_GlyphIndex = encoding->GlyphFromCharCode(pCharCode[i]); in CalcTextInfo()
190 charPos[i].m_FontCharWidth = cFont->GetGlyphWidth(charPos[i].m_GlyphIndex); in CalcTextInfo()
192 charPos[i].m_ExtGID = charPos[i].m_GlyphIndex; in CalcTextInfo()
[all …]
DBC_OneDimWriter.h65 FXTEXT_CHARPOS* charPos,
/external/pdfium/core/fxge/skia/
Dfx_skia_device_unittest.cpp38 FXTEXT_CHARPOS charPos[1]; in CommonTest() local
39 charPos[0].m_Origin = CFX_PointF(0, 1); in CommonTest()
40 charPos[0].m_GlyphIndex = 1; in CommonTest()
41 charPos[0].m_FontCharWidth = 4; in CommonTest()
66 driver->DrawDeviceText(SK_ARRAY_COUNT(charPos), charPos, &font, &matrix, in CommonTest()
89 driver->DrawDeviceText(SK_ARRAY_COUNT(charPos), charPos, &font, &matrix2, in CommonTest()
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DRemoteDebugEventSocketListener.cs72 int charPos; field in Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyToken
78 int line, int charPos, string text) { in ProxyToken() argument
83 this.charPos = charPos; in ProxyToken()
117 return charPos;
120 charPos = value;
181 public int charPos = -1; field in Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyTree
185 public ProxyTree(int ID, int type, int line, int charPos, int tokenIndex, string text) { in ProxyTree() argument
189 this.charPos = charPos; in ProxyTree()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DRemoteDebugEventSocketListener.cs76 int charPos; field in Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyToken
83 int line, int charPos, string text ) in ProxyToken() argument
89 this.charPos = charPos; in ProxyToken()
134 return charPos;
138 charPos = value;
217 public int charPos = -1; field in Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyTree
221 public ProxyTree( int ID, int type, int line, int charPos, int tokenIndex, string text ) in ProxyTree() argument
226 this.charPos = charPos; in ProxyTree()
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DRemoteDebugEventSocketListener.java64 int charPos; field in RemoteDebugEventSocketListener.ProxyToken
68 int line, int charPos, String text) in ProxyToken() argument
74 this.charPos = charPos; in ProxyToken()
96 return charPos; in getCharPositionInLine()
99 this.charPos = pos; in setCharPositionInLine()
131 public int charPos = -1; field in RemoteDebugEventSocketListener.ProxyTree
135 public ProxyTree(int ID, int type, int line, int charPos, int tokenIndex, String text) { in ProxyTree() argument
139 this.charPos = charPos; in ProxyTree()
/external/pdfium/core/fpdfapi/render/
Dcpdf_textrenderer.cpp21 const std::vector<FX_FLOAT>& charPos, in DrawTextPath() argument
32 CharPosList.Load(charCodes, charPos, pFont, font_size); in DrawTextPath()
110 const std::vector<FX_FLOAT>& charPos, in DrawNormalText() argument
117 CharPosList.Load(charCodes, charPos, pFont, font_size); in DrawNormalText()
Dcpdf_textrenderer.h38 const std::vector<FX_FLOAT>& charPos,
51 const std::vector<FX_FLOAT>& charPos,
Dcpdf_charposlist.cpp23 const std::vector<FX_FLOAT>& charPos, in Load() argument
60 charpos.m_Origin = CFX_PointF(iChar ? charPos[iChar - 1] : 0, 0); in Load()
Dcpdf_charposlist.h22 const std::vector<FX_FLOAT>& charPos,
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DElemNumber.java1646 int charPos; in int2alphaCount() local
1648 charPos = buf.length - 1; // work backward through buf[] in int2alphaCount()
1701 buf[charPos--] = table[lookupIndex]; // left to right or top to bottom in int2alphaCount()
1705 stringBuf.append(buf, charPos + 1, (buf.length - charPos - 1)); in int2alphaCount()
1744 int charPos; in tradAlphaCount() local
1746 charPos = 0; //start at 0 in tradAlphaCount()
1790 if (buf[charPos - 1] != zeroChar.getChar(0)) in tradAlphaCount()
1791 buf[charPos++] = zeroChar.getChar(0); in tradAlphaCount()
1842 buf[charPos++] = multiplierChar; in tradAlphaCount()
1843 buf[charPos++] = table[lookupIndex]; in tradAlphaCount()
[all …]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
DInterpreter.java87 int charPos = ((CharStream)input).getCharPositionInLine(); in nextToken() local
110 token.setCharPositionInLine(charPos); in nextToken()