Home
last modified time | relevance | path

Searched refs:aGlyph (Results 1 – 7 of 7) sorted by relevance

/trunk/main/sdext/source/pdfimport/tree/
H A Dpdfiprocessor.cxx410 CharGlyph& aGlyph, in processGlyph() argument
420 drawCharGlyphs( aGlyph.getGlyph(), in processGlyph()
421 aGlyph.getRect(), in processGlyph()
422 aGlyph.getFontMatrix(), in processGlyph()
423 aGlyph.getGC(), in processGlyph()
424 aGlyph.getCurElement(), in processGlyph()
431 drawCharGlyphs( aGlyph.getGlyph(), in processGlyph()
432 aGlyph.getRect(), in processGlyph()
433 aGlyph.getFontMatrix(), in processGlyph()
434 aGlyph.getGC(), in processGlyph()
[all …]
/trunk/main/vcl/unx/generic/printergfx/
H A Dglyphset.cxx150 char_map_t::const_iterator aGlyph = (*aGlyphSet).find (nChar); in LookupCharID() local
151 if (aGlyph != (*aGlyphSet).end()) in LookupCharID()
155 *nOutGlyphID = (*aGlyph).second; in LookupCharID()
181 glyph_map_t::const_iterator aGlyph = (*aGlyphSet).find (nGlyph); in LookupGlyphID() local
182 if (aGlyph != (*aGlyphSet).end()) in LookupGlyphID()
186 *nOutGlyphID = (*aGlyph).second; in LookupGlyphID()
901 glyph_map_t::const_iterator aGlyph; in PSUploadFont() local
903 for (aGlyph = (*aGlyphSet).begin(); aGlyph != (*aGlyphSet).end(); aGlyph++) in PSUploadFont()
905 pTTGlyphMapping [n] = (*aGlyph).first; in PSUploadFont()
906 pEncoding [n] = (*aGlyph).second; in PSUploadFont()
/trunk/main/canvas/source/cairo/
H A Dcairo_textlayout.cxx492 cairo_glyph_t aGlyph; in draw() local
493 aGlyph.index = systemGlyph.index; in draw()
497 aGlyph.index = cairo::ucs4toindex((unsigned int) aGlyph.index, rSysFontData.hFont); in draw()
503 aGlyph.index = cairo::ucs4toindex((unsigned int) aGlyph.index, aFontName); in draw()
505 aGlyph.x = systemGlyph.x; in draw()
506 aGlyph.y = systemGlyph.y; in draw()
507 cairo_glyphs.push_back(aGlyph); in draw()
/trunk/main/vcl/source/glyphs/
H A Dgraphite_layout.cxx405 gr::GlyphInfo aGlyph = *(iGlyphs.first + j); in appendCluster() local
419 aBounds.first = std::min(aGlyph.origin(), aBounds.first); in appendCluster()
420 if ((signed)aGlyph.firstChar() < rArgs.mnEndCharPos && in appendCluster()
421 (signed)aGlyph.firstChar() >= rArgs.mnMinCharPos) in appendCluster()
423 rCharDxs[aGlyph.firstChar()-rArgs.mnMinCharPos] = nNextOrigin; in appendCluster()
425 if ((signed)aGlyph.attachedClusterBase()->logicalIndex() == j) in appendCluster()
427 …append(rSeg, rArgs, aGlyph, fNextOrigin, fScaling, rChar2Base, rGlyph2Char, rCharDxs, rDXOffset, b… in appendCluster()
/trunk/main/vcl/unx/generic/gdi/
H A Dsalgdi3.cxx481 cairo_glyph_t aGlyph; in DrawCairoAAFontString() local
482 aGlyph.index = aGlyphId & GF_IDXMASK; in DrawCairoAAFontString()
483 aGlyph.x = aPos.X(); in DrawCairoAAFontString()
484 aGlyph.y = aPos.Y(); in DrawCairoAAFontString()
485 cairo_glyphs.push_back(aGlyph); in DrawCairoAAFontString()
/trunk/main/vcl/source/gdi/
H A Doutdev3.cxx7428 SystemGlyphData aGlyph; in GetSysTextLayoutData() local
7429 aGlyph.index = static_cast<unsigned long> (aGlyphId & GF_IDXMASK); in GetSysTextLayoutData()
7430 aGlyph.x = aPos.X(); in GetSysTextLayoutData()
7431 aGlyph.y = aPos.Y(); in GetSysTextLayoutData()
7433 aGlyph.fallbacklevel = nLevel < MAX_FALLBACK ? nLevel : 0; in GetSysTextLayoutData()
7434 aSysLayoutData.rGlyphData.push_back(aGlyph); in GetSysTextLayoutData()
/trunk/main/filter/source/svg/
H A Dsvgwriter.cxx923 const ::rtl::OUString aGlyph( rText.Copy( nLastPos, nCount ) ); in ImplWriteText() local
930 mrExport.GetDocHandler()->characters( aGlyph ); in ImplWriteText()