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

/external/clang/tools/libclang/
H A DCXStoredDiagnostic.cpp51 CXString CXStoredDiagnostic::getSpelling() const { function in class:CXStoredDiagnostic
H A DCXLoadedDiagnostic.cpp104 CXString CXLoadedDiagnostic::getSpelling() const { function in class:CXLoadedDiagnostic
H A DCIndexDiagnostic.cpp64 CXString getSpelling() const { function in class:__anon4839::CXDiagnosticCustomNoteImpl
379 return D->getSpelling();
/external/clang/lib/Lex/
H A DPreprocessor.cpp185 << getSpelling(Tok) << "'";
356 /// getSpelling - This method is used to get the spelling of a token into a
359 StringRef Preprocessor::getSpelling(const Token &Tok, function in class:Preprocessor
374 unsigned Len = getSpelling(Tok, Ptr, Invalid);
476 StringRef CleanedStr = getSpelling(Identifier, IdentifierBuffer);
H A DLexer.cpp236 /// getSpelling() - Return the 'spelling' of this token. The spelling of a
241 StringRef Lexer::getSpelling(SourceLocation loc, function in class:Lexer
284 /// getSpelling() - Return the 'spelling' of this token. The spelling of a
289 std::string Lexer::getSpelling(const Token &Tok, const SourceManager &SourceMgr, function in class:Lexer
320 /// getSpelling - This method is used to get the spelling of a token into a
330 unsigned Lexer::getSpelling(const Token &Tok, const char *&Buffer, function in class:Lexer
2042 std::string Spelling = PP->getSpelling(Result, &Invalid);
/external/clang/lib/Sema/
H A DSemaStmtAsm.cpp346 // getSpelling - Get the spelling of the AsmTok token.
347 static StringRef getSpelling(Sema &SemaRef, Token AsmTok) { function
352 Asm = SemaRef.PP.getSpelling(AsmTok, TokenBuf, &StringInvalid);
449 Asm += getSpelling(SemaRef, AsmToks[i]);
/external/clang/include/clang/Lex/
H A DPreprocessor.h832 /// getSpelling() - Return the 'spelling' of the token at the given
839 StringRef getSpelling(SourceLocation loc, function in class:clang::Preprocessor
842 return Lexer::getSpelling(loc, buffer, SourceMgr, LangOpts, invalid);
845 /// getSpelling() - Return the 'spelling' of the Tok token. The spelling of a
852 std::string getSpelling(const Token &Tok, bool *Invalid = 0) const { function in class:clang::Preprocessor
853 return Lexer::getSpelling(Tok, SourceMgr, LangOpts, Invalid);
856 /// getSpelling - This method is used to get the spelling of a token into a
866 unsigned getSpelling(const Token &Tok, const char *&Buffer, function in class:clang::Preprocessor
868 return Lexer::getSpelling(Tok, Buffer, SourceMgr, LangOpts, Invalid);
871 /// getSpelling
[all...]

Completed in 111 milliseconds