Home
last modified time | relevance | path

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

1234

/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/mockito/cglib-and-asm/src/org/mockito/asm/util/
DCheckMethodAdapter.java1012 if (getChar(signature, 0) == '<') { in checkClassSignature()
1016 while (getChar(signature, pos) == 'L') { in checkClassSignature()
1036 if (getChar(signature, 0) == '<') { in checkMethodSignature()
1040 while ("ZCBSIFJDL[T".indexOf(getChar(signature, pos)) != -1) { in checkMethodSignature()
1044 if (getChar(signature, pos) == 'V') { in checkMethodSignature()
1049 while (getChar(signature, pos) == '^') { in checkMethodSignature()
1051 if (getChar(signature, pos) == 'L') { in checkMethodSignature()
1090 while (getChar(signature, pos) != '>') { in checkFormalTypeParameters()
1110 if ("L[T".indexOf(getChar(signature, pos)) != -1) { in checkFormalTypeParameter()
1113 while (getChar(signature, pos) == ':') { in checkFormalTypeParameter()
[all …]
/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.cpp60 llvm::MDNode *CodeGenTBAA::getChar() { in getChar() function in CodeGenTBAA
96 return getChar(); in getTBAAInfo()
115 return getChar(); in getTBAAInfo()
134 createTBAAScalarType(BTy->getName(Features), getChar()); in getTBAAInfo()
143 getChar()); in getTBAAInfo()
153 return MetadataCache[Ty] = getChar(); in getTBAAInfo()
158 return MetadataCache[Ty] = createTBAAScalarType(OutName, getChar()); in getTBAAInfo()
162 return MetadataCache[Ty] = getChar(); in getTBAAInfo()
205 llvm::MDNode *TBAAInfo = MayAlias ? getChar() : getTBAAInfo(QTy); in CollectFields()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DCharsetRecog_Unicode.java120 abstract int getChar(byte[] input, int index); in getChar() method in CharsetRecog_Unicode.CharsetRecog_UTF_32
136 if (getChar(input, 0) == 0x0000FEFF) { in match()
141 int ch = getChar(input, i); in match()
172 int getChar(byte[] input, int index) in getChar() method in CharsetRecog_Unicode.CharsetRecog_UTF_32_BE
187 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.java121 abstract int getChar(byte[] input, int index); in getChar() method in CharsetRecog_Unicode.CharsetRecog_UTF_32
137 if (getChar(input, 0) == 0x0000FEFF) { in match()
142 int ch = getChar(input, i); in match()
173 int getChar(byte[] input, int index) in getChar() method in CharsetRecog_Unicode.CharsetRecog_UTF_32_BE
188 int getChar(byte[] input, int index) in getChar() method in CharsetRecog_Unicode.CharsetRecog_UTF_32_LE
/external/icu/icu4c/source/i18n/
Dcsrucode.h68 virtual int32_t getChar(const uint8_t *input, int32_t index) const = 0;
82 int32_t getChar(const uint8_t *input, int32_t index) const;
95 int32_t getChar(const uint8_t *input, int32_t index) const;
Dcsrucode.cpp130 if (limit > 0 && getChar(input, 0) == 0x0000FEFFUL) { in match()
135 int32_t ch = getChar(input, i); in match()
174 int32_t CharsetRecog_UTF_32_BE::getChar(const uint8_t *input, int32_t index) const in getChar() function in CharsetRecog_UTF_32_BE
190 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.java67 int count = m_byteBuffer_.getChar(); in read()
75 count = m_byteBuffer_.getChar(); in read()
168 int size = m_byteBuffer_.getChar(); in readAlg()
DTrie2.java113 header.options = bytes.getChar(); in createFromSerialized()
114 header.indexLength = bytes.getChar(); in createFromSerialized()
115 header.shiftedDataLength = bytes.getChar(); in createFromSerialized()
116 header.index2NullOffset = bytes.getChar(); in createFromSerialized()
117 header.dataNullOffset = bytes.getChar(); in createFromSerialized()
118 header.shiftedHighStart = bytes.getChar(); in createFromSerialized()
DICUResourceBundleReader.java383 chars[i] = bytes.getChar(offset); in getChars()
427 int length = bytes.getChar(offset); in getTableKeyOffsets()
547 sb.append(bytes.getChar(offset)); in makeStringFromBytes()
592 return getInt(offset) == 3 && bytes.getChar(offset + 4) == 0x2205 && in isNoInheritanceMarker()
593 bytes.getChar(offset + 6) == 0x2205 && bytes.getChar(offset + 8) == 0x2205; in isNoInheritanceMarker()
768 return bytes.getChar(offset); in getTableLength()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DUCharacterNameReader.java67 int count = m_byteBuffer_.getChar(); in read()
75 count = m_byteBuffer_.getChar(); in read()
168 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.java385 chars[i] = bytes.getChar(offset); in getChars()
429 int length = bytes.getChar(offset); in getTableKeyOffsets()
549 sb.append(bytes.getChar(offset)); in makeStringFromBytes()
594 return getInt(offset) == 3 && bytes.getChar(offset + 4) == 0x2205 && in isNoInheritanceMarker()
595 bytes.getChar(offset + 6) == 0x2205 && bytes.getChar(offset + 8) == 0x2205; in isNoInheritanceMarker()
770 return bytes.getChar(offset); in getTableLength()
/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/apache-xml/src/main/java/org/apache/xml/utils/res/
DCharArrayWrapper.java35 public char getChar(int index){ in getChar() method in CharArrayWrapper
/external/opencv3/3rdparty/openexr/IlmImf/
DImfHuf.cpp809 #define getChar(c, lc, in) \ macro
821 getChar(c, lc, in); \
872 getChar (c, lc, in); in hufDecode()
907 getChar (c, lc, in); in hufDecode()
/external/robolectric/v3/libs/
Dvtd-xml-2.11.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/ximpleware/ com/ ...
/external/dexmaker/src/test/java/com/google/dexmaker/stock/
DProxyBuilderTest.java215 public char getChar() { return 'c'; } in getChar() method in ProxyBuilderTest.AllReturnTypes
237 assertEquals('z', proxy.getChar()); in testAllReturnTypes()
252 public char getChar(char input) { return input; } in getChar() method in ProxyBuilderTest.PassThroughAllTypes
282 assertEquals('a', proxy.getChar('a')); in testPassThroughWorksForAllTypes()
283 assertEquals('b', proxy.getChar('b')); in testPassThroughWorksForAllTypes()

1234