Searched defs:BaseT (Results 1 - 25 of 58) sorted by relevance

123

/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
H A DSequence.h30 typedef typename value_sequence_iterator::iterator_facade_base BaseT; typedef in class:llvm::detail::value_sequence_iterator
35 typedef typename BaseT::difference_type difference_type;
36 typedef typename BaseT::reference reference;
54 using BaseT::operator-;
H A Diterator.h209 typedef typename iterator_adaptor_base::iterator_facade_base BaseT; typedef in class:llvm::iterator_adaptor_base
228 BaseT::IsRandomAccess,
235 BaseT::IsRandomAccess,
240 using BaseT::operator-;
243 BaseT::IsRandomAccess,
250 using BaseT::operator++;
255 using BaseT::operator--;
258 BaseT::IsBidirectional,
267 BaseT::IsRandomAccess,
H A DDenseMap.h592 typedef DenseMapBase<DenseMap, KeyT, ValueT, KeyInfoT, BucketT> BaseT; typedef in class:llvm::DenseMap
605 DenseMap(const DenseMap &other) : BaseT() {
610 DenseMap(DenseMap &&other) : BaseT() {
653 this->BaseT::copyFrom(other);
661 auto InitBuckets = BaseT::getMinBucketToReserveForEntries(InitNumEntries);
663 this->BaseT::initEmpty();
677 this->BaseT::initEmpty();
696 this->BaseT::initEmpty();
748 typedef DenseMapBase<SmallDenseMap, KeyT, ValueT, KeyInfoT, BucketT> BaseT; typedef in class:llvm::SmallDenseMap
771 SmallDenseMap(const SmallDenseMap &other) : BaseT() {
[all...]
H A DSTLExtras.h291 using BaseT = iterator_adaptor_base<
308 BaseT::operator++();
314 : BaseT(std::move(Begin)),
321 filter_iterator(WrappedIteratorT End) : BaseT(End) {}
324 using BaseT::operator++;
327 BaseT::operator++();
519 typedef typename concat_iterator::iterator_facade_base BaseT; typedef in class:llvm::concat_iterator
595 using BaseT::operator++;
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
H A DSequence.h30 typedef typename value_sequence_iterator::iterator_facade_base BaseT; typedef in class:llvm::detail::value_sequence_iterator
35 typedef typename BaseT::difference_type difference_type;
36 typedef typename BaseT::reference reference;
54 using BaseT::operator-;
H A Diterator.h209 typedef typename iterator_adaptor_base::iterator_facade_base BaseT; typedef in class:llvm::iterator_adaptor_base
228 BaseT::IsRandomAccess,
235 BaseT::IsRandomAccess,
240 using BaseT::operator-;
243 BaseT::IsRandomAccess,
250 using BaseT::operator++;
255 using BaseT::operator--;
258 BaseT::IsBidirectional,
267 BaseT::IsRandomAccess,
H A DDenseMap.h592 typedef DenseMapBase<DenseMap, KeyT, ValueT, KeyInfoT, BucketT> BaseT; typedef in class:llvm::DenseMap
605 DenseMap(const DenseMap &other) : BaseT() {
610 DenseMap(DenseMap &&other) : BaseT() {
653 this->BaseT::copyFrom(other);
661 auto InitBuckets = BaseT::getMinBucketToReserveForEntries(InitNumEntries);
663 this->BaseT::initEmpty();
677 this->BaseT::initEmpty();
696 this->BaseT::initEmpty();
748 typedef DenseMapBase<SmallDenseMap, KeyT, ValueT, KeyInfoT, BucketT> BaseT; typedef in class:llvm::SmallDenseMap
771 SmallDenseMap(const SmallDenseMap &other) : BaseT() {
[all...]
H A DSTLExtras.h291 using BaseT = iterator_adaptor_base<
308 BaseT::operator++();
314 : BaseT(std::move(Begin)),
321 filter_iterator(WrappedIteratorT End) : BaseT(End) {}
324 using BaseT::operator++;
327 BaseT::operator++();
519 typedef typename concat_iterator::iterator_facade_base BaseT; typedef in class:llvm::concat_iterator
595 using BaseT::operator++;
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
H A DValueMap.h333 typedef typename DenseMapT::iterator BaseT; typedef in class:llvm::ValueMapIterator
336 BaseT I;
340 ValueMapIterator(BaseT I) : I(I) {}
342 BaseT base() const { return I; }
383 typedef typename DenseMapT::const_iterator BaseT; typedef in class:llvm::ValueMapConstIterator
386 BaseT I;
390 ValueMapConstIterator(BaseT I) : I(I) {}
394 BaseT base() const { return I; }
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
H A DValueMap.h333 typedef typename DenseMapT::iterator BaseT; typedef in class:llvm::ValueMapIterator
336 BaseT I;
340 ValueMapIterator(BaseT I) : I(I) {}
342 BaseT base() const { return I; }
383 typedef typename DenseMapT::const_iterator BaseT; typedef in class:llvm::ValueMapConstIterator
386 BaseT I;
390 ValueMapConstIterator(BaseT I) : I(I) {}
394 BaseT base() const { return I; }
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
H A DLoopInfo.h687 typedef LoopInfoBase<BasicBlock, Loop> BaseT; typedef in class:llvm::LoopInfo
697 LoopInfo(LoopInfo &&Arg) : BaseT(std::move(static_cast<BaseT &>(Arg))) {}
699 BaseT::operator=(std::move(static_cast<BaseT &>(RHS)));
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h42 typedef TargetTransformInfoImplCRTPBase<T> BaseT; typedef in class:llvm::BasicTTIImplBase
78 : BaseT(DL) {}
149 return BaseT::getGEPCost(PointeeType, Ptr, Operands);
154 return BaseT::getIntrinsicCost(IID, RetTy, Arguments);
171 return BaseT::getIntrinsicCost(IID, RetTy, ParamTys);
213 return BaseT::getOperationCost(Opcode, Ty, OpTy);
1105 typedef BasicTTIImplBase<BasicTTIImpl> BaseT; typedef in class:llvm::BasicTTIImplBase::BasicTTIImpl
H A DRegAllocPBQP.h504 typedef PBQP::Graph<RegAllocSolverImpl> BaseT; typedef in class:llvm::PBQP::RegAlloc::PBQPRAGraph
507 PBQPRAGraph(GraphMetadata Metadata) : BaseT(std::move(Metadata)) {}
/prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ADT/
H A DSTLExtras.h291 using BaseT = iterator_adaptor_base<
308 BaseT::operator++();
314 : BaseT(std::move(Begin)),
321 filter_iterator(WrappedIteratorT End) : BaseT(End) {}
324 using BaseT::operator++;
327 BaseT::operator++();
519 typedef typename concat_iterator::iterator_facade_base BaseT; typedef in class:llvm::concat_iterator
595 using BaseT::operator++;
/prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Analysis/
H A DLoopInfo.h678 typedef LoopInfoBase<BasicBlock, Loop> BaseT; typedef in class:llvm::LoopInfo
688 LoopInfo(LoopInfo &&Arg) : BaseT(std::move(static_cast<BaseT &>(Arg))) {}
690 BaseT::operator=(std::move(static_cast<BaseT &>(RHS)));
/prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ADT/
H A DSTLExtras.h291 using BaseT = iterator_adaptor_base<
308 BaseT::operator++();
314 : BaseT(std::move(Begin)),
321 filter_iterator(WrappedIteratorT End) : BaseT(End) {}
324 using BaseT::operator++;
327 BaseT::operator++();
519 typedef typename concat_iterator::iterator_facade_base BaseT; typedef in class:llvm::concat_iterator
595 using BaseT::operator++;
/prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Analysis/
H A DLoopInfo.h678 typedef LoopInfoBase<BasicBlock, Loop> BaseT; typedef in class:llvm::LoopInfo
688 LoopInfo(LoopInfo &&Arg) : BaseT(std::move(static_cast<BaseT &>(Arg))) {}
690 BaseT::operator=(std::move(static_cast<BaseT &>(RHS)));
/prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ADT/
H A DSTLExtras.h293 using BaseT = iterator_adaptor_base<
310 BaseT::operator++();
316 : BaseT(std::move(Begin)),
323 filter_iterator(WrappedIteratorT End) : BaseT(End) {}
326 using BaseT::operator++;
329 BaseT::operator++();
521 typedef typename concat_iterator::iterator_facade_base BaseT; typedef in class:llvm::concat_iterator
597 using BaseT::operator++;
/prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Analysis/
H A DLoopInfo.h763 typedef LoopInfoBase<BasicBlock, Loop> BaseT; typedef in class:llvm::LoopInfo
774 LoopInfo(LoopInfo &&Arg) : BaseT(std::move(static_cast<BaseT &>(Arg))) {}
776 BaseT::operator=(std::move(static_cast<BaseT &>(RHS)));
/prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/ADT/
H A DSTLExtras.h293 using BaseT = iterator_adaptor_base<
310 BaseT::operator++();
316 : BaseT(std::move(Begin)),
323 filter_iterator(WrappedIteratorT End) : BaseT(End) {}
326 using BaseT::operator++;
329 BaseT::operator++();
521 typedef typename concat_iterator::iterator_facade_base BaseT; typedef in class:llvm::concat_iterator
597 using BaseT::operator++;
/prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Analysis/
H A DLoopInfo.h763 typedef LoopInfoBase<BasicBlock, Loop> BaseT; typedef in class:llvm::LoopInfo
774 LoopInfo(LoopInfo &&Arg) : BaseT(std::move(static_cast<BaseT &>(Arg))) {}
776 BaseT::operator=(std::move(static_cast<BaseT &>(RHS)));
/prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/ADT/
H A DSTLExtras.h293 using BaseT = iterator_adaptor_base<
310 BaseT::operator++();
316 : BaseT(std::move(Begin)),
323 filter_iterator(WrappedIteratorT End) : BaseT(End) {}
326 using BaseT::operator++;
329 BaseT::operator++();
521 typedef typename concat_iterator::iterator_facade_base BaseT; typedef in class:llvm::concat_iterator
597 using BaseT::operator++;
/prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Analysis/
H A DLoopInfo.h763 typedef LoopInfoBase<BasicBlock, Loop> BaseT; typedef in class:llvm::LoopInfo
774 LoopInfo(LoopInfo &&Arg) : BaseT(std::move(static_cast<BaseT &>(Arg))) {}
776 BaseT::operator=(std::move(static_cast<BaseT &>(RHS)));
/prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/ADT/
H A DSTLExtras.h293 using BaseT = iterator_adaptor_base<
310 BaseT::operator++();
316 : BaseT(std::move(Begin)),
323 filter_iterator(WrappedIteratorT End) : BaseT(End) {}
326 using BaseT::operator++;
329 BaseT::operator++();
521 typedef typename concat_iterator::iterator_facade_base BaseT; typedef in class:llvm::concat_iterator
597 using BaseT::operator++;
/prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Analysis/
H A DLoopInfo.h763 typedef LoopInfoBase<BasicBlock, Loop> BaseT; typedef in class:llvm::LoopInfo
774 LoopInfo(LoopInfo &&Arg) : BaseT(std::move(static_cast<BaseT &>(Arg))) {}
776 BaseT::operator=(std::move(static_cast<BaseT &>(RHS)));

Completed in 543 milliseconds

123