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

  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXStoredDiagnostic.cpp 48 CXString CXStoredDiagnostic::getSpelling() const {
CXLoadedDiagnostic.cpp 105 CXString CXLoadedDiagnostic::getSpelling() const {
  /src/external/apache2/llvm/dist/llvm/include/llvm/Option/
Arg.h 85 StringRef getSpelling() const { return Spelling; }
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
TargetCXXABI.h 60 static const auto &getSpelling(Kind ABIKind) {
  /src/external/apache2/llvm/dist/clang/lib/Lex/
Preprocessor.cpp 233 << getSpelling(Tok) << "'";
456 /// getSpelling - This method is used to get the spelling of a token into a
459 StringRef Preprocessor::getSpelling(const Token &Tok,
474 unsigned Len = getSpelling(Tok, Ptr, Invalid);
707 StringRef CleanedStr = getSpelling(Identifier, IdentifierBuffer);
1038 unsigned ActualLen = getSpelling(FilenameTok, BufPtr);
1066 StringRef Str = getSpelling(FilenameTok, FilenameBuffer);
1366 StringRef Spelling = getSpelling(Tok, IntegerBuffer, &NumberInvalid);
Lexer.cpp 271 /// Slow case of getSpelling. Extract the characters comprising the
322 /// getSpelling() - Return the 'spelling' of this token. The spelling of a
327 StringRef Lexer::getSpelling(SourceLocation loc,
363 /// getSpelling() - Return the 'spelling' of this token. The spelling of a
368 std::string Lexer::getSpelling(const Token &Tok, const SourceManager &SourceMgr,
390 /// getSpelling - This method is used to get the spelling of a token into a
400 unsigned Lexer::getSpelling(const Token &Tok, const char *&Buffer,
2425 std::string Spelling = PP->getSpelling(Result, &Invalid);
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
ClangAttrEmitter.cpp 1395 OS << "const char *" << R.getName() << "Attr::getSpelling() const {\n";
1411 // End of the getSpelling function.
1749 std::string getSpelling() const {
1934 OS << Rule.getEnumValueName() << ", \"" << Rule.getSpelling() << "\", "
2555 OS << " const char *getSpelling() const;\n";
2658 OS << "const char *Attr::getSpelling() const {\n";
2659 EmitFunc("getSpelling()");
4152 SS << " OS << \" \" << A->getSpelling();\n";
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
Preprocessor.h 1721 StringRef getSpelling(SourceLocation loc,
1724 return Lexer::getSpelling(loc, buffer, SourceMgr, LangOpts, invalid);
1735 std::string getSpelling(const Token &Tok, bool *Invalid = nullptr) const {
1736 return Lexer::getSpelling(Tok, SourceMgr, LangOpts, Invalid);
1751 unsigned getSpelling(const Token &Tok, const char *&Buffer,
1753 return Lexer::getSpelling(Tok, Buffer, SourceMgr, LangOpts, Invalid);
1760 StringRef getSpelling(const Token &Tok,

Completed in 27 milliseconds