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

  /external/llvm/include/llvm/ADT/
iterator.h 148 typedef typename iterator_adaptor_base::iterator_facade_base BaseT;
170 BaseT::IsRandomAccess,
177 BaseT::IsRandomAccess,
182 using BaseT::operator-;
185 BaseT::IsRandomAccess,
192 using BaseT::operator++;
197 using BaseT::operator--;
200 BaseT::IsBidirectional,
209 BaseT::IsRandomAccess,
SmallPtrSet.h 293 typedef SmallPtrSetImpl<PtrType> BaseT;
300 SmallPtrSet() : BaseT(SmallStorage, SmallSizePowTwo) {}
301 SmallPtrSet(const SmallPtrSet &that) : BaseT(SmallStorage, that) {}
303 : BaseT(SmallStorage, SmallSizePowTwo, std::move(that)) {}
306 SmallPtrSet(It I, It E) : BaseT(SmallStorage, SmallSizePowTwo) {
DenseMap.h 534 typedef DenseMapBase<DenseMap, KeyT, ValueT, KeyInfoT> BaseT;
535 typedef typename BaseT::BucketT BucketT;
548 DenseMap(const DenseMap &other) : BaseT() {
553 DenseMap(DenseMap &&other) : BaseT() {
593 this->BaseT::copyFrom(other);
602 this->BaseT::initEmpty();
616 this->BaseT::initEmpty();
635 this->BaseT::initEmpty();
686 typedef DenseMapBase<SmallDenseMap, KeyT, ValueT, KeyInfoT> BaseT;
687 typedef typename BaseT::BucketT BucketT
    [all...]
  /external/clang/test/CXX/class.derived/class.member.lookup/
p8.cpp 34 struct BaseT {
39 template<typename T> struct Derived1T : BaseT<T> { };
40 template<typename T> struct Derived2T : BaseT<T> { };
53 this->Foo(); // expected-error{{non-static member 'Foo' found in multiple base-class subobjects of type 'BaseT<int>'}}
  /external/clang/lib/CodeGen/
CodeGenTBAA.h 40 : BaseT(B), AccessN(A), Offset(O) {}
41 const Type *BaseT;
145 return DenseMapInfo<const clang::Type *>::getHashValue(Val.BaseT) ^
152 return LHS.BaseT == RHS.BaseT &&
  /external/clang/test/SemaTemplate/
instantiate-complete.cpp 139 class BaseT {};
142 class DerivedT : public BaseT<T> {};
152 BaseT<int> bt(ft);
  /external/llvm/include/llvm/IR/
ValueMap.h 284 typedef typename DenseMapT::iterator BaseT;
286 BaseT I;
290 ValueMapIterator(BaseT I) : I(I) {}
292 BaseT base() const { return I; }
333 typedef typename DenseMapT::const_iterator BaseT;
335 BaseT I;
338 ValueMapConstIterator(BaseT I) : I(I) {}
342 BaseT base() const { return I; }
PassManager.h 687 typedef detail::AnalysisManagerBase<ModuleAnalysisManager, Module *> BaseT;
688 typedef BaseT::ResultConceptT ResultConceptT;
689 typedef BaseT::PassConceptT PassConceptT;
696 : BaseT(std::move(static_cast<BaseT &>(Arg))),
699 BaseT::operator=(std::move(static_cast<BaseT &>(RHS)));
737 BaseT;
738 typedef BaseT::ResultConceptT ResultConceptT;
739 typedef BaseT::PassConceptT PassConceptT
    [all...]
  /external/clang/include/clang/AST/
ASTTypeTraits.h 235 /// \brief Converter that uses dyn_cast<T> from a stored BaseT*.
236 template <typename T, typename BaseT> struct DynCastPtrConverter {
238 if (ASTNodeKind::getFromNodeKind<BaseT>().isBaseOf(NodeKind))
239 return dyn_cast<T>(*reinterpret_cast<BaseT *const *>(Storage));
242 static DynTypedNode create(const BaseT &Node) {
245 new (Result.Storage.buffer) const BaseT * (&Node);
  /external/llvm/include/llvm/Analysis/
CGSCCPassManager.h 77 LazyCallGraph::SCC *> BaseT;
78 typedef BaseT::ResultConceptT ResultConceptT;
79 typedef BaseT::PassConceptT PassConceptT;
88 : BaseT(std::move(static_cast<BaseT &>(Arg))),
91 BaseT::operator=(std::move(static_cast<BaseT &>(RHS)));
  /external/llvm/include/llvm/Support/
YAMLParser.h 273 /// BaseT must have a ValueT* member named CurrentEntry and a member function
275 template <class BaseT, class ValueT>
280 basic_collection_iterator(BaseT *B) : Base(B) {}
315 BaseT *Base;
  /external/clang/lib/Sema/
SemaPseudoObject.cpp     [all...]
SemaType.cpp     [all...]
  /external/clang/lib/ASTMatchers/Dynamic/
Marshallers.h 387 template <typename BaseT, typename DerivedT>
389 ast_matchers::internal::VariadicDynCastAllOfMatcher<BaseT, DerivedT> Func,
690 template <typename BaseT, typename DerivedT>
693 BaseT, DerivedT> VarFunc,
  /external/clang/test/SemaCXX/
warn-thread-safety-analysis.cpp     [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]

Completed in 534 milliseconds