Searched defs:getSpelling (Results 1 - 6 of 6) sorted by relevance

/external/clang/tools/libclang/
H A DCXStoredDiagnostic.cpp52 CXString CXStoredDiagnostic::getSpelling() const { function in class:CXStoredDiagnostic
H A DCXLoadedDiagnostic.cpp105 CXString CXLoadedDiagnostic::getSpelling() const { function in class:CXLoadedDiagnostic
/external/llvm/include/llvm/Option/
H A DArg.h71 StringRef getSpelling() const { return Spelling; } function in class:llvm::opt::Arg
/external/clang/lib/Lex/
H A DPreprocessor.cpp192 << getSpelling(Tok) << "'";
397 /// getSpelling - This method is used to get the spelling of a token into a
400 StringRef Preprocessor::getSpelling(const Token &Tok, function in class:Preprocessor
415 unsigned Len = getSpelling(Tok, Ptr, Invalid);
517 StringRef CleanedStr = getSpelling(Identifier, IdentifierBuffer);
780 StringRef Spelling = getSpelling(Tok, IntegerBuffer, &NumberInvalid);
H A DLexer.cpp235 /// \brief Slow case of getSpelling. Extract the characters comprising the
286 /// getSpelling() - Return the 'spelling' of this token. The spelling of a
291 StringRef Lexer::getSpelling(SourceLocation loc,
327 /// getSpelling() - Return the 'spelling' of this token. The spelling of a
332 std::string Lexer::getSpelling(const Token &Tok, const SourceManager &SourceMgr,
354 /// getSpelling - This method is used to get the spelling of a token into a
364 unsigned Lexer::getSpelling(const Token &Tok, const char *&Buffer, function in class:Lexer
2164 std::string Spelling = PP->getSpelling(Result, &Invalid);
/external/clang/include/clang/Lex/
H A DPreprocessor.h1022 StringRef getSpelling(SourceLocation loc, function in class:clang::Preprocessor
1025 return Lexer::getSpelling(loc, buffer, SourceMgr, LangOpts, invalid);
1036 std::string getSpelling(const Token &Tok, bool *Invalid = nullptr) const { function in class:clang::Preprocessor
1037 return Lexer::getSpelling(Tok, SourceMgr, LangOpts, Invalid);
1052 unsigned getSpelling(const Token &Tok, const char *&Buffer, function in class:clang::Preprocessor
1054 return Lexer::getSpelling(Tok, Buffer, SourceMgr, LangOpts, Invalid);
1061 StringRef getSpelling(const Token &Tok,

Completed in 407 milliseconds