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

/external/llvm/unittests/ADT/
H A DTinyPtrVectorTest.cpp39 typedef typename std::remove_pointer<PtrT>::type ValueT; typedef in class:__anon13150::TinyPtrVectorTest
44 ValueT TestValues[1024];
/external/llvm/include/llvm/IR/
H A DValueMap.h40 template<typename KeyT, typename ValueT, typename Config>
79 template<typename KeyT, typename ValueT, typename Config =ValueMapConfig<KeyT> >
81 friend class ValueMapCallbackVH<KeyT, ValueT, Config>;
82 typedef ValueMapCallbackVH<KeyT, ValueT, Config> ValueMapCVH;
83 typedef DenseMap<ValueMapCVH, ValueT, DenseMapInfo<ValueMapCVH> > MapT;
93 typedef ValueT mapped_type;
94 typedef std::pair<KeyT, ValueT> value_type;
141 ValueT lookup(const KeyT &Val) const {
143 return I != Map.end() ? I->second : ValueT();
149 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT>
303 typedef typename DenseMapT::mapped_type ValueT; typedef in class:llvm::ValueMapIterator
352 typedef typename DenseMapT::mapped_type ValueT; typedef in class:llvm::ValueMapConstIterator
[all...]
/external/llvm/include/llvm/Support/
H A DYAMLParser.h304 /// BaseT must have a ValueT* member named CurrentEntry and a member function
306 template <class BaseT, class ValueT>
308 : public std::iterator<std::forward_iterator_tag, ValueT> {
313 ValueT *operator->() const {
318 ValueT &operator*() const {
324 operator ValueT *() const {
/external/clang/lib/Sema/
H A DSemaExprObjC.cpp935 QualType ValueT = Method->parameters()[0]->getType();
936 const PointerType *PtrValue = ValueT->getAs<PointerType>();
943 << 0 << ValueT
1003 QualType ValueT = ValuesT->castAs<PointerType>()->getPointeeType(); local
1019 = CheckObjCCollectionLiteralElement(*this, Elements[I].Value, ValueT);

Completed in 140 milliseconds