OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:glyphIndex
(Results
1 - 11
of
11
) sorted by null
/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);
/external/webkit/Source/WebCore/platform/graphics/chromium/
UniscribeHelper.cpp
420
size_t
glyphIndex
= shaping.m_logs[localOffset];
421
if (
glyphIndex
>= shaping.m_glyphs.size()) {
429
return shaping.m_glyphs[
glyphIndex
];
[
all
...]
FontLinux.cpp
259
for (int
glyphIndex
= 0; static_cast<unsigned>(
glyphIndex
) < controller.length(); ++
glyphIndex
) {
260
int advance = truncateFixedPointToInteger(controller.advances()[
glyphIndex
]);
261
int nextX = static_cast<int>(controller.xPositions()[
glyphIndex
]) + advance / 2;
263
return
glyphIndex
;
298
const int
glyphIndex
= glyphIndexForXPositionInScriptRun(controller, targetX);
312
if (log[j] >=
glyphIndex
)
FontChromiumWin.cpp
395
int
glyphIndex
= 0; // The starting glyph of the current chunk.
402
while (
glyphIndex
< numGlyphs) {
404
int curLen = std::min(kMaxBufferLength, numGlyphs -
glyphIndex
);
409
for (int i = 0; i < curLen; ++i, ++
glyphIndex
) {
410
glyphs[i] = glyphBuffer.glyphAt(from +
glyphIndex
);
411
horizontalOffset += glyphBuffer.advanceAt(from +
glyphIndex
);
414
currentWidth += glyphBuffer.advanceAt(from +
glyphIndex
);
/external/webkit/Source/WebCore/platform/graphics/android/
FontAndroid.cpp
[
all
...]
/external/skia/src/ports/
SkFontHost_FreeType.cpp
388
FT_UInt
glyphIndex
;
389
for (SkUnichar charCode = FT_Get_First_Char(face, &
glyphIndex
);
390
glyphIndex
!= 0;
391
charCode = FT_Get_Next_Char(face, charCode, &
glyphIndex
)) {
393
((*glyphToUnicode)[
glyphIndex
] == 0 || preferredMap)) {
394
(*glyphToUnicode)[
glyphIndex
] = charCode;
835
FT_UInt
glyphIndex
;
836
SkUnichar charCode = FT_Get_First_Char( fFace, &
glyphIndex
);
838
while (
glyphIndex
!= 0) {
839
if (
glyphIndex
== glyph)
[
all
...]
Completed in 129 milliseconds