Searched refs:charIndices (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLEGlyphStorage.h195 * @param charIndices - the destiniation character index array
200 void getCharIndices(le_int32 charIndices[], LEErrorCode &success) const;
207 * @param charIndices - the destiniation character index array
213 void getCharIndices(le_int32 charIndices[], le_int32 indexBase, LEErrorCode &success) const;
H A DLEGlyphStorage.cpp89 // testing for pre-existing glyph and charIndices arrays good enough?
121 // Initialize the charIndices array
194 void LEGlyphStorage::getCharIndices(le_int32 charIndices[], le_int32 indexBase, LEErrorCode &success) const argument
202 if (charIndices == NULL) {
213 charIndices[i] = fCharIndices[i] + indexBase;
217 void LEGlyphStorage::getCharIndices(le_int32 charIndices[], LEErrorCode &success) const argument
223 if (charIndices == NULL) {
233 LE_ARRAY_COPY(charIndices, fCharIndices, fGlyphCount);
H A DLayoutEngine.h440 * @param charIndices - the destiniation character index array
445 void getCharIndices(le_int32 charIndices[], LEErrorCode &success) const;
452 * @param charIndices - the destiniation character index array
458 void getCharIndices(le_int32 charIndices[], le_int32 indexBase, LEErrorCode &success) const;
H A DLayoutEngine.cpp218 void LayoutEngine::getCharIndices(le_int32 charIndices[], le_int32 indexBase, LEErrorCode &success) const argument
220 fGlyphStorage->getCharIndices(charIndices, indexBase, success);
223 void LayoutEngine::getCharIndices(le_int32 charIndices[], LEErrorCode &success) const argument
225 fGlyphStorage->getCharIndices(charIndices, success);
/openjdk7/jdk/src/share/classes/sun/font/
H A DStandardGlyphVector.java142 private int[] charIndices; // only if interesting field in class:StandardGlyphVector
143 private int flags; // indicates whether positions, charIndices is interesting
227 this.charIndices = indices;
340 if (charIndices == null) {
346 return charIndices[ix];
356 if (charIndices == null) {
369 result[i] = charIndices[i + start];
489 if (charIndices != null && glyphs.length > 1) {
493 int rtlix = charIndices.length; // rtl index
494 for (int i = 0; i < charIndices
[all...]

Completed in 39 milliseconds