/external/proguard/src/proguard/classfile/constant/ |
D | Utf8Constant.java | 254 int charIndex = 0; in getStringRepresentation() local 267 chars[charIndex++] = in getStringRepresentation() 279 …fter initial byte [0x"+Integer.toHexString(b)+"] in string ["+new String(chars, 0, charIndex)+"]"); in getStringRepresentation() 283 return new String(chars, 0, charIndex); in getStringRepresentation()
|
/external/icu4c/test/letest/ |
D | cletest.c | 636 le_int32 charIndex = 0, lineNumber = 1; in GlyphToCharTest() local 678 if (ix != charIndex) { in GlyphToCharTest() 679 if (ix != charIndex - 1) { in GlyphToCharTest() 681 i, lineNumber, charIndex, ix); in GlyphToCharTest() 685 charIndex += 1; in GlyphToCharTest() 710 if (minIndex != charIndex) { in GlyphToCharTest() 712 run, lineNumber, charIndex, minIndex); in GlyphToCharTest() 716 charIndex = maxIndex + 1; in GlyphToCharTest()
|
D | letest.cpp | 872 le_int32 charIndex = 0, lineNumber = 1; in GlyphToCharTest() local 908 if (ix != charIndex) { in GlyphToCharTest() 909 if (ix != charIndex - 1) { in GlyphToCharTest() 911 i, lineNumber, charIndex, ix); in GlyphToCharTest() 915 charIndex += 1; in GlyphToCharTest() 940 if (minIndex != charIndex) { in GlyphToCharTest() 942 run, lineNumber, charIndex, minIndex); in GlyphToCharTest() 946 charIndex = maxIndex + 1; in GlyphToCharTest()
|
/external/icu4c/layout/ |
D | MPreFixups.cpp | 89 le_int32 charIndex = glyphStorage.getCharIndex(mpreLimit + i, success); in apply() local 92 glyphStorage.setCharIndex(mpreIndex + i, charIndex, success); in apply()
|
D | IndicReordering.cpp | 206 void writeChar(LEUnicode ch, le_uint32 charIndex, FeatureMask charFeatures) in writeChar() argument 212 fGlyphStorage.setCharIndex(fOutIndex, charIndex, success); in writeChar() 218 void setFeatures ( le_uint32 charIndex, FeatureMask charFeatures) in setFeatures() argument 222 fGlyphStorage.setAuxData( charIndex, charFeatures, success ); in setFeatures() 226 FeatureMask getFeatures ( le_uint32 charIndex ) in getFeatures() argument 229 return fGlyphStorage.getAuxData(charIndex,success); in getFeatures() 292 void insertCharacter( LEUnicode ch, le_int32 toPosition, le_int32 charIndex, le_uint32 auxData ) { in insertCharacter() argument 304 fGlyphStorage.setCharIndex(toPosition,charIndex,success); in insertCharacter()
|
D | LEGlyphStorage.h | 403 void setCharIndex(le_int32 glyphIndex, le_int32 charIndex, LEErrorCode &success);
|
D | KhmerReordering.cpp | 153 void writeChar(LEUnicode ch, le_uint32 charIndex, FeatureMask charFeatures) in writeChar() argument 159 fGlyphStorage.setCharIndex(fOutIndex, charIndex, success); in writeChar()
|
D | TibetanReordering.cpp | 155 void writeChar(LEUnicode ch, le_uint32 charIndex, FeatureMask featureMask) in writeChar() argument 161 fGlyphStorage.setCharIndex(fOutIndex, charIndex, success); in writeChar()
|
D | LEGlyphStorage.cpp | 311 void LEGlyphStorage::setCharIndex(le_int32 glyphIndex, le_int32 charIndex, LEErrorCode &success) in setCharIndex() argument 327 fCharIndices[glyphIndex] = charIndex; in setCharIndex()
|
/external/icu4c/layoutex/ |
D | ParagraphLayout.cpp | 979 le_int32 ParagraphLayout::previousBreak(le_int32 charIndex) in previousBreak() argument 983 while (charIndex < fCharCount && in previousBreak() 984 (u_isWhitespace(fChars[charIndex]) || in previousBreak() 985 u_iscntrl(fChars[charIndex]))) { in previousBreak() 986 charIndex += 1; in previousBreak() 1003 return fBreakIterator->preceding(charIndex + 1); in previousBreak() 1132 le_int32 ParagraphLayout::getCharRun(le_int32 charIndex) in getCharRun() argument 1134 if (charIndex < 0 || charIndex > fCharCount) { in getCharRun() 1144 while (charIndex >= fStyleRunLimits[run]) { in getCharRun()
|
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
D | FontChromiumWin.cpp | 552 int charIndex = state.xToCharacter(x); in offsetForPositionForComplexText() local 556 if (charIndex < 0) in offsetForPositionForComplexText() 557 charIndex = 0; in offsetForPositionForComplexText() 558 return charIndex; in offsetForPositionForComplexText()
|
/external/icu4c/common/unicode/ |
D | ubidi.h | 1410 ubidi_getParagraph(const UBiDi *pBiDi, int32_t charIndex, int32_t *pParaStart, 1462 ubidi_getLevelAt(const UBiDi *pBiDi, int32_t charIndex);
|
D | uset.h | 812 uset_charAt(const USet* set, int32_t charIndex);
|
/external/icu4c/layoutex/layout/ |
D | ParagraphLayout.h | 588 le_int32 getCharRun(le_int32 charIndex); 592 le_int32 previousBreak(le_int32 charIndex);
|
/external/icu4c/common/ |
D | ubidiln.c | 249 ubidi_getLevelAt(const UBiDi *pBiDi, int32_t charIndex) { in ubidi_getLevelAt() argument 251 if(!IS_VALID_PARA_OR_LINE(pBiDi) || charIndex<0 || pBiDi->length<=charIndex) { in ubidi_getLevelAt() 253 } else if(pBiDi->direction!=UBIDI_MIXED || charIndex>=pBiDi->trailingWSStart) { in ubidi_getLevelAt() 254 return GET_PARALEVEL(pBiDi, charIndex); in ubidi_getLevelAt() 256 return pBiDi->levels[charIndex]; in ubidi_getLevelAt()
|
D | ubidi.c | 2303 ubidi_getParagraph(const UBiDi *pBiDi, int32_t charIndex, in ubidi_getParagraph() argument 2313 RETURN_IF_BAD_RANGE(charIndex, 0, pBiDi->length, *pErrorCode, -1); in ubidi_getParagraph() 2315 for(paraIndex=0; charIndex>=pBiDi->paras[paraIndex]; paraIndex++); in ubidi_getParagraph()
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
D | Lexer.as | 146 …Token.createFromStream(input, state.type, state.channel, state.tokenStartCharIndex, charIndex - 1); 217 public function get charIndex():int { property in org.antlr.runtime.Lexer 228 return input.substring(state.tokenStartCharIndex, charIndex-1);
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/ |
D | ActionScript.stg | 699 var <label>Start:int = charIndex; 701 …put, TokenConstants.INVALID_TOKEN_TYPE, TokenConstants.DEFAULT_CHANNEL, <label>Start, charIndex-1); 763 var <label>Start<elementIndex>:int = charIndex; 765 …tants.INVALID_TOKEN_TYPE, TokenConstants.DEFAULT_CHANNEL, <label>Start<elementIndex>, charIndex-1); 780 var <label>Start<elementIndex>:int = charIndex; 782 …ateFromStream(input, EOF, TokenConstants.DEFAULT_CHANNEL, <label>Start<elementIndex>, charIndex-1); 1258 lexerRulePropertyRef_stop(scope,attr) ::= "(charIndex-1)"
|
/external/webkit/Source/WebCore/accessibility/gtk/ |
D | AccessibilityObjectWrapperAtk.cpp | 2226 static gint webkitAccessibleHypertextGetLinkIndex(AtkHypertext* hypertext, gint charIndex) in webkitAccessibleHypertextGetLinkIndex() argument 2238 if (startIndex <= charIndex && charIndex < endIndex) in webkitAccessibleHypertextGetLinkIndex()
|
/external/chromium/chrome/browser/ui/cocoa/infobars/ |
D | infobar_controller.mm | 135 atIndex:(NSUInteger)charIndex {
|
/external/chromium/chrome/browser/ui/cocoa/ |
D | about_window_controller.mm | 622 atIndex:(NSUInteger)charIndex {
|