HomeSort by: relevance | last modified time | path
    Searched defs:getTok (Results 1 - 6 of 6) sorted by relevancy

  /src/external/mit/expat/dist/xmlwf/
ct.c 37 getTok(const char **pp) {
120 p = getTok(&next);
125 p = getTok(&next);
128 p = getTok(&next);
131 p = getTok(&next);
134 p = getTok(&next);
136 p = getTok(&next);
138 p = getTok(&next);
164 p = getTok(&next);
xmlmime.c 39 getTok(const char **pp) {
125 p = getTok(&next);
130 p = getTok(&next);
133 p = getTok(&next);
140 p = getTok(&next);
143 p = getTok(&next);
145 p = getTok(&next);
147 p = getTok(&next);
174 p = getTok(&next);
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
MCAsmParser.cpp 38 const AsmToken &MCAsmParser::getTok() const {
39 return getLexer().getTok();
43 Loc = getTok().getLoc();
48 if (getTok().getKind() != AsmToken::EndOfStatement)
49 return Error(getTok().getLoc(), "expected newline");
55 if (getTok().getKind() != AsmToken::EndOfStatement)
56 return Error(getTok().getLoc(), Msg);
64 if (getTok().getKind() != T)
65 return Error(getTok().getLoc(), Msg);
71 if (getTok().getKind() != AsmToken::Integer
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/MCParser/
MCAsmParserExtension.h 87 const AsmToken &getTok() { return getParser().getTok(); }
MCAsmLexer.h 108 const AsmToken &getTok() const {
140 AsmToken::TokenKind getKind() const { return getTok().getKind(); }
143 bool is(AsmToken::TokenKind K) const { return getTok().is(K); }
146 bool isNot(AsmToken::TokenKind K) const { return getTok().isNot(K); }
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CIndex.cpp 7048 CXToken &getTok(unsigned Idx) {
7052 const CXToken &getTok(unsigned Idx) const {
7060 return SourceLocation::getFromRawEncoding(getTok(tokI).int_data[1]);
7063 return getTok(tokI).int_data[3] != 0;
7066 return SourceLocation::getFromRawEncoding(getTok(tokI).int_data[3]);
7551 CXToken &getTok(unsigned Idx) {
7555 const CXToken &getTok(unsigned Idx) const {
7561 return SourceLocation::getFromRawEncoding(getTok(tokI).int_data[1]);
7567 getTok(tokI).int_data[3] = loc.getRawEncoding();

Completed in 32 milliseconds