HomeSort by relevance Sort by last modified time
    Searched defs:getSpelling (Results 1 - 3 of 3) sorted by null

  /external/clang/lib/Lex/
Preprocessor.cpp 184 << getSpelling(Tok) << "'";
330 /// getSpelling - This method is used to get the spelling of a token into a
333 StringRef Preprocessor::getSpelling(const Token &Tok,
348 unsigned Len = getSpelling(Tok, Ptr, Invalid);
441 StringRef CleanedStr = getSpelling(Identifier, IdentifierBuffer);
Lexer.cpp 233 /// getSpelling() - Return the 'spelling' of this token. The spelling of a
238 StringRef Lexer::getSpelling(SourceLocation loc,
281 /// getSpelling() - Return the 'spelling' of this token. The spelling of a
286 std::string Lexer::getSpelling(const Token &Tok, const SourceManager &SourceMgr,
317 /// getSpelling - This method is used to get the spelling of a token into a
327 unsigned Lexer::getSpelling(const Token &Tok, const char *&Buffer,
    [all...]
  /external/clang/include/clang/Lex/
Preprocessor.h 764 /// getSpelling() - Return the 'spelling' of the token at the given
771 StringRef getSpelling(SourceLocation loc,
774 return Lexer::getSpelling(loc, buffer, SourceMgr, Features, invalid);
777 /// getSpelling() - Return the 'spelling' of the Tok token. The spelling of a
784 std::string getSpelling(const Token &Tok, bool *Invalid = 0) const {
785 return Lexer::getSpelling(Tok, SourceMgr, Features, Invalid);
788 /// getSpelling - This method is used to get the spelling of a token into a
    [all...]

Completed in 281 milliseconds