HomeSort by relevance Sort by last modified time
    Searched refs:PP (Results 101 - 125 of 168) sorted by null

1 2 3 45 6 7

  /external/clang/lib/AST/
RawCommentList.cpp 144 const Preprocessor *PP,
156 PP);
CommentSema.cpp 30 const Preprocessor *PP) :
32 PP(PP), ThisDeclInfo(nullptr), BriefCommand(nullptr),
692 if (PP) {
695 PP->getIdentifierInfo("deprecated"),
698 StringRef MacroName = PP->getLastMacroWithSpelling(FD->getLocation(),
    [all...]
  /external/clang/lib/Parse/
ParseCXXInlineMethods.cpp 318 PP.EnterTokenStream(&Toks->front(), Toks->size(), true, false);
355 assert(!PP.getSourceManager().isBeforeInTranslationUnit(origLoc,
409 PP.EnterTokenStream(LM.Toks.data(), LM.Toks.size(), true, false);
423 assert(!PP.getSourceManager().isBeforeInTranslationUnit(origLoc,
465 if (PP.getSourceManager().isBeforeInTranslationUnit(Tok.getLocation(),
525 PP.EnterTokenStream(MI.Toks.data(), MI.Toks.size(), true, false);
542 SourceLocation EndLoc = PP.getLocForEndOfToken(PrevTokLocation);
    [all...]
ParseExpr.cpp 245 PP.EnterToken(Tok);
280 const SourceManager &SM = PP.getSourceManager();
281 if (FILoc.isFileID() || PP.isAtStartOfMacroExpansion(FILoc, &FILoc)) {
350 << /*LHS*/0 << PP.getSpelling(Tok) << Actions.getExprRange(RHS.get());
376 << /*RHS*/1 << PP.getSpelling(OpToken)
    [all...]
ParseTemplate.cpp 244 = PP.getLocForEndOfToken(TemplateInfo.TemplateLoc);
763 Lexer::AdvanceToTokenCharacter(RAngleLoc, 2, PP.getSourceManager(),
807 PP.getSourceManager(),
813 PP.EnterToken(Tok);
    [all...]
ParseObjc.cpp 349 P.PP.getSelectorTable().getNullarySelector(SelName);
353 SetterSel = P.PP.getSelectorTable().getSelector(1, &SetterName);
356 SelectorTable::constructSetterSelector(P.PP.getIdentifierTable(),
357 P.PP.getSelectorTable(),
713 std::string ThisTok(PP.getSpelling(Tok));
715 IdentifierInfo *II = &PP.getIdentifierTable().get(ThisTok.data());
938 Ident_instancetype = PP.getIdentifierInfo("instancetype");
    [all...]
ParseOpenMP.cpp 163 : getOpenMPClauseKind(PP.getSpelling(Tok));
445 Kind, Tok.isAnnotation() ? "" : PP.getSpelling(Tok));
491 Kind, Tok.isAnnotation() ? "" : PP.getSpelling(Tok));
ParseDeclCXX.cpp 789 if (PP.isBacktrackEnabled() && Tok.is(tok::semi)) {
791 PP.RevertCachedTokens(2);
842 if (PP.isBacktrackEnabled())
843 PP.RevertCachedTokens(1);
845 PP.EnterToken(Tok);
854 PP.AnnotateCachedTokens(Tok);
    [all...]
ParseDecl.cpp 564 StringRef Str = PP.getSpelling(Tok, StrBuffer, &Invalid);
569 AttrName = PP.getIdentifierInfo(Str);
660 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin, &Invalid);
795 Ident_introduced = PP.getIdentifierInfo("introduced");
796 Ident_deprecated = PP.getIdentifierInfo("deprecated");
797 Ident_obsoleted = PP.getIdentifierInfo("obsoleted");
798 Ident_unavailable = PP.getIdentifierInfo("unavailable");
799 Ident_message = PP.getIdentifierInfo("message");
    [all...]
  /external/clang/lib/Sema/
SemaFixItUtils.cpp 61 const SourceLocation End = S.PP.getLocForEndOfToken(FullExpr->getSourceRange()
167 MacroDirective *Macro = S.PP.getMacroDirectiveHistory(II);
  /external/clang/include/clang/Frontend/
ASTUnit.h 92 IntrusiveRefCntPtr<Preprocessor> PP;
490 const Preprocessor &getPreprocessor() const { return *PP; }
491 Preprocessor &getPreprocessor() { return *PP; }
497 void setPreprocessor(Preprocessor *pp);
    [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp 282 const LangOptions &ExistingLangOpts = PP.getLangOpts();
289 const TargetOptions &ExistingTargetOpts = PP.getTargetInfo().getTargetOpts();
378 DiagnosticsEngine &ExistingDiags = PP.getDiagnostics();
405 Module *M = PP.getHeaderSearchInfo().lookupModule(ModuleName);
570 const PreprocessorOptions &ExistingPPOpts = PP.getPreprocessorOpts();
574 PP.getFileManager(),
576 PP.getLangOpts());
580 PP.setCounterValue(Value);
    [all...]
  /external/clang/include/clang/Analysis/
ProgramPoint.h 119 ProgramPoint& PP = t;
120 PP = *this;
131 ProgramPoint& PP = t;
132 PP = *this;
  /external/clang/lib/ARCMigrate/
Internals.h 55 ASTContext &ctx, Preprocessor &PP);
  /external/pcre/dist/
132html 131 elsif (/^\.TP/ || /^\.PP/ || /^\.P/)
  /external/clang/include/clang/Lex/
Lexer.h 103 Lexer(FileID FID, const llvm::MemoryBuffer *InputBuffer, Preprocessor &PP);
123 unsigned TokLen, Preprocessor &PP);
MacroInfo.h 155 bool isIdenticalTo(const MacroInfo &Other, Preprocessor &PP,
  /ndk/sources/host-tools/sed-4.2.1/doc/
sed.x 221 .PP
230 .PP
263 .PP
325 .PP
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineCallAndReturn.cpp 80 const ProgramPoint &PP = Node->getLocation();
82 if (PP.getLocationContext()->getCurrentStackFrame() == SF) {
83 if (Optional<StmtPoint> SP = PP.getAs<StmtPoint>()) {
86 } else if (Optional<CallExitEnd> CEE = PP.getAs<CallExitEnd>()) {
101 } else if (Optional<BlockEdge> BE = PP.getAs<BlockEdge>()) {
104 } else if (Optional<CallEnter> CE = PP.getAs<CallEnter>()) {
    [all...]
CheckerManager.cpp 316 const ProgramPoint &PP;
323 const ProgramPoint &pp)
324 : Checkers(checkers), Loc(loc), Val(val), S(s), Eng(eng), PP(pp) {}
328 const ProgramPoint &L = PP.withTag(checkFn.Checker);
341 const ProgramPoint &PP) {
342 CheckBindContext C(BindCheckers, location, val, S, Eng, PP);
ExprEngine.cpp 507 PostInitializer PP(BMI, FieldLoc.getAsRegion(), stackFrame);
508 evalBind(Tmp, Init, Pred, FieldLoc, InitVal, /*isInit=*/true, &PP);
517 PostInitializer PP(BMI, FieldLoc.getAsRegion(), stackFrame);
522 Bldr.generateNode(PP, N->getState(), N);
569 PostImplicitCall PP(NE->getOperatorNew(), NE->getLocStart(), LCtx);
570 Bldr.generateNode(PP, Pred->getState(), Pred);
611 PostImplicitCall PP(Dtor, DE->getLocStart(), LCtx);
613 Bldr.generateNode(PP, Pred->getState(), Pred);
    [all...]
  /external/clang/include/clang/Serialization/
ASTReader.h 236 Preprocessor &PP;
240 PCHValidator(Preprocessor &PP, ASTReader &Reader)
241 : PP(PP), Reader(Reader) {}
353 Preprocessor &PP;
    [all...]
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
glsl_lexer.cc     [all...]
  /external/clang/lib/Analysis/
AnalysisDeclContext.cpp 425 PrintingPolicy PP(Ctx.getLangOpts());
426 PP.TerseOutput = 1;
433 cast<StackFrameContext>(LCtx)->getDecl()->print(OS, PP);
  /external/clang/include/clang/AST/
ASTTypeTraits.h 195 void print(llvm::raw_ostream &OS, const PrintingPolicy &PP) const;

Completed in 1073 milliseconds

1 2 3 45 6 7