HomeSort by: relevance | last modified time | path
    Searched refs:ThisT (Results 1 - 14 of 14) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
ExtensibleRTTI.h 66 template <typename ThisT, typename ParentT> class RTTIExtends;
116 template <typename ThisT, typename ParentT>
122 static const void *classID() { return &ThisT::ID; }
124 const void *dynamicClassID() const override { return &ThisT::ID; }
130 static bool classof(const RTTIRoot *R) { return R->isA<ThisT>(); }
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
CoalescingBitVector.h 41 using ThisT = CoalescingBitVector<IndexT>;
61 CoalescingBitVector(const ThisT &Other)
66 ThisT &operator=(const ThisT &Other) {
72 CoalescingBitVector(ThisT &&Other) = delete;
73 ThisT &operator=(ThisT &&Other) = delete;
106 void set(const ThisT &Other) {
158 void operator|=(const ThisT &RHS) {
176 void operator&=(const ThisT &RHS)
    [all...]
FunctionExtras.h 63 template <typename CallableT, typename ThisT>
65 std::enable_if_t<!std::is_same<remove_cvref_t<CallableT>, ThisT>::value>;
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetServer.h 65 using ThisT = std::remove_reference_t<decltype(*this)>;
66 addHandler<exec::CallIntVoid>(*this, &ThisT::handleCallIntVoid);
67 addHandler<exec::CallIntInt>(*this, &ThisT::handleCallIntInt);
68 addHandler<exec::CallMain>(*this, &ThisT::handleCallMain);
69 addHandler<exec::CallVoidVoid>(*this, &ThisT::handleCallVoidVoid);
71 &ThisT::handleCreateRemoteAllocator);
73 *this, &ThisT::handleDestroyRemoteAllocator);
74 addHandler<mem::ReadMem>(*this, &ThisT::handleReadMem);
75 addHandler<mem::ReserveMem>(*this, &ThisT::handleReserveMem);
76 addHandler<mem::SetProtections>(*this, &ThisT::handleSetProtections)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/Coverage/
CoverageMapping.h 822 using ThisT = CovMapFunctionRecordV1<IntPtrT>;
831 return accessors::getFuncHash<ThisT, Endian>(this);
835 return accessors::getDataSize<ThisT, Endian>(this);
855 std::pair<const char *, const ThisT *>
857 return accessors::advanceByOneOutOfLine<ThisT, Endian>(this, MappingBuf);
866 return accessors::getCoverageMappingOutOfLine<ThisT, Endian>(this,
872 using ThisT = CovMapFunctionRecordV2;
881 return accessors::getFuncHash<ThisT, Endian>(this);
885 return accessors::getDataSize<ThisT, Endian>(this);
889 return accessors::getFuncNameRef<ThisT, Endian>(this)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/TargetProcess/
OrcRPCTPCServer.h 392 using ThisT = OrcRPCTPCServer<RPCEndpointT>;
398 &ThisT::getTargetTriple);
399 EP.template addHandler<orcrpctpc::GetPageSize>(*this, &ThisT::getPageSize);
401 EP.template addHandler<orcrpctpc::ReserveMem>(*this, &ThisT::reserveMemory);
403 &ThisT::finalizeMemory);
404 EP.template addHandler<orcrpctpc::ReleaseMem>(*this, &ThisT::releaseMemory);
416 EP.template addHandler<orcrpctpc::LoadDylib>(*this, &ThisT::loadDylib);
418 &ThisT::lookupSymbols);
420 EP.template addHandler<orcrpctpc::RunMain>(*this, &ThisT::runMain);
421 EP.template addHandler<orcrpctpc::RunWrapper>(*this, &ThisT::runWrapper)
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/LLJITWithRemoteDebugging/
RemoteJITUtils.cpp 42 using ThisT = RemoteTargetProcessControl;
44 using MemoryAccess = OrcRPCTPCMemoryAccess<ThisT>;
45 using MemoryManager = OrcRPCTPCJITLinkMemoryManager<ThisT>;
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_allocator_primary32.h 112 typedef SizeClassAllocator32<Params> ThisT;
113 typedef SizeClassAllocator32LocalCache<ThisT> AllocatorCache;
sanitizer_allocator_primary64.h 59 typedef SizeClassAllocator64<Params> ThisT;
60 typedef SizeClassAllocator64LocalCache<ThisT> AllocatorCache;
773 MemoryMapper(const ThisT& base_allocator, uptr class_id)
811 const ThisT& allocator;
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_allocator_primary32.h 119 typedef SizeClassAllocator32<Params> ThisT;
120 typedef SizeClassAllocator32LocalCache<ThisT> AllocatorCache;
sanitizer_allocator_primary64.h 96 typedef SizeClassAllocator64<Params> ThisT;
97 typedef SizeClassAllocator64LocalCache<ThisT> AllocatorCache;
98 typedef MemoryMapper<ThisT> MemoryMapperT;
621 friend class MemoryMapper<ThisT>;
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_allocator_primary32.h 119 typedef SizeClassAllocator32<Params> ThisT;
120 typedef SizeClassAllocator32LocalCache<ThisT> AllocatorCache;
sanitizer_allocator_primary64.h 96 typedef SizeClassAllocator64<Params> ThisT;
97 typedef SizeClassAllocator64LocalCache<ThisT> AllocatorCache;
98 typedef MemoryMapper<ThisT> MemoryMapperT;
621 friend class MemoryMapper<ThisT>;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
TreeTransform.h 14343 QualType ThisT = RebuildUnresolvedUsingType(Loc, E);
14344 if (ThisT.isNull())
14346 else if (ThisT->getAs<UnresolvedUsingType>())
14347 FallbackT = ThisT;
14349 T = ThisT;
14351 assert(getSema().Context.hasSameType(ThisT, T) &&

Completed in 45 milliseconds