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

  /external/clang/lib/StaticAnalyzer/Checkers/
CheckSecuritySyntaxOnly.cpp 300 const FunctionProtoType *FPT
302 if (!FPT)
306 if (FPT->getNumArgs() != 1)
310 const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(0));
338 const FunctionProtoType *FPT
340 if (!FPT)
344 if (FPT->getNumArgs() != 2)
348 if (!FPT->getArgType(0)->isIntegerType())
352 const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(1));
384 const FunctionProtoType *FPT
    [all...]
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 228 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT))
229 for (unsigned i = 0, e = FPT->getNumArgs(); i != e; i++)
230 if (!isFuncTypeArgumentConvertible(FPT->getArgType(i)))
477 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT))
478 for (unsigned i = 0, e = FPT->getNumArgs(); i != e; i++)
479 if (const RecordType *RT = FPT->getArgType(i)->getAs<RecordType>())
502 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT)) {
504 CanQual<FunctionProtoType>::CreateUnsafe(QualType(FPT, 0)));
CGExprCXX.cpp 55 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
56 RequiredArgs required = RequiredArgs::forPrototypePlus(FPT, Args.size());
59 EmitCallArgs(Args, FPT, ArgBeg, ArgEnd);
61 return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required),
339 const FunctionProtoType *FPT =
370 RequiredArgs required = RequiredArgs::forPrototypePlus(FPT, 1);
373 EmitCallArgs(Args, FPT, E->arg_begin(), E->arg_end());
374 return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required), Callee,
    [all...]
CGCXXABI.cpp 48 const FunctionProtoType *FPT =
53 CGM.getTypes().arrangeCXXMethodType(RD, FPT));
CGVTables.cpp 220 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
221 QualType ResultType = FPT->getResultType();
289 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
290 QualType ResultType = FPT->getResultType();
345 CGM.getTypes().arrangeCXXMethodCall(CallArgs, FPT,
346 RequiredArgs::forPrototypePlus(FPT, 1));
    [all...]
CGCall.cpp 391 const FunctionProtoType *FPT,
399 FunctionType::ExtInfo info = FPT->getExtInfo();
400 adjustCXXMethodInfo(*this, info, FPT->isVariadic());
401 return arrangeLLVMFunctionInfo(GetReturnType(FPT->getResultType()),
    [all...]
CGClass.cpp     [all...]
ItaniumCXXABI.cpp 248 const FunctionProtoType *FPT =
255 CGM.getTypes().arrangeCXXMethodType(RD, FPT));
542 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
545 if (Types.isFuncTypeConvertible(FPT)) {
    [all...]
CGDebugInfo.cpp 765 else if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(Ty)) {
766 for (unsigned i = 0, e = FPT->getNumArgs(); i != e; ++i)
767 EltTys.push_back(getOrCreateType(FPT->getArgType(i), Unit));
    [all...]
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 114 Sema::ResolveExceptionSpec(SourceLocation Loc, const FunctionProtoType *FPT) {
115 if (!isUnresolvedExceptionSpec(FPT->getExceptionSpecType()))
116 return FPT;
118 FunctionDecl *SourceDecl = FPT->getExceptionSpecDecl();
127 if (FPT->getExceptionSpecType() == EST_Unevaluated)
    [all...]
Sema.cpp     [all...]
SemaDecl.cpp     [all...]
SemaTemplateDeduction.cpp     [all...]
SemaTemplate.cpp     [all...]
SemaDeclCXX.cpp     [all...]
SemaExpr.cpp     [all...]
SemaOverload.cpp     [all...]
  /external/clang/lib/AST/
Type.cpp     [all...]
MicrosoftMangle.cpp     [all...]
ASTContext.cpp     [all...]
ItaniumMangle.cpp     [all...]
  /bionic/libc/stdio/
vfprintf.c 152 #define FPT 0x0100 /* Floating point number */
525 flags |= FPT;
757 if ((flags & FPT) == 0) {
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 286 milliseconds