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 std::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/IR/
ValueMap.h 37 template<typename KeyT, typename ValueT, typename Config>
76 template<typename KeyT, typename ValueT, typename Config =ValueMapConfig<KeyT> >
78 friend class ValueMapCallbackVH<KeyT, ValueT, Config>;
79 typedef ValueMapCallbackVH<KeyT, ValueT, Config> ValueMapCVH;
80 typedef DenseMap<ValueMapCVH, ValueT, DenseMapInfo<ValueMapCVH> > MapT;
88 typedef ValueT mapped_type;
89 typedef std::pair<KeyT, ValueT> value_type;
128 ValueT lookup(const KeyT &Val) const {
130 return I != Map.end() ? I->second : ValueT();
136 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV)
    [all...]
  /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>
277 : public std::iterator<std::forward_iterator_tag, ValueT> {
282 ValueT *operator->() const {
287 ValueT &operator*() const {
293 operator ValueT *() const {
  /external/clang/lib/Sema/
SemaExprObjC.cpp     [all...]

Completed in 253 milliseconds