Searched defs:getSpelling (Results 1 - 6 of 6) sorted by relevance
/external/clang/tools/libclang/ |
H A D | CXStoredDiagnostic.cpp | 52 CXString CXStoredDiagnostic::getSpelling() const { function in class:CXStoredDiagnostic
|
H A D | CXLoadedDiagnostic.cpp | 107 CXString CXLoadedDiagnostic::getSpelling() const { function in class:CXLoadedDiagnostic
|
/external/llvm/include/llvm/Option/ |
H A D | Arg.h | 71 StringRef getSpelling() const { return Spelling; } function in class:llvm::opt::Arg
|
/external/clang/lib/Lex/ |
H A D | Preprocessor.cpp | 207 << getSpelling(Tok) << "'"; 420 /// getSpelling - This method is used to get the spelling of a token into a 423 StringRef Preprocessor::getSpelling(const Token &Tok, function in class:Preprocessor 438 unsigned Len = getSpelling(Tok, Ptr, Invalid); 540 StringRef CleanedStr = getSpelling(Identifier, IdentifierBuffer); 806 StringRef Spelling = getSpelling(Tok, IntegerBuffer, &NumberInvalid);
|
H A D | Lexer.cpp | 229 /// \brief Slow case of getSpelling. Extract the characters comprising the 280 /// getSpelling() - Return the 'spelling' of this token. The spelling of a 285 StringRef Lexer::getSpelling(SourceLocation loc, 321 /// getSpelling() - Return the 'spelling' of this token. The spelling of a 326 std::string Lexer::getSpelling(const Token &Tok, const SourceManager &SourceMgr, 348 /// getSpelling - This method is used to get the spelling of a token into a 358 unsigned Lexer::getSpelling(const Token &Tok, const char *&Buffer, function in class:Lexer 2161 std::string Spelling = PP->getSpelling(Result, &Invalid);
|
/external/clang/include/clang/Lex/ |
H A D | Preprocessor.h | 1058 StringRef getSpelling(SourceLocation loc, function in class:clang::Preprocessor 1061 return Lexer::getSpelling(loc, buffer, SourceMgr, LangOpts, invalid); 1072 std::string getSpelling(const Token &Tok, bool *Invalid = nullptr) const { function in class:clang::Preprocessor 1073 return Lexer::getSpelling(Tok, SourceMgr, LangOpts, Invalid); 1088 unsigned getSpelling(const Token &Tok, const char *&Buffer, function in class:clang::Preprocessor 1090 return Lexer::getSpelling(Tok, Buffer, SourceMgr, LangOpts, Invalid); 1097 StringRef getSpelling(const Token &Tok,
|
Completed in 151 milliseconds