Searched defs:ValueT (Results 1 - 4 of 4) sorted by relevance

/external/llvm/unittests/ADT/
H A DTinyPtrVectorTest.cpp39 typedef typename remove_pointer<PtrT>::type ValueT; typedef in class:__anon9246::TinyPtrVectorTest
44 ValueT TestValues[1024];
/external/llvm/include/llvm/ADT/
H A DValueMap.h38 template<typename KeyT, typename ValueT, typename Config>
75 template<typename KeyT, typename ValueT, typename Config =ValueMapConfig<KeyT> >
77 friend class ValueMapCallbackVH<KeyT, ValueT, Config>;
78 typedef ValueMapCallbackVH<KeyT, ValueT, Config> ValueMapCVH;
79 typedef DenseMap<ValueMapCVH, ValueT, DenseMapInfo<ValueMapCVH> > MapT;
87 typedef ValueT mapped_type;
88 typedef std::pair<KeyT, ValueT> value_type;
126 ValueT lookup(const KeyT &Val) const {
128 return I != Map.end() ? I->second : ValueT();
134 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT>
283 typedef typename DenseMapT::mapped_type ValueT; typedef in class:llvm::ValueMapIterator
332 typedef typename DenseMapT::mapped_type ValueT; typedef in class:llvm::ValueMapConstIterator
[all...]
/external/llvm/include/llvm/Support/
H A DYAMLParser.h262 /// BaseT must have a ValueT* member named CurrentEntry and a member function
264 template <class BaseT, class ValueT>
266 : public std::iterator<std::forward_iterator_tag, ValueT> {
271 ValueT *operator ->() const {
276 ValueT &operator *() const {
282 operator ValueT*() const {
/external/clang/lib/Sema/
H A DSemaExprObjC.cpp804 QualType ValueT = Method->param_begin()[0]->getType();
805 const PointerType *PtrValue = ValueT->getAs<PointerType>();
812 << 0 << ValueT
869 QualType ValueT = ValuesT->castAs<PointerType>()->getPointeeType(); local
885 = CheckObjCCollectionLiteralElement(*this, Elements[I].Value, ValueT);

Completed in 97 milliseconds