HomeSort by relevance Sort by last modified time
    Searched refs:TheCall (Results 1 - 11 of 11) sorted by null

  /external/clang/lib/Sema/
SemaChecking.cpp 72 static bool SemaBuiltinAnnotation(Sema &S, CallExpr *TheCall) {
73 if (checkArgCount(S, TheCall, 2))
77 Expr *ValArg = TheCall->getArg(0);
86 Expr *StrArg = TheCall->getArg(1)->IgnoreParenCasts();
94 TheCall->setType(Ty);
100 static bool SemaBuiltinAddressof(Sema &S, CallExpr *TheCall) {
101 if (checkArgCount(S, TheCall, 1))
104 ExprResult Arg(TheCall->getArg(0));
105 QualType ResultType = S.CheckAddressOfOperand(Arg, TheCall->getLocStart());
109 TheCall->setArg(0, Arg.get())
    [all...]
SemaOverload.cpp     [all...]
SemaExpr.cpp     [all...]
TreeTransform.h     [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 746 static Value *HandleByValArgument(Value *Arg, Instruction *TheCall,
753 Function *Caller = TheCall->getParent()->getParent();
    [all...]
CloneFunction.cpp 716 Instruction *TheCall) {
  /external/clang/lib/StaticAnalyzer/Checkers/
MallocOverflowSecurityChecker.cpp 241 if (const CallExpr *TheCall = dyn_cast<CallExpr>(CS->getStmt())) {
243 const FunctionDecl *FD = TheCall->getDirectCallee();
254 if (TheCall->getNumArgs() == 1)
255 CheckMallocArgument(PossibleMallocOverflows, TheCall->getArg(0),
  /external/llvm/include/llvm/Transforms/Utils/
Cloning.h 188 Instruction *TheCall = nullptr);
  /external/clang/include/clang/Sema/
Sema.h     [all...]
  /external/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp 588 const Instruction *TheCall = CS.getInstruction();
589 if (!TheCall) { // Not a direct call site?
602 for (const Use &U : TheCall->uses()) {
    [all...]
  /external/clang/lib/CodeGen/
CGObjC.cpp     [all...]

Completed in 203 milliseconds