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

/external/llvm/unittests/ADT/
H A DTinyPtrVectorTest.cpp37 typedef typename std::remove_pointer<PtrT>::type ValueT; typedef in class:__anon13723::TinyPtrVectorTest
42 ValueT TestValues[1024];
/external/llvm/include/llvm/IR/
H A DValueMap.h41 template<typename KeyT, typename ValueT, typename Config>
80 template<typename KeyT, typename ValueT, typename Config =ValueMapConfig<KeyT> >
82 friend class ValueMapCallbackVH<KeyT, ValueT, Config>;
83 typedef ValueMapCallbackVH<KeyT, ValueT, Config> ValueMapCVH;
84 typedef DenseMap<ValueMapCVH, ValueT, DenseMapInfo<ValueMapCVH> > MapT;
97 typedef ValueT mapped_type;
98 typedef std::pair<KeyT, ValueT> value_type;
160 ValueT lookup(const KeyT &Val) const {
162 return I != Map.end() ? I->second : ValueT();
168 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT>
322 typedef typename DenseMapT::mapped_type ValueT; typedef in class:llvm::ValueMapIterator
371 typedef typename DenseMapT::mapped_type ValueT; typedef in class:llvm::ValueMapConstIterator
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DValueMap.h38 template<typename KeyT, typename ValueT, typename Config, typename ValueInfoT>
75 template<typename KeyT, typename ValueT, typename Config = ValueMapConfig<KeyT>,
76 typename ValueInfoT = DenseMapInfo<ValueT> >
78 friend class ValueMapCallbackVH<KeyT, ValueT, Config, ValueInfoT>;
79 typedef ValueMapCallbackVH<KeyT, ValueT, Config, ValueInfoT> ValueMapCVH;
80 typedef DenseMap<ValueMapCVH, ValueT, DenseMapInfo<ValueMapCVH>,
89 typedef ValueT mapped_type;
90 typedef std::pair<KeyT, ValueT> value_type;
128 ValueT lookup(const KeyT &Val) const {
135 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT>
273 typedef typename DenseMapT::mapped_type ValueT; typedef in class:llvm::ValueMapIterator
322 typedef typename DenseMapT::mapped_type ValueT; typedef in class:llvm::ValueMapConstIterator
[all...]
/external/llvm/include/llvm/Support/
H A DYAMLParser.h303 /// BaseT must have a ValueT* member named CurrentEntry and a member function
305 template <class BaseT, class ValueT>
307 : public std::iterator<std::input_iterator_tag, ValueT> {
312 ValueT *operator->() const {
317 ValueT &operator*() const {
323 operator ValueT *() const {
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DYAMLParser.h306 /// BaseT must have a ValueT* member named CurrentEntry and a member function
308 template <class BaseT, class ValueT>
310 : public std::iterator<std::input_iterator_tag, ValueT> {
315 ValueT *operator->() const {
320 ValueT &operator*() const {
326 operator ValueT *() const {
/external/clang/lib/Sema/
H A DSemaExprObjC.cpp933 QualType ValueT = Method->parameters()[0]->getType();
934 const PointerType *PtrValue = ValueT->getAs<PointerType>();
941 << 0 << ValueT
1001 QualType ValueT = ValuesT->castAs<PointerType>()->getPointeeType(); local
1017 = CheckObjCCollectionLiteralElement(*this, Element.Value, ValueT);

Completed in 3448 milliseconds