HomeSort by relevance Sort by last modified time
    Searched refs:getSpelling (Results 1 - 25 of 43) sorted by null

1 2

  /external/clang/lib/Rewrite/Frontend/
RewriteTest.cpp 38 *OS << PP.getSpelling(*I);
RewriteMacros.cpp 198 Expansion += ' ' + PP.getSpelling(PPTok);
InclusionRewriter.cpp 303 StringRef TmpName = PP.getSpelling(Tok, TmpBuffer, &Invalid);
319 Filename = PP.getSpelling(Tok, FilenameBuffer, &Invalid);
  /external/clang/tools/libclang/
CXLoadedDiagnostic.h 38 virtual CXString getSpelling() const;
CIndexDiagnostic.h 69 virtual CXString getSpelling() const = 0;
130 virtual CXString getSpelling() const;
CXStoredDiagnostic.cpp 50 CXString CXStoredDiagnostic::getSpelling() const {
CIndexDiagnostic.cpp 63 CXString getSpelling() const {
378 return D->getSpelling();
  /external/llvm/lib/Option/
Arg.cpp 100 OS << getSpelling();
111 getIndex(), getSpelling(), getValue(0)));
117 Output.push_back(Args.MakeArgString(getSpelling()));
  /external/clang/lib/Lex/
TokenConcatenation.cpp 63 unsigned length = PP.getSpelling(Tok, TokPtr);
67 return IsStringPrefix(StringRef(PP.getSpelling(Tok)), LangOpts.CPlusPlus11);
120 /// avoiding calls to getSpelling where possible.
135 PP.getSpelling(Tok, TokPtr);
138 return PP.getSpelling(Tok)[0];
MacroInfo.cpp 121 if (PP.getSpelling(A) != PP.getSpelling(B))
Pragma.cpp 224 std::string StrVal = getSpelling(StrTok);
460 StringRef Filename = getSpelling(FilenameTok, FilenameBuffer, &Invalid);
489 Message += getSpelling(DependencyTok) + " ";
510 << getSpelling(PragmaTok);
518 << getSpelling(PragmaTok);
528 std::string StrVal = getSpelling(Tok);
534 << getSpelling(PragmaTok);
643 SourceFileName = getSpelling(SourceFilenameTok, FileNameBuffer);
674 ReplaceFileName = getSpelling(ReplaceFilenameTok, FileNameBuffer);
    [all...]
MacroArgs.cpp 224 std::string TokStr = PP.getSpelling(Tok, &Invalid);
238 unsigned ActualTokLen = PP.getSpelling(Tok, BufPtr, &Invalid);
241 // If getSpelling returned a pointer to an already uniqued version of
Preprocessor.cpp 194 << getSpelling(Tok) << "'";
399 /// getSpelling - This method is used to get the spelling of a token into a
402 StringRef Preprocessor::getSpelling(const Token &Tok,
417 unsigned Len = getSpelling(Tok, Ptr, Invalid);
562 StringRef CleanedStr = getSpelling(Identifier, IdentifierBuffer);
PPDirectives.cpp 158 std::string Spelling = getSpelling(MacroNameTok, &Invalid);
331 std::string DirectiveStr = getSpelling(Tok);
844 unsigned ActualLength = PP.getSpelling(DigitTok, DigitTokBegin, &Invalid);
    [all...]
TokenLexer.cpp 535 unsigned LHSLen = PP.getSpelling(Tok, BufPtr, &Invalid);
542 unsigned RHSLen = PP.getSpelling(RHS, BufPtr, &Invalid);
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CheckerContext.cpp 96 return Lexer::getSpelling(Loc, buf, getSourceManager(), getLangOpts());
  /external/llvm/include/llvm/Option/
Arg.h 74 StringRef getSpelling() const { return Spelling; }
  /external/clang/lib/Parse/
ParseOpenMP.cpp 39 getOpenMPDirectiveKind(PP.getSpelling(Tok));
91 getOpenMPDirectiveKind(PP.getSpelling(Tok));
117 getOpenMPClauseKind(PP.getSpelling(Tok));
307 getOpenMPSimpleClauseType(Kind, PP.getSpelling(Tok));
  /external/clang/include/clang/Lex/
Lexer.h 240 /// getSpelling - This method is used to get the spelling of a token into a
250 static unsigned getSpelling(const Token &Tok, const char *&Buffer,
255 /// getSpelling() - Return the 'spelling' of the Tok token. The spelling of a
260 static std::string getSpelling(const Token &Tok,
265 /// getSpelling - This method is used to get the spelling of the
273 static StringRef getSpelling(SourceLocation loc,
Preprocessor.h     [all...]
  /frameworks/compile/slang/
slang_rs_pragma_handler.cpp 98 std::string Spelling = PP.getSpelling(PragmaToken, &Invalid);
208 this->handleItem(PP.getSpelling(PragmaToken));
297 llvm::StringRef TokSpelling = PP.getSpelling(PragmaToken, SpellingBuffer);
  /external/clang/lib/AST/
CommentLexer.cpp 16 llvm::errs() << " " << Length << " \"" << L.getSpelling(*this, SM) << "\"\n";
812 StringRef Lexer::getSpelling(const Token &Tok,
  /external/clang/lib/Frontend/
PrintPreprocessedOutput.cpp 72 OS << PP.getSpelling(*I, SpellingBuffer);
583 std::string TokSpell = PP.getSpelling(PragmaTok);
634 unsigned Len = PP.getSpelling(Tok, TokPtr);
642 std::string S = PP.getSpelling(Tok);
  /external/clang/unittests/Basic/
SourceManagerTest.cpp 110 ASSERT_EQ("M", PP.getSpelling(macroExpStartLoc, str));
111 ASSERT_EQ(")", PP.getSpelling(macroExpEndLoc, str));
  /external/clang/lib/Rewrite/Core/
HTMLRewrite.cpp 534 std::string Expansion = EscapeText(TmpPP.getSpelling(Tok));
562 Expansion += EscapeText(TmpPP.getSpelling(Tok));

Completed in 1356 milliseconds

1 2