/external/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
D | OrcRemoteTargetServer.h | 64 using ThisT = std::remove_reference_t<decltype(*this)>; in OrcRemoteTargetServer() local 65 addHandler<exec::CallIntVoid>(*this, &ThisT::handleCallIntVoid); in OrcRemoteTargetServer() 66 addHandler<exec::CallIntInt>(*this, &ThisT::handleCallIntInt); in OrcRemoteTargetServer() 67 addHandler<exec::CallMain>(*this, &ThisT::handleCallMain); in OrcRemoteTargetServer() 68 addHandler<exec::CallVoidVoid>(*this, &ThisT::handleCallVoidVoid); in OrcRemoteTargetServer() 70 &ThisT::handleCreateRemoteAllocator); in OrcRemoteTargetServer() 72 *this, &ThisT::handleDestroyRemoteAllocator); in OrcRemoteTargetServer() 73 addHandler<mem::ReadMem>(*this, &ThisT::handleReadMem); in OrcRemoteTargetServer() 74 addHandler<mem::ReserveMem>(*this, &ThisT::handleReserveMem); in OrcRemoteTargetServer() 75 addHandler<mem::SetProtections>(*this, &ThisT::handleSetProtections); in OrcRemoteTargetServer() [all …]
|
/external/llvm-project/llvm/include/llvm/ADT/ |
D | CoalescingBitVector.h | 41 using ThisT = CoalescingBitVector<IndexT>; variable 61 CoalescingBitVector(const ThisT &Other) in CoalescingBitVector() 66 ThisT &operator=(const ThisT &Other) { 72 CoalescingBitVector(ThisT &&Other) = delete; 73 ThisT &operator=(ThisT &&Other) = delete; 106 void set(const ThisT &Other) { in set() 158 void operator|=(const ThisT &RHS) { 176 void operator&=(const ThisT &RHS) { 187 void intersectWithComplement(const ThisT &Other) { in intersectWithComplement() 218 bool operator==(const ThisT &RHS) const { [all …]
|
/external/llvm-project/llvm/include/llvm/Support/ |
D | ExtensibleRTTI.h | 66 template <typename ThisT, typename ParentT> class RTTIExtends; 116 template <typename ThisT, typename ParentT> 122 static const void *classID() { return &ThisT::ID; } in classID() 124 const void *dynamicClassID() const override { return &ThisT::ID; } in dynamicClassID() 130 static bool classof(const RTTIRoot *R) { return R->isA<ThisT>(); } in classof()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/ |
D | OrcRemoteTargetServer.h | 63 using ThisT = typename std::remove_reference<decltype(*this)>::type; in OrcRemoteTargetServer() local 64 addHandler<exec::CallIntVoid>(*this, &ThisT::handleCallIntVoid); in OrcRemoteTargetServer() 65 addHandler<exec::CallMain>(*this, &ThisT::handleCallMain); in OrcRemoteTargetServer() 66 addHandler<exec::CallVoidVoid>(*this, &ThisT::handleCallVoidVoid); in OrcRemoteTargetServer() 68 &ThisT::handleCreateRemoteAllocator); in OrcRemoteTargetServer() 70 *this, &ThisT::handleDestroyRemoteAllocator); in OrcRemoteTargetServer() 71 addHandler<mem::ReadMem>(*this, &ThisT::handleReadMem); in OrcRemoteTargetServer() 72 addHandler<mem::ReserveMem>(*this, &ThisT::handleReserveMem); in OrcRemoteTargetServer() 73 addHandler<mem::SetProtections>(*this, &ThisT::handleSetProtections); in OrcRemoteTargetServer() 74 addHandler<mem::WriteMem>(*this, &ThisT::handleWriteMem); in OrcRemoteTargetServer() [all …]
|
D | RemoteObjectLayer.h | 118 using ThisT = RemoteObjectLayer<RPCEndpoint>; in RemoteObjectLayer() local 120 *this, &ThisT::handleReleaseRemoteSymbol); in RemoteObjectLayer() 122 *this, &ThisT::handleMaterializeRemoteSymbol); in RemoteObjectLayer() 321 using ThisT = RemoteObjectClientLayer<RPCEndpoint>; in RemoteObjectClientLayer() local 322 Remote.template addHandler<Lookup>(*this, &ThisT::lookup); in RemoteObjectClientLayer() 324 *this, &ThisT::lookupInLogicalDylib); in RemoteObjectClientLayer() 435 using ThisT = RemoteObjectServerLayer<BaseLayerT, RPCEndpoint>; in RemoteObjectServerLayer() local 437 Remote.template addHandler<AddObject>(*this, &ThisT::addObject); in RemoteObjectServerLayer() 438 Remote.template addHandler<RemoveObject>(*this, &ThisT::removeObject); in RemoteObjectServerLayer() 439 Remote.template addHandler<FindSymbol>(*this, &ThisT::findSymbol); in RemoteObjectServerLayer() [all …]
|
/external/llvm/include/llvm/ExecutionEngine/Orc/ |
D | OrcRemoteTargetServer.h | 60 typedef OrcRemoteTargetServer ThisT; in handleKnownFunction() typedef 66 return handle<CallIntVoid>(Channel, *this, &ThisT::handleCallIntVoid); in handleKnownFunction() 68 return handle<CallMain>(Channel, *this, &ThisT::handleCallMain); in handleKnownFunction() 70 return handle<CallVoidVoid>(Channel, *this, &ThisT::handleCallVoidVoid); in handleKnownFunction() 73 &ThisT::handleCreateRemoteAllocator); in handleKnownFunction() 76 Channel, *this, &ThisT::handleCreateIndirectStubsOwner); in handleKnownFunction() 79 &ThisT::handleDeregisterEHFrames); in handleKnownFunction() 82 Channel, *this, &ThisT::handleDestroyRemoteAllocator); in handleKnownFunction() 85 Channel, *this, &ThisT::handleDestroyIndirectStubsOwner); in handleKnownFunction() 88 &ThisT::handleEmitIndirectStubs); in handleKnownFunction() [all …]
|
/external/llvm-project/llvm/include/llvm/ProfileData/Coverage/ |
D | CoverageMapping.h | 762 using ThisT = CovMapFunctionRecordV1<IntPtrT>; member 771 return accessors::getFuncHash<ThisT, Endian>(this); in getFuncHash() 775 return accessors::getDataSize<ThisT, Endian>(this); in getDataSize() 795 std::pair<const char *, const ThisT *> 797 return accessors::advanceByOneOutOfLine<ThisT, Endian>(this, MappingBuf); in advanceByOne() 806 return accessors::getCoverageMappingOutOfLine<ThisT, Endian>(this, in getCoverageMapping() 812 using ThisT = CovMapFunctionRecordV2; member 821 return accessors::getFuncHash<ThisT, Endian>(this); in getFuncHash() 825 return accessors::getDataSize<ThisT, Endian>(this); in getDataSize() 829 return accessors::getFuncNameRef<ThisT, Endian>(this); in getFuncNameRef() [all …]
|
/external/llvm-project/libcxx/test/support/ |
D | unique_ptr_test_helper.h | 60 template <class ThisT, class ...Args> 63 template <class ThisT, class A1> 64 struct args_is_this_type<ThisT, A1> : std::is_same<ThisT, typename std::decay<A1>::type> {};
|
/external/libcxx/test/support/ |
D | unique_ptr_test_helper.h | 61 template <class ThisT, class ...Args> 64 template <class ThisT, class A1> 65 struct args_is_this_type<ThisT, A1> : std::is_same<ThisT, typename std::decay<A1>::type> {};
|
/external/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/TargetProcess/ |
D | OrcRPCTPCServer.h | 387 using ThisT = OrcRPCTPCServer<RPCEndpointT>; in OrcRPCTPCServer() local 393 &ThisT::getTargetTriple); in OrcRPCTPCServer() 394 EP.template addHandler<orcrpctpc::GetPageSize>(*this, &ThisT::getPageSize); in OrcRPCTPCServer() 396 EP.template addHandler<orcrpctpc::ReserveMem>(*this, &ThisT::reserveMemory); in OrcRPCTPCServer() 398 &ThisT::finalizeMemory); in OrcRPCTPCServer() 399 EP.template addHandler<orcrpctpc::ReleaseMem>(*this, &ThisT::releaseMemory); in OrcRPCTPCServer() 411 EP.template addHandler<orcrpctpc::LoadDylib>(*this, &ThisT::loadDylib); in OrcRPCTPCServer() 413 &ThisT::lookupSymbols); in OrcRPCTPCServer() 415 EP.template addHandler<orcrpctpc::RunMain>(*this, &ThisT::runMain); in OrcRPCTPCServer() 416 EP.template addHandler<orcrpctpc::RunWrapper>(*this, &ThisT::runWrapper); in OrcRPCTPCServer() [all …]
|
/external/scudo/standalone/tests/ |
D | tsd_test.cpp | 24 using ThisT = MockAllocator<Config>; typedef in MockAllocator 25 using TSDRegistryT = typename Config::template TSDRegistryT<ThisT>;
|
/external/llvm-project/compiler-rt/lib/scudo/standalone/tests/ |
D | tsd_test.cpp | 24 using ThisT = MockAllocator<Config>; typedef in MockAllocator 25 using TSDRegistryT = typename Config::template TSDRegistryT<ThisT>;
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_allocator_primary64.h | 58 typedef SizeClassAllocator64<Params> ThisT; typedef 59 typedef SizeClassAllocator64LocalCache<ThisT> AllocatorCache; 780 MemoryMapper(const ThisT& base_allocator, uptr class_id) in MemoryMapper() 818 const ThisT& allocator;
|
D | sanitizer_allocator_primary32.h | 119 typedef SizeClassAllocator32<Params> ThisT; typedef 120 typedef SizeClassAllocator32LocalCache<ThisT> AllocatorCache;
|
/external/llvm-project/compiler-rt/lib/scudo/standalone/ |
D | combined.h | 50 typedef Allocator<Params, PostInitCallback> ThisT; typedef 51 typedef typename Params::template TSDRegistryT<ThisT> TSDRegistryT; 59 explicit QuarantineCallback(ThisT &Instance, CacheT &LocalCache) in QuarantineCallback() 125 ThisT &Allocator; 230 void commitBack(TSD<ThisT> *TSD) { in commitBack()
|
D | primary64.h | 53 ThisT; typedef 54 typedef SizeClassAllocatorLocalCache<ThisT> CacheT;
|
D | primary32.h | 55 ThisT; typedef 56 typedef SizeClassAllocatorLocalCache<ThisT> CacheT;
|
/external/scudo/standalone/ |
D | combined.h | 50 typedef Allocator<Params, PostInitCallback> ThisT; typedef 51 typedef typename Params::template TSDRegistryT<ThisT> TSDRegistryT; 58 explicit QuarantineCallback(ThisT &Instance, CacheT &LocalCache) in QuarantineCallback() 128 ThisT &Allocator; 237 void commitBack(TSD<ThisT> *TSD) { in commitBack()
|
D | primary64.h | 48 typedef SizeClassAllocator64<Config> ThisT; typedef 49 typedef SizeClassAllocatorLocalCache<ThisT> CacheT;
|
D | primary32.h | 51 typedef SizeClassAllocator32<Config> ThisT; typedef 52 typedef SizeClassAllocatorLocalCache<ThisT> CacheT;
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_allocator.h | 322 SizeClassMap, MapUnmapCallback> ThisT; typedef 323 typedef SizeClassAllocatorLocalCache<ThisT> AllocatorCache; 715 SizeClassMap, kRegionSizeLog, ByteMap, MapUnmapCallback> ThisT; typedef 716 typedef SizeClassAllocatorLocalCache<ThisT> AllocatorCache;
|
/external/python/pybind11/include/pybind11/ |
D | cast.h | 659 template <typename ThisT> 670 auto &this_ = static_cast<ThisT &>(*this); in load_impl() 719 if (load_impl<ThisT>(temp, false)) { in load_impl()
|
/external/llvm-project/clang/lib/Sema/ |
D | TreeTransform.h | 14096 QualType ThisT = RebuildUnresolvedUsingType(Loc, E); in RebuildUnresolvedUsingType() local 14097 if (ThisT.isNull()) in RebuildUnresolvedUsingType() 14099 else if (ThisT->getAs<UnresolvedUsingType>()) in RebuildUnresolvedUsingType() 14100 FallbackT = ThisT; in RebuildUnresolvedUsingType() 14102 T = ThisT; in RebuildUnresolvedUsingType() 14104 assert(getSema().Context.hasSameType(ThisT, T) && in RebuildUnresolvedUsingType()
|