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

1 2

  /external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/
pointer.pass.cpp 42 typedef typename std::conditional<!IsArray, A, A[]>::type ValueT;
46 using U1 = std::unique_ptr<ValueT>;
47 using U2 = std::unique_ptr<ValueT, Deleter<ValueT> >;
59 A* p = newValue<ValueT>(expect_alive);
61 std::unique_ptr<ValueT> s(p);
66 A* p = newValue<ValueT>(expect_alive);
68 std::unique_ptr<ValueT, NCDeleter<ValueT> > s(p);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/
pointer.pass.cpp 42 typedef typename std::conditional<!IsArray, A, A[]>::type ValueT;
46 using U1 = std::unique_ptr<ValueT>;
47 using U2 = std::unique_ptr<ValueT, Deleter<ValueT> >;
59 A* p = newValue<ValueT>(expect_alive);
61 std::unique_ptr<ValueT> s(p);
66 A* p = newValue<ValueT>(expect_alive);
68 std::unique_ptr<ValueT, NCDeleter<ValueT> > s(p);
  /external/llvm/unittests/ADT/
TinyPtrVectorTest.cpp 37 typedef typename std::remove_pointer<PtrT>::type ValueT;
42 ValueT TestValues[1024];
  /external/llvm/include/llvm/IR/
ValueMap.h 41 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> &KV)
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
ValueMap.h 38 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> &KV)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
ValueMap.h 47 template<typename KeyT, typename ValueT, typename Config>
86 template<typename KeyT, typename ValueT, typename Config =ValueMapConfig<KeyT>>
88 friend class ValueMapCallbackVH<KeyT, ValueT, Config>;
90 typedef ValueMapCallbackVH<KeyT, ValueT, Config> ValueMapCVH;
91 typedef DenseMap<ValueMapCVH, ValueT, DenseMapInfo<ValueMapCVH>> MapT;
102 typedef ValueT mapped_type;
103 typedef std::pair<KeyT, ValueT> value_type;
167 ValueT lookup(const KeyT &Val) const {
169 return I != Map.end() ? I->second : ValueT();
175 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
ValueMap.h 47 template<typename KeyT, typename ValueT, typename Config>
86 template<typename KeyT, typename ValueT, typename Config =ValueMapConfig<KeyT>>
88 friend class ValueMapCallbackVH<KeyT, ValueT, Config>;
90 typedef ValueMapCallbackVH<KeyT, ValueT, Config> ValueMapCVH;
91 typedef DenseMap<ValueMapCVH, ValueT, DenseMapInfo<ValueMapCVH>> MapT;
102 typedef ValueT mapped_type;
103 typedef std::pair<KeyT, ValueT> value_type;
167 ValueT lookup(const KeyT &Val) const {
169 return I != Map.end() ? I->second : ValueT();
175 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV)
    [all...]
  /hardware/interfaces/keymaster/3.0/vts/functional/
attestation_record.cpp 145 typedef typename TypedTag2ValueType<decltype(ttag)>::type ValueT;
148 ttag, static_cast<ValueT>(ASN1_INTEGER_get(sk_ASN1_INTEGER_value(stack, i))));
155 typedef typename TypedTag2ValueType<decltype(ttag)>::type ValueT;
157 auth_list->push_back(ttag, static_cast<ValueT>(ASN1_INTEGER_get(asn1_int)));
  /hardware/interfaces/keymaster/4.0/support/
attestation_record.cpp 143 typedef typename TypedTag2ValueType<decltype(ttag)>::type ValueT;
146 ttag, static_cast<ValueT>(ASN1_INTEGER_get(sk_ASN1_INTEGER_value(stack, i))));
153 typedef typename TypedTag2ValueType<decltype(ttag)>::type ValueT;
155 auth_list->push_back(ttag, static_cast<ValueT>(ASN1_INTEGER_get(asn1_int)));
  /external/llvm/include/llvm/Support/
