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

  /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
alloc_function.pass.cpp 27 template <class FuncType, class AllocType>
33 std::function<FuncType> f = FunctionObject();
37 assert(f.template target<FuncType>() == 0);
38 assert(f.template target<FuncType*>() == 0);
40 std::function<FuncType> f2(std::allocator_arg, alloc, f);
44 assert(f2.template target<FuncType>() == 0);
45 assert(f2.template target<FuncType*>() == 0);
51 template <class FuncType, class AllocType>
57 FuncType* target = &FreeFunction;
58 std::function<FuncType> f = target
    [all...]
alloc_F.pass.cpp 26 template <class FuncType, class AllocType>
34 std::function<FuncType> f2(std::allocator_arg, alloc, target);
38 assert(f2.template target<FuncType>() == 0);
39 assert(f2.template target<FuncType*>() == 0);
46 template <class FuncType, class AllocType>
51 FuncType* target = &FreeFunction;
53 std::function<FuncType> f2(std::allocator_arg, alloc, target);
55 assert(f2.template target<FuncType*>());
56 assert(*f2.template target<FuncType*>() == target);
57 assert(f2.template target<FuncType>() == 0)
    [all...]
  /external/clang/test/SemaTemplate/
instantiation-default-1.cpp 83 typename FuncType = R (*)(Arg1, Arg2)>
  /external/llvm/unittests/ExecutionEngine/Orc/
OrcTestCommon.h 64 template <typename FuncType>
67 TypeBuilder<FuncType, false>::get(M->getContext()),
  /external/llvm/unittests/Transforms/Utils/
Cloning.cpp 221 FunctionType* FuncType = FunctionType::get(Type::getVoidTy(C), false);
222 OldFunc = Function::Create(FuncType, GlobalValue::PrivateLinkage, "f", M);
233 DISubroutineType *FuncType =
240 CU, "f", "f", File, 4, FuncType, true, true, 3, 0, false);
428 auto *FuncType = FunctionType::get(Type::getVoidTy(C), false);
429 auto *PersFn = Function::Create(FuncType, GlobalValue::ExternalLinkage,
432 Function::Create(FuncType, GlobalValue::PrivateLinkage, "f", OldM);
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITTestBase.h 48 template<typename FuncType>
51 TypeBuilder<FuncType, false>::get(Context),
109 template <typename FuncType>
112 TypeBuilder<FuncType, false>::get(Context),
  /external/clang/lib/ASTMatchers/Dynamic/
Marshallers.h 420 typedef ReturnType (*FuncType)();
422 return outvalueToVariantMatcher(reinterpret_cast<FuncType>(Func)());
431 typedef ReturnType (*FuncType)(ArgType1);
434 return outvalueToVariantMatcher(reinterpret_cast<FuncType>(Func)(
444 typedef ReturnType (*FuncType)(ArgType1, ArgType2);
448 return outvalueToVariantMatcher(reinterpret_cast<FuncType>(Func)(
  /external/clang/lib/StaticAnalyzer/Checkers/
NullabilityChecker.cpp 489 const FunctionType *FuncType = DeclCtxt->getDecl()->getFunctionType();
490 if (!FuncType)
496 getNullabilityAnnotation(FuncType->getReturnType());
629 const FunctionType *FuncType = Decl->getFunctionType();
630 if (!FuncType)
632 QualType ReturnType = FuncType->getReturnType();
    [all...]
  /external/harfbuzz_ng/src/
hb-font.cc 1554 template <typename FuncType>
1558 FuncType func;
1561 template <typename FuncType>
1562 static hb_trampoline_t<FuncType> *
1563 trampoline_create (FuncType func,
1567 typedef hb_trampoline_t<FuncType> trampoline_t;
    [all...]
  /external/clang/test/Parser/
cxx0x-attributes.cpp 236 using FuncType = void ([[]] int);
  /external/valgrind/VEX/test/
test-amd64.c     [all...]
test-i386.c     [all...]
  /frameworks/compile/slang/
slang_rs_object_ref_count.cpp     [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteObjC.cpp 312 void RewriteBlocksInFunctionProtoType(QualType funcType, NamedDecl *D);
545 void RewriteObjC::RewriteBlocksInFunctionProtoType(QualType funcType,
548 = dyn_cast<FunctionProtoType>(funcType.IgnoreParens())) {
558 void RewriteObjC::CheckFunctionPointerDecl(QualType funcType, NamedDecl *ND) {
559 const PointerType *PT = funcType->getAs<PointerType>();
560 if (PT && PointerTypeTakesAnyBlockArguments(funcType))
    [all...]
RewriteModernObjC.cpp 387 void RewriteBlocksInFunctionProtoType(QualType funcType, NamedDecl *D);
614 void RewriteModernObjC::RewriteBlocksInFunctionProtoType(QualType funcType,
617 = dyn_cast<FunctionProtoType>(funcType.IgnoreParens())) {
627 void RewriteModernObjC::CheckFunctionPointerDecl(QualType funcType, NamedDecl *ND) {
628 const PointerType *PT = funcType->getAs<PointerType>();
629 if (PT && PointerTypeTakesAnyBlockArguments(funcType))
    [all...]
  /external/deqp/modules/gles31/functional/
es31fDebugTests.cpp 144 enum FuncType
150 FuncType m_type;
    [all...]

Completed in 350 milliseconds