Searched refs:key_type (Results 1 - 25 of 98) sorted by relevance

1234

/external/webrtc/talk/app/webrtc/
H A Ddtlsidentitystore.cc59 WorkerTask(DtlsIdentityStoreImpl* store, rtc::KeyType key_type) argument
62 key_type_(key_type) {
142 rtc::KeyType key_type,
147 GenerateIdentity(key_type, observer);
164 rtc::KeyType key_type) const {
166 return request_info_[key_type].free_identity_.get() != nullptr;
170 rtc::KeyType key_type,
174 // Enqueue observer to be informed when generation of |key_type| is completed.
176 request_info_[key_type].request_observers_.push(observer);
179 if (request_info_[key_type]
141 RequestIdentity( rtc::KeyType key_type, const rtc::scoped_refptr<webrtc::DtlsIdentityRequestObserver>& observer) argument
169 GenerateIdentity( rtc::KeyType key_type, const rtc::scoped_refptr<webrtc::DtlsIdentityRequestObserver>& observer) argument
208 OnIdentityGenerated( rtc::KeyType key_type, rtc::scoped_ptr<rtc::SSLIdentity> identity) argument
[all...]
H A Ddtlsidentitystore.h79 rtc::KeyType key_type,
82 RequestIdentity(rtc::KeyParams(key_type), observer);
109 rtc::KeyType key_type,
116 bool HasFreeIdentityForTesting(rtc::KeyType key_type) const;
120 rtc::KeyType key_type,
122 void OnIdentityGenerated(rtc::KeyType key_type,
131 IdentityResult(rtc::KeyType key_type, argument
133 : key_type_(key_type), identity_(std::move(identity)) {}
78 RequestIdentity( rtc::KeyType key_type, const rtc::scoped_refptr<DtlsIdentityRequestObserver>& observer) argument
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/file/
H A Dkey.py37 def __init__(self, bucket, name, fp=None, key_type=KEY_REGULAR_FILE):
46 self.key_type = key_type
47 if key_type == self.KEY_STREAM_READABLE:
50 elif key_type == self.KEY_STREAM_WRITABLE:
75 if self.key_type & self.KEY_STREAM_WRITABLE:
77 elif self.key_type & self.KEY_STREAM_READABLE:
121 if self.key_type & self.KEY_STREAM_READABLE:
123 elif self.key_type & self.KEY_STREAM_WRITABLE:
192 return (self.key_type
[all...]
H A Dbucket.py72 key_type=Key.KEY_REGULAR_FILE):
90 return Key(self.name, '-', key_type=Key.KEY_STREAM_READABLE)
95 def new_key(self, key_name=None, key_type=Key.KEY_REGULAR_FILE):
106 return Key(self.name, '-', key_type=Key.KEY_STREAM_WRITABLE)
/external/libbrillo/brillo/
H A Dmap_utils.h17 inline std::set<typename T::key_type> GetMapKeys(const T& map) {
18 std::set<typename T::key_type> keys;
27 inline std::vector<typename T::key_type> GetMapKeysAsVector(const T& map) {
28 std::vector<typename T::key_type> keys;
47 inline std::vector<std::pair<typename T::key_type, typename T::mapped_type>>
49 std::vector<std::pair<typename T::key_type, typename T::mapped_type>> vector;
61 typename T::key_type key,
/external/libcxx/test/std/containers/unord/unord.map/
H A Dtypes.pass.cpp18 // typedef Key key_type;
23 // typedef pair<const key_type, mapped_type> value_type;
40 static_assert((std::is_same<C::key_type, char>::value), "");
42 static_assert((std::is_same<C::hasher, std::hash<C::key_type> >::value), "");
43 static_assert((std::is_same<C::key_equal, std::equal_to<C::key_type> >::value), "");
45 static_assert((std::is_same<C::value_type, std::pair<const C::key_type, C::mapped_type> >::value), "");
57 static_assert((std::is_same<C::key_type, char>::value), "");
59 static_assert((std::is_same<C::hasher, std::hash<C::key_type> >::value), "");
60 static_assert((std::is_same<C::key_equal, std::equal_to<C::key_type> >::value), "");
62 static_assert((std::is_same<C::value_type, std::pair<const C::key_type,
[all...]
/external/libcxx/test/std/containers/unord/unord.multimap/
H A Dtypes.pass.cpp18 // typedef Key key_type;
23 // typedef pair<const key_type, mapped_type> value_type;
40 static_assert((std::is_same<C::key_type, char>::value), "");
42 static_assert((std::is_same<C::hasher, std::hash<C::key_type> >::value), "");
43 static_assert((std::is_same<C::key_equal, std::equal_to<C::key_type> >::value), "");
45 static_assert((std::is_same<C::value_type, std::pair<const C::key_type, C::mapped_type> >::value), "");
57 static_assert((std::is_same<C::key_type, char>::value), "");
59 static_assert((std::is_same<C::hasher, std::hash<C::key_type> >::value), "");
60 static_assert((std::is_same<C::key_equal, std::equal_to<C::key_type> >::value), "");
62 static_assert((std::is_same<C::value_type, std::pair<const C::key_type,
[all...]
/external/webrtc/webrtc/system_wrappers/include/
H A Dsort.h56 // key_type Enum corresponding to the type of the key array.
61 uint32_t size_of_element, Type key_type);
/external/libcxx/test/std/containers/unord/unord.multiset/
H A Dtypes.pass.cpp19 // typedef value_type key_type;
40 static_assert((std::is_same<C::key_type, short>::value), "");
41 static_assert((std::is_same<C::hasher, std::hash<C::key_type> >::value), "");
42 static_assert((std::is_same<C::key_equal, std::equal_to<C::key_type> >::value), "");
56 static_assert((std::is_same<C::key_type, short>::value), "");
57 static_assert((std::is_same<C::hasher, std::hash<C::key_type> >::value), "");
58 static_assert((std::is_same<C::key_equal, std::equal_to<C::key_type> >::value), "");
/external/libcxx/test/std/containers/unord/unord.set/
H A Dtypes.pass.cpp19 // typedef value_type key_type;
40 static_assert((std::is_same<C::key_type, short>::value), "");
41 static_assert((std::is_same<C::hasher, std::hash<C::key_type> >::value), "");
42 static_assert((std::is_same<C::key_equal, std::equal_to<C::key_type> >::value), "");
56 static_assert((std::is_same<C::key_type, short>::value), "");
57 static_assert((std::is_same<C::hasher, std::hash<C::key_type> >::value), "");
58 static_assert((std::is_same<C::key_equal, std::equal_to<C::key_type> >::value), "");
/external/chromium-trace/catapult/third_party/closure_linter/closure_linter/
H A Dtypeannotation.py34 key_type: The name part before a colon.
43 TypeAnnotation instances for sub_types, key_type or return_type.
69 self.key_type = None
81 key_type = self.sub_types and self.sub_types[0].key_type
82 return self.IsFunction() and key_type.identifier == 'new'
131 keyword = '%s:' % repr(self.key_type) if self.key_type else ''
184 if self.key_type:
185 yield self.key_type
[all...]
/external/deqp/framework/delibs/decpp/
H A DdeSTLUtil.hpp42 inline bool contains (const C& container, const typename C::key_type& item)
78 const typename M::key_type& key)
89 const typename M::key_type& key,
99 const typename M::mapped_type& lookup (const M& map, const typename M::key_type& key)
110 bool insert (M& map, const typename M::key_type& key, const typename M::mapped_type& value)
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramStateTrait.h62 typedef Key key_type; typedef in struct:clang::ento::ProgramStatePartialTrait
73 static lookup_type Lookup(data_type B, key_type K) {
76 static data_type Set(data_type B, key_type K, value_type E,context_type F){
80 static data_type Remove(data_type B, key_type K, context_type F) {
113 typedef Key key_type; typedef in struct:clang::ento::ProgramStatePartialTrait
124 static data_type Add(data_type B, key_type K, context_type F) {
128 static data_type Remove(data_type B, key_type K, context_type F) {
132 static bool Contains(data_type B, key_type K) {
155 typedef T key_type; typedef in struct:clang::ento::ProgramStatePartialTrait
158 static data_type Add(data_type L, key_type
[all...]
/external/parameter-framework/asio/include/asio/detail/
H A Dreactor_op_queue.hpp32 typedef Descriptor key_type; typedef in class:asio::detail::reactor_op_queue
41 typedef typename hash_map<key_type, mapped_type>::value_type value_type;
42 typedef typename hash_map<key_type, mapped_type>::iterator iterator;
157 hash_map<key_type, mapped_type> operations_;
/external/parameter-framework/asio-1.10.6/include/asio/detail/
H A Dreactor_op_queue.hpp32 typedef Descriptor key_type; typedef in class:asio::detail::reactor_op_queue
41 typedef typename hash_map<key_type, mapped_type>::value_type value_type;
42 typedef typename hash_map<key_type, mapped_type>::iterator iterator;
157 hash_map<key_type, mapped_type> operations_;
/external/webrtc/webrtc/base/
H A Dsslstreamadapter.cc90 KeyType key_type) {
91 return OpenSSLStreamAdapter::GetDefaultSslCipherForTest(version, key_type);
89 GetDefaultSslCipherForTest(SSLProtocolVersion version, KeyType key_type) argument
H A Dsslidentity.h138 explicit KeyParams(KeyType key_type = KT_DEFAULT);
194 KeyType key_type) {
195 return Generate(common_name, KeyParams(key_type));
193 Generate(const std::string& common_name, KeyType key_type) argument
/external/libchrome/base/containers/
H A Dsmall_map.h138 bool operator()(const typename M::key_type& left,
139 const typename M::key_type& right) {
194 typedef typename NormalMap::key_type key_type; typedef in class:base::SmallMap
387 iterator find(const key_type& key) {
401 const_iterator find(const key_type& key) const {
416 data_type& operator[](const key_type& key) {
528 size_t erase(const key_type& key) {
535 size_t count(const key_type& key) const {
/external/clang/test/CodeGenCXX/
H A Ddebug-info-use-after-free.cpp195 typedef void key_type; typedef in class:__gnu_cxx::hashtable
221 typedef typename _Ht::key_type key_type; typedef in class:__gnu_cxx::hash_map
/external/v8/src/
H A Dtype-info.h42 IcCheckType* key_type);
48 IcCheckType* key_type);
54 IcCheckType* key_type);
/external/libcxx/test/std/containers/associative/map/
H A Dtypes.pass.cpp18 // typedef Key key_type;
20 // typedef pair<const key_type, mapped_type> value_type;
41 static_assert((std::is_same<C::key_type, int>::value), "");
56 static_assert((std::is_same<C::key_type, int>::value), "");
/external/libcxx/test/std/containers/associative/multimap/
H A Dtypes.pass.cpp18 // typedef Key key_type;
20 // typedef pair<const key_type, mapped_type> value_type;
41 static_assert((std::is_same<C::key_type, int>::value), "");
56 static_assert((std::is_same<C::key_type, int>::value), "");
/external/libcxx/test/std/containers/associative/multiset/
H A Dtypes.pass.cpp18 // typedef Key key_type;
19 // typedef key_type value_type;
41 static_assert((std::is_same<C::key_type, int>::value), "");
56 static_assert((std::is_same<C::key_type, int>::value), "");
/external/libcxx/test/std/containers/associative/set/
H A Dtypes.pass.cpp18 // typedef Key key_type;
19 // typedef key_type value_type;
41 static_assert((std::is_same<C::key_type, int>::value), "");
56 static_assert((std::is_same<C::key_type, int>::value), "");
/external/webrtc/talk/app/webrtc/test/
H A Dfakedtlsidentitystore.h116 rtc::KeyType key_type,
120 RTC_DCHECK(key_type == rtc::KT_RSA || should_fail_);

Completed in 1677 milliseconds

1234