YAMLParser.h 303 /// 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/
YAMLParser.h 306 /// 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 {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
YAMLParser.h 306 /// 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 {
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/IR/
ValueMap.h 47 template<typename KeyT, typename ValueT, typename Config>
85 template<typename KeyT, typename ValueT, typename Config =ValueMapConfig<KeyT>>
87 friend class ValueMapCallbackVH<KeyT, ValueT, Config>;
89 using ValueMapCVH = ValueMapCallbackVH<KeyT, ValueT, Config>;
90 using MapT = DenseMap<ValueMapCVH, ValueT, DenseMapInfo<ValueMapCVH>>;
101 using mapped_type = ValueT;
102 using value_type = std::pair<KeyT, ValueT>;
167 ValueT lookup(const KeyT &Val) const {
169 return I != Map.end() ? I->second : ValueT();
175 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
YAMLParser.h 306 /// 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 {
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/IR/
ValueMap.h 47 template<typename KeyT, typename ValueT, typename Config>
85 template<typename KeyT, typename ValueT, typename Config =ValueMapConfig<KeyT>>
87 friend class ValueMapCallbackVH<KeyT, ValueT, Config>;
89 using ValueMapCVH = ValueMapCallbackVH<KeyT, ValueT, Config>;
90 using MapT = DenseMap<ValueMapCVH, ValueT, DenseMapInfo<ValueMapCVH>>;
101 using mapped_type = ValueT;
102 using value_type = std::pair<KeyT, ValueT>;
167 ValueT lookup(const KeyT &Val) const {
169 return I != Map.end() ? I->second : ValueT();
175 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
YAMLParser.h 306 /// 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 {
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/IR/
ValueMap.h 47 template<typename KeyT, typename ValueT, typename Config>
85 template<typename KeyT, typename ValueT, typename Config =ValueMapConfig<KeyT>>
87 friend class ValueMapCallbackVH<KeyT, ValueT, Config>;
89 using ValueMapCVH = ValueMapCallbackVH<KeyT, ValueT, Config>;
90 using MapT = DenseMap<ValueMapCVH, ValueT, DenseMapInfo<ValueMapCVH>>;
101 using mapped_type = ValueT;
102 using value_type = std::pair<KeyT, ValueT>;
167 ValueT lookup(const KeyT &Val) const {
169 return I != Map.end() ? I->second : ValueT();
175 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
YAMLParser.h 311 /// BaseT must have a ValueT* member named CurrentEntry and a member function
313 template <class BaseT, class ValueT>
315 : public std::iterator<std::input_iterator_tag, ValueT> {
320 ValueT *operator->() const {
325 ValueT &operator*() const {
331 operator ValueT *() const {
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/IR/
ValueMap.h 47 template<typename KeyT, typename ValueT, typename Config>
85 template<typename KeyT, typename ValueT, typename Config =ValueMapConfig<KeyT>>
87 friend class ValueMapCallbackVH<KeyT, ValueT, Config>;
89 using ValueMapCVH = ValueMapCallbackVH<KeyT, ValueT, Config>;
90 using MapT = DenseMap<ValueMapCVH, ValueT, DenseMapInfo<ValueMapCVH>>;
101 using mapped_type = ValueT;
102 using value_type = std::pair<KeyT, ValueT>;
167 ValueT lookup(const KeyT &Val) const {
169 return I != Map.end() ? I->second : ValueT();
175 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
YAMLParser.h 311 /// BaseT must have a ValueT* member named CurrentEntry and a member function
313 template <class BaseT, class ValueT>
315 : public std::iterator<std::input_iterator_tag, ValueT> {
320 ValueT *operator->() const {
325 ValueT &operator*() const {
331 operator ValueT *() const {
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/IR/
ValueMap.h 47 template<typename KeyT, typename ValueT, typename Config>
85 template<typename KeyT, typename ValueT, typename Config =ValueMapConfig<KeyT>>
87 friend class ValueMapCallbackVH<KeyT, ValueT, Config>;
89 using ValueMapCVH = ValueMapCallbackVH<KeyT, ValueT, Config>;
90 using MapT = DenseMap<ValueMapCVH, ValueT, DenseMapInfo<ValueMapCVH>>;
101 using mapped_type = ValueT;
102 using value_type = std::pair<KeyT, ValueT>;
167 ValueT lookup(const KeyT &Val) const {
169 return I != Map.end() ? I->second : ValueT();
175 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/
YAMLParser.h 311 /// BaseT must have a ValueT* member named CurrentEntry and a member function
313 template <class BaseT, class ValueT>
315 : public std::iterator<std::input_iterator_tag, ValueT> {
320 ValueT *operator->() const {
325 ValueT &operator*() const {
331 operator ValueT *() const {
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/IR/
ValueMap.h 47 template<typename KeyT, typename ValueT, typename Config>
85 template<typename KeyT, typename ValueT, typename Config =ValueMapConfig<KeyT>>
87 friend class ValueMapCallbackVH<KeyT, ValueT, Config>;
89 using ValueMapCVH = ValueMapCallbackVH<KeyT, ValueT, Config>;
90 using MapT = DenseMap<ValueMapCVH, ValueT, DenseMapInfo<ValueMapCVH>>;
101 using mapped_type = ValueT;
102 using value_type = std::pair<KeyT, ValueT>;
167 ValueT lookup(const KeyT &Val) const {
169 return I != Map.end() ? I->second : ValueT();
175 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Support/
YAMLParser.h 311 /// BaseT must have a ValueT* member named CurrentEntry and a member function
313 template <class BaseT, class ValueT>
315 : public std::iterator<std::input_iterator_tag, ValueT> {
320 ValueT *operator->() const {
325 ValueT &operator*() const {
331 operator ValueT *() const {
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
YAMLParser.h 306 /// 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 {

Completed in 517 milliseconds

1 2