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

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
floating_point_comparison.hpp 54 // FPT is Floating-Point Type: float, double, long double or User-Defined.
55 template<typename FPT>
56 inline FPT
57 fpt_abs( FPT fpv )
59 return fpv < static_cast<FPT>(0) ? -fpv : fpv;
64 template<typename FPT>
66 static FPT min_value()
68 return std::numeric_limits<FPT>::is_specialized
69 ? (std::numeric_limits<FPT>::min)()
72 static FPT max_value(
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckSecuritySyntaxOnly.cpp 300 const FunctionProtoType *FPT = FD->getType()->getAs<FunctionProtoType>();
301 if (!FPT)
305 if (FPT->getNumArgs() != 1)
309 const PointerType *PT = FPT->getArgType(0)->getAs<PointerType>();
337 const FunctionProtoType *FPT = FD->getType()->getAs<FunctionProtoType>();
338 if (!FPT)
342 if (FPT->getNumArgs() != 2)
346 if (!FPT->getArgType(0)->isIntegralOrUnscopedEnumerationType())
350 const PointerType *PT = FPT->getArgType(1)->getAs<PointerType>();
382 const FunctionProtoType *FPT = FD->getType()->getAs<FunctionProtoType>()
    [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)))
484 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT))
485 for (unsigned i = 0, e = FPT->getNumArgs(); i != e; i++)
486 if (const RecordType *RT = FPT->getArgType(i)->getAs<RecordType>())
509 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT)) {
511 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),
331 const FunctionProtoType *FPT =
362 RequiredArgs required = RequiredArgs::forPrototypePlus(FPT, 1);
365 EmitCallArgs(Args, FPT, E->arg_begin(), E->arg_end());
366 return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required), Callee,
    [all...]
CGCXXABI.cpp 46 const FunctionProtoType *FPT =
51 CGM.getTypes().arrangeCXXMethodType(RD, FPT));
CGVTables.cpp 227 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
228 QualType ResultType = FPT->getResultType();
296 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
299 CGM.getCXXABI().HasThisReturn(GD) ? ThisType : FPT->getResultType();
353 CGM.getTypes().arrangeCXXMethodCall(CallArgs, FPT,
354 RequiredArgs::forPrototypePlus(FPT, 1));
    [all...]
CGClass.cpp     [all...]
CGCall.cpp 393 const FunctionProtoType *FPT,
401 FunctionType::ExtInfo info = FPT->getExtInfo();
402 adjustCXXMethodInfo(*this, info, FPT->isVariadic());
403 return arrangeLLVMFunctionInfo(GetReturnType(FPT->getResultType()),
    [all...]
ItaniumCXXABI.cpp 273 const FunctionProtoType *FPT =
280 CGM.getTypes().arrangeCXXMethodType(RD, FPT));
564 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
567 if (Types.isFuncTypeConvertible(FPT)) {
    [all...]
MicrosoftCXXABI.cpp     [all...]
CGDebugInfo.cpp 787 else if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(Ty)) {
788 for (unsigned i = 0, e = FPT->getNumArgs(); i != e; ++i)
789 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();
    [all...]
Sema.cpp     [all...]
SemaDeclCXX.cpp     [all...]
SemaDecl.cpp     [all...]
SemaTemplate.cpp     [all...]
SemaLookup.cpp     [all...]
SemaExpr.cpp     [all...]
  /external/clang/lib/AST/
Type.cpp     [all...]
MicrosoftMangle.cpp     [all...]
ASTContext.cpp     [all...]
Decl.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 816 milliseconds