Lines Matching defs:CGF
861 ApplyDebugLocation(CodeGenFunction &CGF, bool DefaultToEmpty,
865 CodeGenFunction *CGF;
869 ApplyDebugLocation(CodeGenFunction &CGF, SourceLocation TemporaryLocation);
870 ApplyDebugLocation(CodeGenFunction &CGF, const Expr *E);
871 ApplyDebugLocation(CodeGenFunction &CGF, llvm::DebugLoc Loc);
872 ApplyDebugLocation(ApplyDebugLocation &&Other) : CGF(Other.CGF) {
873 Other.CGF = nullptr;
879 CGF = Other.CGF;
880 Other.CGF = nullptr;
898 static ApplyDebugLocation CreateArtificial(CodeGenFunction &CGF) {
899 return ApplyDebugLocation(CGF, false, SourceLocation());
905 CreateDefaultArtificial(CodeGenFunction &CGF,
907 return ApplyDebugLocation(CGF, false, TemporaryLocation);
915 static ApplyDebugLocation CreateEmpty(CodeGenFunction &CGF) {
916 return ApplyDebugLocation(CGF, true, SourceLocation());
923 CodeGenFunction *CGF;
929 ApplyInlineDebugLocation(CodeGenFunction &CGF, GlobalDecl InlinedFn);