HomeSort by relevance Sort by last modified time
    Searched refs:glyphIndex (Results 1 - 14 of 14) sorted by null

  /frameworks/base/awt/java/awt/font/
GlyphVector.java 154 * @param glyphIndex
157 * the new position of the glyph at the specified glyphIndex.
159 public abstract void setGlyphPosition(int glyphIndex, Point2D newPos);
164 * @param glyphIndex
168 public abstract Point2D getGlyphPosition(int glyphIndex);
174 * @param glyphIndex
179 public abstract void setGlyphTransform(int glyphIndex, AffineTransform trans);
184 * @param glyphIndex
188 public abstract AffineTransform getGlyphTransform(int glyphIndex);
204 * @param glyphIndex
    [all...]
  /external/icu4c/layout/
LEGlyphStorage.h 208 * @param glyphIndex - the index of the glyph
217 void getGlyphPosition(le_int32 glyphIndex, float &x, float &y, LEErrorCode &success) const;
269 * @param glyphIndex the index into the glyph array
276 LEGlyphID getGlyphID(le_int32 glyphIndex, LEErrorCode &success) const;
281 * @param glyphIndex the index into the glyph array
288 le_int32 getCharIndex(le_int32 glyphIndex, LEErrorCode &success) const;
294 * @param glyphIndex the index into the glyph array
301 le_uint32 getAuxData(le_int32 glyphIndex, LEErrorCode &success) const;
307 * @param glyphIndex the index into the glyph array
313 inline LEGlyphID &operator[](le_int32 glyphIndex) const
    [all...]
LEGlyphStorage.cpp 254 LEGlyphID LEGlyphStorage::getGlyphID(le_int32 glyphIndex, LEErrorCode &success) const
265 if (glyphIndex < 0 || glyphIndex >= fGlyphCount) {
270 return fGlyphs[glyphIndex];
273 void LEGlyphStorage::setGlyphID(le_int32 glyphIndex, LEGlyphID glyphID, LEErrorCode &success)
284 if (glyphIndex < 0 || glyphIndex >= fGlyphCount) {
289 fGlyphs[glyphIndex] = glyphID;
292 le_int32 LEGlyphStorage::getCharIndex(le_int32 glyphIndex, LEErrorCode &success) const
303 if (glyphIndex < 0 || glyphIndex >= fGlyphCount)
    [all...]
loengine.cpp 136 le_int32 glyphIndex,
148 le->getGlyphPosition(glyphIndex, *x, *y, *success);
loengine.h 193 * @param glyphIndex - the index of the glyph
204 le_int32 glyphIndex,
LayoutEngine.h 434 * @param glyphIndex - the index of the glyph
443 void getGlyphPosition(le_int32 glyphIndex, float &x, float &y, LEErrorCode &success) const;
LayoutEngine.cpp 187 void LayoutEngine::getGlyphPosition(le_int32 glyphIndex, float &x, float &y, LEErrorCode &success) const
189 fGlyphStorage->getGlyphPosition(glyphIndex, x, y, success);
  /frameworks/base/awt/org/apache/harmony/awt/gl/font/
CommonGlyphVector.java 318 public void setGlyphPosition(int glyphIndex, Point2D newPos) {
319 if ((glyphIndex > vector.length) || (glyphIndex < 0)) {
320 // awt.43=glyphIndex is out of vector's limits
325 int index = glyphIndex << 1;
341 public Point2D getGlyphPosition(int glyphIndex) {
342 if ((glyphIndex > vector.length) || (glyphIndex < 0)) {
343 // awt.43=glyphIndex is out of vector's limits
346 int index = glyphIndex << 1
    [all...]
AndroidGlyphVector.java 128 public int getGlyphCode(int glyphIndex) {
129 return charVector[glyphIndex];
139 public GlyphJustificationInfo getGlyphJustificationInfo(int glyphIndex) {
144 public Shape getGlyphLogicalBounds(int glyphIndex) {
149 public GlyphMetrics getGlyphMetrics(int glyphIndex) {
153 public Path getAndroidGlyphOutline(int glyphIndex) {
157 tmp[0] = charVector[glyphIndex];
163 public Shape getGlyphOutline(int glyphIndex) {
168 public Point2D getGlyphPosition(int glyphIndex) {
179 public AffineTransform getGlyphTransform(int glyphIndex) {
    [all...]
TextRunSegmentImpl.java 350 int glyphIndex = 0;
353 glyphIndex = getChar2Glyph()[i];
354 result.append(getGlyphVector().getGlyphVisualBounds(glyphIndex), false);
378 int glyphIndex = getChar2Glyph()[index];
379 result = (float) getGlyphVector().getGlyphPosition(glyphIndex).getX();
    [all...]
  /external/webkit/WebCore/platform/graphics/chromium/
FontLinux.cpp 533 int glyphIndex;
535 for (glyphIndex = walker.length() - 1; glyphIndex >= 0; --glyphIndex) {
536 if (x < truncateFixedPointToInteger(advances[glyphIndex]))
538 x -= truncateFixedPointToInteger(advances[glyphIndex]);
541 for (glyphIndex = 0; glyphIndex < walker.length(); ++glyphIndex) {
542 if (x < truncateFixedPointToInteger(advances[glyphIndex]))
    [all...]
UniscribeHelper.cpp 448 size_t glyphIndex = shaping.m_logs[localOffset];
449 if (glyphIndex >= shaping.m_glyphs.size()) {
457 return shaping.m_glyphs[glyphIndex];
    [all...]
FontChromiumWin.cpp 391 int glyphIndex = 0; // The starting glyph of the current chunk.
393 while (glyphIndex < numGlyphs) {
395 int curLen = std::min(kMaxBufferLength, numGlyphs - glyphIndex);
400 for (int i = 0; i < curLen; ++i, ++glyphIndex) {
401 glyphs[i] = glyphBuffer.glyphAt(from + glyphIndex);
402 advances[i] = static_cast<int>(glyphBuffer.advanceAt(from + glyphIndex));
  /external/skia/src/ports/
SkFontHost_FreeType.cpp 484 FT_UInt glyphIndex;
485 SkUnichar charCode = FT_Get_First_Char( fFace, &glyphIndex );
487 while (glyphIndex != 0) {
488 if (glyphIndex == glyph) {
491 charCode = FT_Get_Next_Char( fFace, charCode, &glyphIndex );
    [all...]

Completed in 190 milliseconds