HomeSort by: relevance | last modified time | path
    Searched defs:ValueT (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
ValueMap.h 46 template<typename KeyT, typename ValueT, typename Config>
84 template<typename KeyT, typename ValueT, typename Config =ValueMapConfig<KeyT>>
86 friend class ValueMapCallbackVH<KeyT, ValueT, Config>;
88 using ValueMapCVH = ValueMapCallbackVH<KeyT, ValueT, Config>;
89 using MapT = DenseMap<ValueMapCVH, ValueT, DenseMapInfo<ValueMapCVH>>;
99 using mapped_type = ValueT;
100 using value_type = std::pair<KeyT, ValueT>;
165 ValueT lookup(const KeyT &Val) const {
167 return I != Map.end() ? I->second : ValueT();
173 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
YAMLParser.h 326 /// BaseT must have a ValueT* member named CurrentEntry and a member function
328 template <class BaseT, class ValueT> class basic_collection_iterator {
331 using value_type = ValueT;
339 ValueT *operator->() const {
344 ValueT &operator*() const {
350 operator ValueT *() const {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExprObjC.cpp 1014 QualType ValueT = Method->parameters()[0]->getType();
1015 const PointerType *PtrValue = ValueT->getAs<PointerType>();
1022 << 0 << ValueT
1082 QualType ValueT = ValuesT->castAs<PointerType>()->getPointeeType();
1098 = CheckObjCCollectionLiteralElement(*this, Element.Value, ValueT);

Completed in 80 milliseconds