Home
last modified time | relevance | path

Searched refs:currentChar (Results 1 – 12 of 12) sorted by relevance

/external/deqp-deps/glslang/glslang/MachineIndependent/
DScan.h59 … lengths(L), currentSource(0), currentChar(0), stringBias(b), finale(f), singleLogical(single), in numSources()
109 size_t charToRead = currentChar; in peek()
129 if (currentChar > 0) { in unget()
130 --currentChar; in unget()
137 size_t chIndex = currentChar; in unget()
144 logicalSourceLoc.column = (int)(currentChar - chIndex); in unget()
145 loc[currentSource].column = (int)(currentChar - chIndex); in unget()
153 currentChar = 0; in unget()
155 currentChar = lengths[currentSource] - 1; in unget()
231 ++currentChar; in advance()
[all …]
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/indic/
DIndicInputMethodImpl.java185 char currentChar = getMappedChar(keyChar); in handleKeyTyped() local
191 currentChar = ZWJ; in handleKeyTyped()
194 currentChar = ZWNJ; in handleKeyTyped()
200 if (currentChar == INVALID_CHAR) { in handleKeyTyped()
205 if (currentChar == BACKSPACE) { in handleKeyTyped()
224 text[totalChars++] = currentChar; in handleKeyTyped()
230 int nuktaIndex = nuktaIndex(currentChar); in handleKeyTyped()
234 text[totalChars++] = currentChar; in handleKeyTyped()
237 if (currentChar >= SUBSTITUTION_BASE) { in handleKeyTyped()
238 char[] sub = SUBSTITUTION_TABLE[currentChar - SUBSTITUTION_BASE]; in handleKeyTyped()
[all …]
/external/pdfium/fpdfsdk/
Dfpdfedittext.cpp256 uint32_t currentChar = FXFT_Get_First_Char(pFont->GetFace(), &glyphIndex); in LoadSimpleFont() local
257 if (currentChar > kMaxSimpleFontChar || glyphIndex == 0) in LoadSimpleFont()
259 fontDict->SetNewFor<CPDF_Number>("FirstChar", static_cast<int>(currentChar)); in LoadSimpleFont()
264 FXFT_Get_Next_Char(pFont->GetFace(), currentChar, &glyphIndex); in LoadSimpleFont()
268 for (uint32_t i = currentChar + 1; i < nextChar; i++) in LoadSimpleFont()
270 currentChar = nextChar; in LoadSimpleFont()
272 fontDict->SetNewFor<CPDF_Number>("LastChar", static_cast<int>(currentChar)); in LoadSimpleFont()
323 uint32_t currentChar = FXFT_Get_First_Char(pFont->GetFace(), &glyphIndex); in LoadCompositeFont() local
325 if (glyphIndex == 0 || currentChar > kMaxUnicode) in LoadCompositeFont()
331 if (currentChar > kMaxUnicode) in LoadCompositeFont()
[all …]
/external/jsilver/src/com/google/streamhtmlparser/impl/
DParserStateTable.java101 InternalState getNextState(InternalState from, int currentChar) { in getNextState() argument
103 if (from == null || currentChar < 0) in getNextState()
112 if (currentChar < MAX_CHARS) { in getNextState()
113 result = stateTable[id][currentChar]; in getNextState()
/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
DMessageNanoPrinter.java213 char currentChar = identifier.charAt(i); in deCamelCaseify() local
215 out.append(Character.toLowerCase(currentChar)); in deCamelCaseify()
216 } else if (Character.isUpperCase(currentChar)) { in deCamelCaseify()
217 out.append('_').append(Character.toLowerCase(currentChar)); in deCamelCaseify()
219 out.append(currentChar); in deCamelCaseify()
/external/apache-xml/src/main/java/org/apache/xml/utils/
DSystemIDResolver.java190 char currentChar = buf.charAt(i); in replaceChars() local
192 if (currentChar == ' ') in replaceChars()
200 else if (currentChar == '\\') in replaceChars()
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
DSystemIDResolver.java197 char currentChar = buf.charAt(i); in replaceChars() local
199 if (currentChar == ' ') in replaceChars()
207 else if (currentChar == '\\') in replaceChars()
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/bzip2/
DBZip2CompressorOutputStream.java311 private int currentChar = -1; field in BZip2CompressorOutputStream
420 final int currentCharShadow = this.currentChar; in writeRun()
489 this.currentChar = -1; in finish()
649 if (this.currentChar != -1) { in write0()
651 if (this.currentChar == b) { in write0()
654 this.currentChar = -1; in write0()
661 this.currentChar = b; in write0()
664 this.currentChar = b & 0xff; in write0()
/external/cldr/tools/java/org/unicode/cldr/posix/
DPOSIX_LCCollate.java140 String currentChar = (String) o; in write() local
141 out.println(showLine(col, currentChar)); in write()
/external/skia/src/ports/
DSkFontHost_win.cpp2003 SkUnichar currentChar = 0; in onCharsToGlyphs() local
2005 currentChar = SkUTF8_NextUnichar(&currentUtf8); in onCharsToGlyphs()
2011 while (runLength < glyphsLeft && currentChar <= 0xFFFF) { in onCharsToGlyphs()
2012 scratch[runLength] = static_cast<WCHAR>(currentChar); in onCharsToGlyphs()
2015 currentChar = SkUTF8_NextUnichar(&currentUtf8); in onCharsToGlyphs()
2024 while (glyphIndex < glyphCount && currentChar > 0xFFFF) { in onCharsToGlyphs()
2025 SkUTF::ToUTF16(currentChar, reinterpret_cast<uint16_t*>(scratch)); in onCharsToGlyphs()
2029 currentChar = SkUTF8_NextUnichar(&currentUtf8); in onCharsToGlyphs()
/external/skqp/src/ports/
DSkFontHost_win.cpp2004 SkUnichar currentChar = 0; in onCharsToGlyphs() local
2006 currentChar = SkUTF8_NextUnichar(&currentUtf8); in onCharsToGlyphs()
2012 while (runLength < glyphsLeft && currentChar <= 0xFFFF) { in onCharsToGlyphs()
2013 scratch[runLength] = static_cast<WCHAR>(currentChar); in onCharsToGlyphs()
2016 currentChar = SkUTF8_NextUnichar(&currentUtf8); in onCharsToGlyphs()
2025 while (glyphIndex < glyphCount && currentChar > 0xFFFF) { in onCharsToGlyphs()
2026 SkUTF::ToUTF16(currentChar, reinterpret_cast<uint16_t*>(scratch)); in onCharsToGlyphs()
2030 currentChar = SkUTF8_NextUnichar(&currentUtf8); in onCharsToGlyphs()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowPathParser.java134 char currentChar = s.charAt(currentIndex); in extract() local
135 switch (currentChar) { in extract()