Home
last modified time | relevance | path

Searched refs:currentChar (Results 1 – 13 of 13) 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/angle/third_party/vulkan-deps/glslang/src/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/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/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-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-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/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/javassist/src/main/javassist/bytecode/
DDescriptor.java806 public char currentChar() { return desc.charAt(curPos); } in currentChar() method in Descriptor.Iterator
812 char c = currentChar(); in is2byte()
/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()
/external/zstd/lib/dictBuilder/
Dzdict.c289 BYTE currentChar = 0; in ZDICT_analyzePos() local
296 if (b[suffix[id] + mml] != currentChar) { in ZDICT_analyzePos()
302 currentChar = b[ suffix[id] + mml]; in ZDICT_analyzePos()