/external/compiler-rt/lib/ubsan/ |
D | ubsan_handlers.cc | 441 SourceLocation CallLoc = Data->Loc.acquire(); in handleFunctionTypeMismatch() local 444 if (ignoreReport(CallLoc, Opts, ET)) in handleFunctionTypeMismatch() 447 ScopedReport R(Opts, CallLoc, ET); in handleFunctionTypeMismatch() 454 Diag(CallLoc, DL_Error, in handleFunctionTypeMismatch()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | PathDiagnostic.cpp | 124 SourceLocation CallLoc = CP->callEnter.asLocation(); in getFirstStackedCallToHeaderFile() local 127 if (CallLoc.isMacroID()) in getFirstStackedCallToHeaderFile() 130 assert(SMgr.isInMainFile(CallLoc) && in getFirstStackedCallToHeaderFile()
|
/external/clang/lib/AST/ |
D | ExprConstant.cpp | 315 SourceLocation CallLoc; member 337 CallStackFrame(EvalInfo &Info, SourceLocation CallLoc, 962 CallStackFrame::CallStackFrame(EvalInfo &Info, SourceLocation CallLoc, in CallStackFrame() argument 965 : Info(Info), Caller(Info.CurrentCall), CallLoc(CallLoc), Callee(Callee), in CallStackFrame() 1004 addDiag(Frame->CallLoc, diag::note_constexpr_calls_suppressed) in addCallStack() 1014 addDiag(Frame->CallLoc, diag::note_constexpr_inherited_ctor_call_here) in addCallStack() 1023 addDiag(Frame->CallLoc, diag::note_constexpr_call_here) << Out.str(); in addCallStack() 3856 static bool CheckConstexprFunction(EvalInfo &Info, SourceLocation CallLoc, in CheckConstexprFunction() argument 3892 Info.FFDiag(CallLoc, diag::note_constexpr_invalid_inhctor, 1) in CheckConstexprFunction() 3895 Info.FFDiag(CallLoc, diag::note_constexpr_invalid_function, 1) in CheckConstexprFunction() [all …]
|
/external/clang/lib/CodeGen/ |
D | CGExprCXX.cpp | 40 SourceLocation CallLoc; in commonEmitCXXMemberOrOperatorCall() local 42 CallLoc = CE->getExprLoc(); in commonEmitCXXMemberOrOperatorCall() 46 CallLoc, This, CGF.getContext().getRecordType(MD->getParent())); in commonEmitCXXMemberOrOperatorCall()
|
/external/llvm/lib/AsmParser/ |
D | LLParser.cpp | 5244 LocTy CallLoc = Lex.getLoc(); in ParseInvoke() local 5323 return Error(CallLoc, "not enough parameters specified for call"); in ParseInvoke() 5327 return Error(CallLoc, "invoke instructions may not have an alignment"); in ParseInvoke() 5850 LocTy CallLoc = Lex.getLoc(); in ParseCall() local 5869 return Error(CallLoc, "fast-math-flags specified for call without " in ParseCall() 5927 return Error(CallLoc, "not enough parameters specified for call"); in ParseCall() 5931 return Error(CallLoc, "call instructions may not have an alignment"); in ParseCall()
|
/external/swiftshader/third_party/LLVM/lib/AsmParser/ |
D | LLParser.cpp | 3171 LocTy CallLoc = Lex.getLoc(); in ParseInvoke() local 3243 return Error(CallLoc, "not enough parameters specified for call"); in ParseInvoke() 3577 LocTy CallLoc = Lex.getLoc(); in ParseCall() local 3639 return Error(CallLoc, "not enough parameters specified for call"); in ParseCall()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/AsmParser/ |
D | LLParser.cpp | 5747 LocTy CallLoc = Lex.getLoc(); in ParseInvoke() local 5819 return Error(CallLoc, "not enough parameters specified for call"); in ParseInvoke() 5822 return Error(CallLoc, "invoke instructions may not have an alignment"); in ParseInvoke() 6341 LocTy CallLoc = Lex.getLoc(); in ParseCall() local 6360 return Error(CallLoc, "fast-math-flags specified for call without " in ParseCall() 6412 return Error(CallLoc, "not enough parameters specified for call"); in ParseCall() 6415 return Error(CallLoc, "call instructions may not have an alignment"); in ParseCall()
|
/external/clang/lib/Sema/ |
D | SemaExpr.cpp | 4499 ExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation CallLoc, in BuildCXXDefaultArgExpr() argument 4503 Diag(CallLoc, in BuildCXXDefaultArgExpr() 4521 InstantiatingTemplate Inst(*this, CallLoc, Param, in BuildCXXDefaultArgExpr() 4595 return CXXDefaultArgExpr::Create(Context, CallLoc, Param); in BuildCXXDefaultArgExpr() 4801 bool Sema::GatherArgumentsForCall(SourceLocation CallLoc, FunctionDecl *FDecl, in GatherArgumentsForCall() argument 4855 BuildCXXDefaultArgExpr(CallLoc, FDecl, Param); in GatherArgumentsForCall() 4868 CheckStaticArrayArgument(CallLoc, Param, Arg); in GatherArgumentsForCall() 4881 ExprResult arg = checkUnknownAnyArg(CallLoc, A, paramType); in GatherArgumentsForCall() 4920 Sema::CheckStaticArrayArgument(SourceLocation CallLoc, in CheckStaticArrayArgument() argument 4935 Diag(CallLoc, diag::warn_null_arg) << ArgExpr->getSourceRange(); in CheckStaticArrayArgument() [all …]
|
D | SemaDeclCXX.cpp | 151 Sema::ImplicitExceptionSpecification::CalledDecl(SourceLocation CallLoc, in CalledDecl() argument 159 Proto = Self->ResolveExceptionSpec(CallLoc, Proto); in CalledDecl()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 3993 void CheckStaticArrayArgument(SourceLocation CallLoc, 4327 ExprResult BuildCXXDefaultArgExpr(SourceLocation CallLoc, 4376 void CalledDecl(SourceLocation CallLoc, const CXXMethodDecl *Method); 8588 bool GatherArgumentsForCall(SourceLocation CallLoc, FunctionDecl *FDecl,
|