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

  /external/clang/lib/StaticAnalyzer/Checkers/
CheckSecuritySyntaxOnly.cpp 271 const FunctionProtoType *FPT
273 if (!FPT)
277 if (FPT->getNumArgs() != 1)
281 const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(0));
305 const FunctionProtoType *FPT
307 if (!FPT)
311 if (FPT->getNumArgs() != 2)
315 if (!FPT->getArgType(0)->isIntegerType())
319 const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(1));
343 const FunctionProtoType *FPT
    [all...]
  /external/clang/lib/CodeGen/
CGCXXABI.cpp 48 const FunctionProtoType *FPT =
53 CGM.getTypes().GetFunctionType(CGM.getTypes().getFunctionInfo(RD, FPT),
54 FPT->isVariadic());
CGExprCXX.cpp 36 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
50 EmitCallArgs(Args, FPT, ArgBeg, ArgEnd);
52 QualType ResultType = FPT->getResultType();
54 FPT->getExtInfo()),
240 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
242 = CGM.getTypes().GetFunctionType(*FInfo, FPT->isVariadic());
295 const FunctionProtoType *FPT =
324 EmitCallArgs(Args, FPT, E->arg_begin(), E->arg_end());
325 return EmitCall(CGM.getTypes().getFunctionInfo(Args, FPT), Callee,
    [all...]
CodeGenTypes.cpp 227 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT))
228 for (unsigned i = 0, e = FPT->getNumArgs(); i != e; i++)
229 if (!isFuncTypeArgumentConvertible(FPT->getArgType(i)))
479 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT)) {
481 CanQual<FunctionProtoType>::CreateUnsafe(QualType(FPT, 0)));
482 isVariadic = FPT->isVariadic();
CGVTables.cpp 243 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
244 QualType ResultType = FPT->getResultType();
309 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
310 QualType ResultType = FPT->getResultType();
356 FPT->isVariadic());
361 CGM.getTypes().getFunctionInfo(ResultType, CallArgs, FPT->getExtInfo());
ItaniumCXXABI.cpp 213 const FunctionProtoType *FPT =
219 CGM.getTypes().GetFunctionType(CGM.getTypes().getFunctionInfo(RD, FPT),
220 FPT->isVariadic());
537 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
540 if (Types.isFuncTypeConvertible(FPT)) {
543 FPT->isVariadic());
    [all...]
CGCXX.cpp 365 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
367 = CGM.getTypes().GetFunctionType(*FInfo, FPT->isVariadic());
CGClass.cpp     [all...]
CGCall.cpp 619 if (const FunctionProtoType *FPT =
621 Variadic = FPT->isVariadic();
705 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
707 if (!isFuncTypeConvertible(FPT))
715 return GetFunctionType(*Info, FPT->isVariadic());
737 const FunctionProtoType *FPT = Fn->getType()->getAs<FunctionProtoType>();
738 if (FPT && FPT->isNothrow(getContext()))
    [all...]
  /bionic/libc/stdio/
vfprintf.c 152 #define FPT 0x0100 /* Floating point number */
525 flags |= FPT;
757 if ((flags & FPT) == 0) {
  /external/clang/lib/AST/
Type.cpp     [all...]
MicrosoftMangle.cpp     [all...]
ItaniumMangle.cpp     [all...]
ASTContext.cpp     [all...]
  /external/clang/lib/Sema/
Sema.cpp     [all...]
SemaDecl.cpp     [all...]
SemaExpr.cpp     [all...]

Completed in 2174 milliseconds