Home
last modified time | relevance | path

Searched refs:getChar (Results 1 – 25 of 52) sorted by relevance

123

/external/deqp/executor/
DxeContainerFormatParser.cpp117 int ContainerFormatParser::getChar (int offset) const in getChar() function in xe::ContainerFormatParser
141 int curChar = getChar(m_elementLen); in advance()
167 int nextChar = getChar(m_elementLen); in advance()
205 DE_ASSERT(getChar(0) == '#'); in parseContainerLine()
216 int bufChar = (offset+ndx < m_elementLen) ? getChar(offset+ndx) : 0; in parseContainerLine()
249 if (getChar(offset) != ' ') in parseContainerLine()
256 if (getChar(offset) != ' ') in parseContainerLine()
260 if (getChar(offset) != ' ') in parseContainerLine()
271 const int curChar = offset < m_elementLen ? getChar(offset) : 0; in parseContainerLine()
297 bool isString = getChar(offset) == '"' || getChar(offset) == '\''; in parseContainerValue()
[all …]
DxeXMLParser.cpp98 int Tokenizer::getChar (int offset) const in getChar() function in xe::xml::Tokenizer
131 if (getChar(0) == END_OF_STRING) in advance()
139 int curChar = getChar(m_curTokenLen); in advance()
179 curChar = getChar(0); in advance()
232 if (curChar != getChar(0)) in advance()
250 int prev2 = m_curTokenLen > 5 ? getChar(m_curTokenLen-2) : 0; in advance()
251 int prev1 = m_curTokenLen > 4 ? getChar(m_curTokenLen-1) : 0; in advance()
284 int prevChar = getChar(m_curTokenLen-1); in advance()
334 curChar = getChar(m_curTokenLen); in advance()
DxeContainerFormatParser.hpp101 int getChar (int offset) const;
/external/jsilver/src/com/google/streamhtmlparser/util/
DJavascriptTokenBuffer.java112 HtmlUtils.isJavascriptWhitespace(getChar(-1))) { in appendChar()
152 public char getChar(int position) { in getChar() method in JavascriptTokenBuffer
196 if (HtmlUtils.isJavascriptWhitespace(getChar(-1))) {
200 for (position = end; HtmlUtils.isJavascriptIdentifier(getChar(position));
230 char c = getChar(position);
/external/clang/lib/CodeGen/
DCodeGenTBAA.cpp64 llvm::MDNode *CodeGenTBAA::getChar() { in getChar() function in CodeGenTBAA
100 return getChar(); in getTBAAInfo()
119 return getChar(); in getTBAAInfo()
138 createTBAAScalarType(BTy->getName(Features), getChar()); in getTBAAInfo()
147 getChar()); in getTBAAInfo()
157 return MetadataCache[Ty] = getChar(); in getTBAAInfo()
162 return MetadataCache[Ty] = createTBAAScalarType(OutName, getChar()); in getTBAAInfo()
166 return MetadataCache[Ty] = getChar(); in getTBAAInfo()
209 llvm::MDNode *TBAAInfo = MayAlias ? getChar() : getTBAAInfo(QTy); in CollectFields()
/external/turbine/java/com/google/turbine/zip/
DZip.java129 int nameLength = cd.getChar(cdindex + CENNAM); in next()
130 int extLength = cd.getChar(cdindex + CENEXT); in next()
131 int commentLength = cd.getChar(cdindex + CENCOM); in next()
187 int totalEntries = eocd.getChar(index + ENDTOT); in ZipIterable()
189 int actualCommentSize = eocd.getChar(index + ENDCOM); in ZipIterable()
251 int nameLength = cd.getChar(cdindex + CENNAM); in data()
252 int extLength = cd.getChar(cdindex + CENEXT); in data()
253 int compression = cd.getChar(cdindex + CENHOW); in data()
296 int locExtLength = fc.getChar(LOCEXT); in getBytes()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DCharsetRecog_Unicode.java128 abstract int getChar(byte[] input, int index); in getChar() method in CharsetRecog_Unicode.CharsetRecog_UTF_32
146 if (getChar(input, 0) == 0x0000FEFF) { in match()
151 int ch = getChar(input, i); in match()
183 int getChar(byte[] input, int index) in getChar() method in CharsetRecog_Unicode.CharsetRecog_UTF_32_BE
200 int getChar(byte[] input, int index) in getChar() method in CharsetRecog_Unicode.CharsetRecog_UTF_32_LE
/external/icu/android_icu4j/src/main/java/android/icu/text/
DCharsetRecog_Unicode.java129 abstract int getChar(byte[] input, int index); in getChar() method in CharsetRecog_Unicode.CharsetRecog_UTF_32
147 if (getChar(input, 0) == 0x0000FEFF) { in match()
152 int ch = getChar(input, i); in match()
184 int getChar(byte[] input, int index) in getChar() method in CharsetRecog_Unicode.CharsetRecog_UTF_32_BE
201 int getChar(byte[] input, int index) in getChar() method in CharsetRecog_Unicode.CharsetRecog_UTF_32_LE
/external/deqp-deps/glslang/glslang/MachineIndependent/preprocessor/
DPpScanner.cpp135 ch = getChar(); in lFloatConst()
147 if ((ch = getChar()) != 'I' || in lFloatConst()
148 (ch = getChar()) != 'N' || in lFloatConst()
149 (ch = getChar()) != 'F') in lFloatConst()
169 ch = getChar(); in lFloatConst()
179 ch = getChar(); in lFloatConst()
205 ch = getChar(); in lFloatConst()
209 ch = getChar(); in lFloatConst()
215 ch = getChar(); in lFloatConst()
259 int ch2 = getChar(); in lFloatConst()
[all …]
/external/icu/icu4c/source/i18n/
Dcsrucode.h70 virtual int32_t getChar(const uint8_t *input, int32_t index) const = 0;
84 int32_t getChar(const uint8_t *input, int32_t index) const;
97 int32_t getChar(const uint8_t *input, int32_t index) const;
Dcsrucode.cpp132 if (limit > 0 && getChar(input, 0) == 0x0000FEFFUL) { in match()
137 int32_t ch = getChar(input, i); in match()
176 int32_t CharsetRecog_UTF_32_BE::getChar(const uint8_t *input, int32_t index) const in getChar() function in CharsetRecog_UTF_32_BE
192 int32_t CharsetRecog_UTF_32_LE::getChar(const uint8_t *input, int32_t index) const in getChar() function in CharsetRecog_UTF_32_LE
/external/jsilver/src/com/google/streamhtmlparser/impl/
DJavascriptParserImpl.java185 if (HtmlUtils.isJavascriptWhitespace(ccBuffer.getChar(position))) { in enterStateJsSlash()
189 switch (ccBuffer.getChar(position)) { in enterStateJsSlash()
192 if (ccBuffer.getChar(position - 1) != '+') { in enterStateJsSlash()
198 if (ccBuffer.getChar(position - 1) != '-') { in enterStateJsSlash()
252 if (HtmlUtils.isJavascriptWhitespace(ccBuffer.getChar(-2))) { in enterStateJsCommentAfter()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DUCharacterNameReader.java70 int count = m_byteBuffer_.getChar(); in read()
78 count = m_byteBuffer_.getChar(); in read()
171 int size = m_byteBuffer_.getChar(); in readAlg()
DTrie2.java115 header.options = bytes.getChar(); in createFromSerialized()
116 header.indexLength = bytes.getChar(); in createFromSerialized()
117 header.shiftedDataLength = bytes.getChar(); in createFromSerialized()
118 header.index2NullOffset = bytes.getChar(); in createFromSerialized()
119 header.dataNullOffset = bytes.getChar(); in createFromSerialized()
120 header.shiftedHighStart = bytes.getChar(); in createFromSerialized()
DICUResourceBundleReader.java386 chars[i] = bytes.getChar(offset); in getChars()
430 int length = bytes.getChar(offset); in getTableKeyOffsets()
550 sb.append(bytes.getChar(offset)); in makeStringFromBytes()
595 return getInt(offset) == 3 && bytes.getChar(offset + 4) == 0x2205 && in isNoInheritanceMarker()
596 bytes.getChar(offset + 6) == 0x2205 && bytes.getChar(offset + 8) == 0x2205; in isNoInheritanceMarker()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DUCharacterNameReader.java70 int count = m_byteBuffer_.getChar(); in read()
78 count = m_byteBuffer_.getChar(); in read()
171 int size = m_byteBuffer_.getChar(); in readAlg()
DTrie2.java117 header.options = bytes.getChar(); in createFromSerialized()
118 header.indexLength = bytes.getChar(); in createFromSerialized()
119 header.shiftedDataLength = bytes.getChar(); in createFromSerialized()
120 header.index2NullOffset = bytes.getChar(); in createFromSerialized()
121 header.dataNullOffset = bytes.getChar(); in createFromSerialized()
122 header.shiftedHighStart = bytes.getChar(); in createFromSerialized()
/external/nist-sip/java/gov/nist/javax/sip/header/
DSIPObject.java119 if (f.getChar(this) != g.getChar(that)) in equals()
209 if (f.getChar(this) != g.getChar(that)) in match()
325 char charField = f.getChar(this); in debugDump()
/external/nist-sip/java/gov/nist/javax/sip/address/
DNetObject.java117 if (f.getChar(this) != g.getChar(that)) in equals()
207 if (f.getChar(this) != g.getChar(that)) in match()
318 char charField = f.getChar(this); in debugDump()
/external/nist-sip/java/gov/nist/core/
DGenericObject.java250 char charField = f.getChar(mergeObject); in merge()
444 if (f.getChar(this) != g.getChar(that)) in equals()
529 if (f.getChar(this) != g.getChar(that)) in match()
628 char charField = f.getChar(this); in debugDump()
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DElemNumber.java1603 …return (new Character(table.getChar((int)val - 1))).toString(); // index into table is off one, s… in int2singlealphaCount()
1632 table[i + 1] = aTable.getChar(i); in int2alphaCount()
1635 table[0] = aTable.getChar(i); in int2alphaCount()
1790 if (buf[charPos - 1] != zeroChar.getChar(0)) in tradAlphaCount()
1791 buf[charPos++] = zeroChar.getChar(0); in tradAlphaCount()
1822 table[j + 1] = THEletters.getChar(j); in tradAlphaCount()
1825 …table[0] = THEletters.getChar(j - 1); // don't need this … in tradAlphaCount()
1835 org.apache.xml.utils.res.XResourceBundle.LANG_MULTIPLIER_CHAR))).getChar(i); in tradAlphaCount()
1889 table[j + 1] = theletters.getChar(j); in tradAlphaCount()
1892 table[0] = theletters.getChar(j - 1); // don't need this in tradAlphaCount()
/external/icu/android_icu4j/src/main/java/android/icu/util/
DCodePointTrie.java172 int options = bytes.getChar(); in fromBinary()
175 int indexLength = bytes.getChar(); in fromBinary()
178 int dataLength = bytes.getChar(); in fromBinary()
181 int index3NullOffset = bytes.getChar(); in fromBinary()
184 int dataNullOffset = bytes.getChar(); in fromBinary()
190 int shiftedHighStart = bytes.getChar(); in fromBinary()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DCodePointTrie.java177 int options = bytes.getChar(); in fromBinary()
180 int indexLength = bytes.getChar(); in fromBinary()
183 int dataLength = bytes.getChar(); in fromBinary()
186 int index3NullOffset = bytes.getChar(); in fromBinary()
189 int dataNullOffset = bytes.getChar(); in fromBinary()
195 int shiftedHighStart = bytes.getChar(); in fromBinary()
/external/apache-xml/src/main/java/org/apache/xml/utils/res/
DCharArrayWrapper.java35 public char getChar(int index){ in getChar() method in CharArrayWrapper
/external/dagger2/compiler/src/it/functional-tests/src/main/java/test/
DBasicComponent.java26 char getChar(); in getChar() method

123