HomeSort by relevance Sort by last modified time
    Searched refs:PP (Results 126 - 150 of 193) sorted by null

1 2 3 4 56 7 8

  /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 56 ASTContext &ctx, Preprocessor &PP);
ObjCMT.cpp 58 Preprocessor &PP;
69 Preprocessor &PP,
75 Remapper(remapper), FileMgr(fileMgr), PPRec(PPRec), PP(PP),
285 SelectorTable::constructSetterSelector(PP.getIdentifierTable(),
286 PP.getSelectorTable(),
  /external/clang/lib/Sema/
SemaAttr.cpp 166 if (!PP.getTargetInfo().hasAlignMac68kSupport()) {
320 SourceLocation Loc = PP.getPragmaARCCFCodeAuditedLoc();
SemaLambda.cpp 625 SourceRange(PP.getLocForEndOfToken(PrevCaptureLoc), C->Loc));
635 SourceRange(PP.getLocForEndOfToken(PrevCaptureLoc), C->Loc));
686 SourceRange(PP.getLocForEndOfToken(PrevCaptureLoc), C->Loc));
691 SourceRange(PP.getLocForEndOfToken(PrevCaptureLoc), C->Loc));
721 SourceRange(PP.getLocForEndOfToken(PrevCaptureLoc), C->Loc));
    [all...]
SemaCodeComplete.cpp     [all...]
SemaExprMember.cpp     [all...]
  /frameworks/compile/slang/
slang_rs.cpp 214 clang::Preprocessor &PP = getPreprocessor();
219 PP.setPredefines(RSH.str());
slang_rs_context.h 105 RSContext(clang::Preprocessor &PP,
  /ndk/sources/host-tools/sed-4.2.1/doc/
sed.x 221 .PP
230 .PP
263 .PP
325 .PP
  /external/clang/lib/AST/
CommentSema.cpp 30 const Preprocessor *PP) :
32 PP(PP), ThisDeclInfo(NULL), BriefCommand(NULL), HeaderfileCommand(NULL) {
681 if (PP) {
684 PP->getIdentifierInfo("deprecated"),
687 StringRef MacroName = PP->getLastMacroWithSpelling(FD->getLocation(),
    [all...]
  /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);
ExprEngineC.cpp 639 ProgramPoint PP = N->getLocation();
640 if (PP.getAs<PreStmtPurgeDeadSymbols>() || PP.getAs<BlockEntrance>()) {
644 SrcBlock = PP.castAs<BlockEdge>().getSrc();
    [all...]
ExprEngine.cpp 500 PostInitializer PP(BMI, FieldLoc.getAsRegion(), stackFrame);
501 evalBind(Tmp, Init, Pred, FieldLoc, InitVal, /*isInit=*/true, &PP);
510 PostInitializer PP(BMI, FieldLoc.getAsRegion(), stackFrame);
515 Bldr.generateNode(PP, N->getState(), N);
    [all...]
  /external/clang/lib/Parse/
ParseObjc.cpp 345 P.PP.getSelectorTable().getNullarySelector(SelName);
349 SetterSel = P.PP.getSelectorTable().getSelector(1, &SetterName);
352 SelectorTable::constructSetterSelector(P.PP.getIdentifierTable(),
353 P.PP.getSelectorTable(),
706 std::string ThisTok(PP.getSpelling(Tok));
708 IdentifierInfo *II = &PP.getIdentifierTable().get(ThisTok.data());
930 Ident_instancetype = PP.getIdentifierInfo("instancetype");
    [all...]
ParseStmt.cpp 583 SourceLocation ExpectedLoc = PP.getLocForEndOfToken(PrevTokLocation);
623 SourceLocation AfterColonLoc = PP.getLocForEndOfToken(ColonLoc);
659 SourceLocation ExpectedLoc = PP.getLocForEndOfToken(PrevTokLocation);
672 SourceLocation AfterColonLoc = PP.getLocForEndOfToken(ColonLoc);
776 PrettyStackTraceLoc CrashInfo(PP.getSourceManager(),
    [all...]
ParseDecl.cpp 573 StringRef Str = PP.getSpelling(Tok, StrBuffer, &Invalid);
578 AttrName = PP.getIdentifierInfo(Str);
644 PP.getIdentifierInfo("address_space"), Loc, 0);
650 PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_global);
656 PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_local);
662 PP.getIdentifierInfo("address_space"), Loc, LangAS::opencl_constant);
668 PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_read_only);
674 PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_write_only);
680 PP.getIdentifierInfo("opencl_image_access"), Loc, CLIA_read_write);
711 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin, &Invalid)
    [all...]
  /external/clang/include/clang/Serialization/
ASTReader.h 187 Preprocessor &PP;
191 PCHValidator(Preprocessor &PP, ASTReader &Reader)
192 : PP(PP), Reader(Reader) {}
301 Preprocessor &PP;
    [all...]
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
glsl_lexer.cc     [all...]
  /external/clang/lib/Analysis/
AnalysisDeclContext.cpp 415 PrintingPolicy PP(Ctx.getLangOpts());
416 PP.TerseOutput = 1;
423 cast<StackFrameContext>(LCtx)->getDecl()->print(OS, PP);
  /external/llvm/lib/Transforms/Utils/
LoopSimplify.cpp 371 BasicBlock *llvm::InsertPreheaderForLoop(Loop *L, Pass *PP) {
394 PP);
398 ".split-lp", PP, NewBBs);
  /external/clang/include/clang/Lex/
MacroInfo.h 152 bool isIdenticalTo(const MacroInfo &Other, Preprocessor &PP,
  /external/grub/docs/
help2man 297 $include{$sect} .= ".PP\n" if $include{$sect};
408 $content = ".PP\n" if $include{$sect};
440 $content .= ".PP\n" unless $append{$pat} =~ /^\./;
454 $include{$sect} .= ".PP\n" if $include{$sect};
465 .PP
  /external/iputils/doc/
docbook2man-spec.pl 677 # In lists, etc., don't start paragraph with .PP since
693 output ".PP\n";
811 while ($content =~ /^\.PP/gm) { $num_para++ }
813 $content =~ s/^\.PP\n//;

Completed in 591 milliseconds

1 2 3 4 56 7 8