Searched refs:charIndex (Results 1 - 17 of 17) sorted by relevance

/external/proguard/src/proguard/classfile/constant/
H A DUtf8Constant.java254 int charIndex = 0;
267 chars[charIndex++] =
279 throw new UnsupportedEncodingException("Missing UTF-8 bytes after initial byte [0x"+Integer.toHexString(b)+"] in string ["+new String(chars, 0, charIndex)+"]");
283 return new String(chars, 0, charIndex);
/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.h398 * @param charIndex the new char index
403 void setCharIndex(le_int32 glyphIndex, le_int32 charIndex, LEErrorCode &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);
H A DKhmerReordering.cpp153 void writeChar(LEUnicode ch, le_uint32 charIndex, FeatureMask charFeatures) argument
159 fGlyphStorage.setCharIndex(fOutIndex, charIndex, success);
H A DLEGlyphStorage.cpp311 void LEGlyphStorage::setCharIndex(le_int32 glyphIndex, le_int32 charIndex, LEErrorCode &success) argument
327 fCharIndices[glyphIndex] = charIndex;
H A DTibetanReordering.cpp155 void writeChar(LEUnicode ch, le_uint32 charIndex, FeatureMask featureMask) argument
161 fGlyphStorage.setCharIndex(fOutIndex, charIndex, success);
/external/icu4c/layoutex/
H A DParagraphLayout.cpp979 le_int32 ParagraphLayout::previousBreak(le_int32 charIndex) argument
983 while (charIndex < fCharCount &&
984 (u_isWhitespace(fChars[charIndex]) ||
985 u_iscntrl(fChars[charIndex]))) {
986 charIndex += 1;
1003 return fBreakIterator->preceding(charIndex + 1);
1132 le_int32 ParagraphLayout::getCharRun(le_int32 charIndex) argument
1134 if (charIndex < 0 || charIndex > fCharCount) {
1144 while (charIndex >
[all...]
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DFontChromiumWin.cpp552 int charIndex = state.xToCharacter(x); local
556 if (charIndex < 0)
557 charIndex = 0;
558 return charIndex;
/external/icu4c/common/unicode/
H A Dubidi.h1293 * @param charIndex is the index of a character within the text, in the
1304 * <code>charIndex</code>.
1320 ubidi_getParagraph(const UBiDi *pBiDi, int32_t charIndex, int32_t *pParaStart,
1361 * @param charIndex the index of a character. It must be in the range
1364 * @return The level for the character at charIndex (0 if charIndex is not
1372 ubidi_getLevelAt(const UBiDi *pBiDi, int32_t charIndex);
1816 * <li>maximum value of the <code>charIndex</code> argument of
1818 * <li>maximum value of the <code>charIndex</code> argument of
H A Duset.h807 * @param charIndex an index from 0..size()-1 to obtain the char for
812 uset_charAt(const USet* set, int32_t charIndex);
/external/icu4c/layoutex/layout/
H A DParagraphLayout.h588 le_int32 getCharRun(le_int32 charIndex);
592 le_int32 previousBreak(le_int32 charIndex);
/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/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.c2172 ubidi_getParagraph(const UBiDi *pBiDi, int32_t charIndex, argument
2182 RETURN_IF_BAD_RANGE(charIndex, 0, pBiDi->length, *pErrorCode, -1);
2184 for(paraIndex=0; charIndex>=pBiDi->paras[paraIndex]; paraIndex++);
/external/webkit/Source/WebCore/accessibility/gtk/
H A DAccessibilityObjectWrapperAtk.cpp2226 static gint webkitAccessibleHypertextGetLinkIndex(AtkHypertext* hypertext, gint charIndex) argument
2238 if (startIndex <= charIndex && charIndex < endIndex)

Completed in 437 milliseconds