Searched defs:charIndex (Results 1 - 15 of 15) sorted by relevance

/external/icu4c/layout/
H A DMPreFixups.cpp89 le_int32 charIndex = glyphStorage.getCharIndex(mpreLimit + i, success); local
92 glyphStorage.setCharIndex(mpreIndex + i, charIndex, success);
H A DLEGlyphStorage.cpp311 void LEGlyphStorage::setCharIndex(le_int32 glyphIndex, le_int32 charIndex, LEErrorCode &success) argument
327 fCharIndices[glyphIndex] = charIndex;
H A DKhmerReordering.cpp153 void writeChar(LEUnicode ch, le_uint32 charIndex, FeatureMask charFeatures) argument
159 fGlyphStorage.setCharIndex(fOutIndex, charIndex, success);
H A DTibetanReordering.cpp155 void writeChar(LEUnicode ch, le_uint32 charIndex, FeatureMask featureMask) argument
161 fGlyphStorage.setCharIndex(fOutIndex, charIndex, success);
H A DIndicReordering.cpp206 void writeChar(LEUnicode ch, le_uint32 charIndex, FeatureMask charFeatures) argument
212 fGlyphStorage.setCharIndex(fOutIndex, charIndex, success);
218 void setFeatures ( le_uint32 charIndex, FeatureMask charFeatures) argument
222 fGlyphStorage.setAuxData( charIndex, charFeatures, success );
226 FeatureMask getFeatures ( le_uint32 charIndex )
229 return fGlyphStorage.getAuxData(charIndex,success);
292 void insertCharacter( LEUnicode ch, le_int32 toPosition, le_int32 charIndex, le_uint32 auxData ) { argument
304 fGlyphStorage.setCharIndex(toPosition,charIndex,success);
/external/chromium/third_party/icu/source/common/
H A Dubidiln.c249 ubidi_getLevelAt(const UBiDi *pBiDi, int32_t charIndex) { argument
251 if(!IS_VALID_PARA_OR_LINE(pBiDi) || charIndex<0 || pBiDi->length<=charIndex) {
253 } else if(pBiDi->direction!=UBIDI_MIXED || charIndex>=pBiDi->trailingWSStart) {
254 return GET_PARALEVEL(pBiDi, charIndex);
256 return pBiDi->levels[charIndex];
H A Dubidi.c2152 ubidi_getParagraph(const UBiDi *pBiDi, int32_t charIndex, argument
2162 RETURN_IF_BAD_RANGE(charIndex, 0, pBiDi->length, *pErrorCode, -1);
2164 for(paraIndex=0; charIndex>=pBiDi->paras[paraIndex]; paraIndex++);
/external/chromium/third_party/icu/source/test/letest/
H A Dcletest.c636 le_int32 charIndex = 0, lineNumber = 1; local
678 if (ix != charIndex) {
679 if (ix != charIndex - 1) {
681 i, lineNumber, charIndex, ix);
685 charIndex += 1;
694 * is equal to charIndex and then advance charIndex to the maximum.
710 if (minIndex != charIndex) {
712 run, lineNumber, charIndex, minIndex);
716 charIndex
[all...]
H A Dletest.cpp872 le_int32 charIndex = 0, lineNumber = 1; local
908 if (ix != charIndex) {
909 if (ix != charIndex - 1) {
911 i, lineNumber, charIndex, ix);
915 charIndex += 1;
924 * is equal to charIndex and then advance charIndex to the maximum.
940 if (minIndex != charIndex) {
942 run, lineNumber, charIndex, minIndex);
946 charIndex
[all...]
/external/icu4c/common/
H A Dubidiln.c249 ubidi_getLevelAt(const UBiDi *pBiDi, int32_t charIndex) { argument
251 if(!IS_VALID_PARA_OR_LINE(pBiDi) || charIndex<0 || pBiDi->length<=charIndex) {
253 } else if(pBiDi->direction!=UBIDI_MIXED || charIndex>=pBiDi->trailingWSStart) {
254 return GET_PARALEVEL(pBiDi, charIndex);
256 return pBiDi->levels[charIndex];
H A Dubidi.c2148 ubidi_getParagraph(const UBiDi *pBiDi, int32_t charIndex, argument
2158 RETURN_IF_BAD_RANGE(charIndex, 0, pBiDi->length, *pErrorCode, -1);
2160 for(paraIndex=0; charIndex>=pBiDi->paras[paraIndex]; paraIndex++);
/external/icu4c/test/letest/
H A Dcletest.c636 le_int32 charIndex = 0, lineNumber = 1; local
678 if (ix != charIndex) {
679 if (ix != charIndex - 1) {
681 i, lineNumber, charIndex, ix);
685 charIndex += 1;
694 * is equal to charIndex and then advance charIndex to the maximum.
710 if (minIndex != charIndex) {
712 run, lineNumber, charIndex, minIndex);
716 charIndex
[all...]
H A Dletest.cpp872 le_int32 charIndex = 0, lineNumber = 1; local
908 if (ix != charIndex) {
909 if (ix != charIndex - 1) {
911 i, lineNumber, charIndex, ix);
915 charIndex += 1;
924 * is equal to charIndex and then advance charIndex to the maximum.
940 if (minIndex != charIndex) {
942 run, lineNumber, charIndex, minIndex);
946 charIndex
[all...]
/external/webkit/WebCore/platform/graphics/chromium/
H A DFontChromiumWin.cpp518 int charIndex = state.xToCharacter(x); local
522 if (charIndex < 0)
523 charIndex = 0;
524 return charIndex;
/external/icu4c/layoutex/
H A DParagraphLayout.cpp954 le_int32 ParagraphLayout::previousBreak(le_int32 charIndex) argument
958 while (charIndex < fCharCount &&
959 (u_isWhitespace(fChars[charIndex]) ||
960 u_iscntrl(fChars[charIndex]))) {
961 charIndex += 1;
978 return fBreakIterator->preceding(charIndex + 1);
1107 le_int32 ParagraphLayout::getCharRun(le_int32 charIndex) argument
1109 if (charIndex < 0 || charIndex > fCharCount) {
1119 while (charIndex >
[all...]

Completed in 243 milliseconds