Lines Matching defs:CGF
855 ApplyDebugLocation(CodeGenFunction &CGF, bool DefaultToEmpty,
859 CodeGenFunction *CGF;
863 ApplyDebugLocation(CodeGenFunction &CGF, SourceLocation TemporaryLocation);
864 ApplyDebugLocation(CodeGenFunction &CGF, const Expr *E);
865 ApplyDebugLocation(CodeGenFunction &CGF, llvm::DebugLoc Loc);
866 ApplyDebugLocation(ApplyDebugLocation &&Other) : CGF(Other.CGF) {
867 Other.CGF = nullptr;
873 CGF = Other.CGF;
874 Other.CGF = nullptr;
892 static ApplyDebugLocation CreateArtificial(CodeGenFunction &CGF) {
893 return ApplyDebugLocation(CGF, false, SourceLocation());
899 CreateDefaultArtificial(CodeGenFunction &CGF,
901 return ApplyDebugLocation(CGF, false, TemporaryLocation);
909 static ApplyDebugLocation CreateEmpty(CodeGenFunction &CGF) {
910 return ApplyDebugLocation(CGF, true, SourceLocation());
917 CodeGenFunction *CGF;
923 ApplyInlineDebugLocation(CodeGenFunction &CGF, GlobalDecl InlinedFn);