HomeSort by relevance Sort by last modified time
    Searched defs:ValueT (Results 1 - 6 of 6) sorted by null

  /external/llvm/unittests/ADT/
TinyPtrVectorTest.cpp 39 typedef typename remove_pointer<PtrT>::type ValueT;
44 ValueT TestValues[1024];
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
addressmap_unittest.cc 62 typedef pair<int, size_t> ValueT;
70 size_t SizeFunc(const ValueT& v) { return v.second; }
72 static void SetCheckCallback(const void* ptr, ValueT* val,
95 AddressMap<ValueT> map(malloc, free);
96 const ValueT* result;
119 ValueT removed;
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
addressmap_unittest.cc 62 typedef pair<int, size_t> ValueT;
70 size_t SizeFunc(const ValueT& v) { return v.second; }
72 static void SetCheckCallback(const void* ptr, ValueT* val,
95 AddressMap<ValueT> map(malloc, free);
96 const ValueT* result;
119 ValueT removed;
  /external/llvm/include/llvm/ADT/
ValueMap.h 37 template<typename KeyT, typename ValueT, typename Config>
74 template<typename KeyT, typename ValueT, typename Config =ValueMapConfig<KeyT> >
76 friend class ValueMapCallbackVH<KeyT, ValueT, Config>;
77 typedef ValueMapCallbackVH<KeyT, ValueT, Config> ValueMapCVH;
78 typedef DenseMap<ValueMapCVH, ValueT, DenseMapInfo<ValueMapCVH> > MapT;
86 typedef ValueT mapped_type;
87 typedef std::pair<KeyT, ValueT> value_type;
125 ValueT lookup(const KeyT &Val) const {
127 return I != Map.end() ? I->second : ValueT();
133 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV)
    [all...]
  /external/llvm/include/llvm/Support/
YAMLParser.h 261 /// BaseT must have a ValueT* member named CurrentEntry and a member function
263 template <class BaseT, class ValueT>
265 : public std::iterator<std::forward_iterator_tag, ValueT> {
270 ValueT *operator ->() const {
275 ValueT &operator *() const {
281 operator ValueT*() const {
  /external/clang/lib/Sema/
SemaExprObjC.cpp     [all...]

Completed in 98 milliseconds