Searched refs:KeyType (Results 1 - 25 of 40) sorted by relevance

12

/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
H A DZHash.java26 public class ZHash<KeyType, ValueType> implements ZIndexable<KeyType> {
28 private HashMap<KeyType, ValueType> hash;
29 //private LinkedList<KeyType> zlist;
30 //private ListOrganizer<KeyType> listOrganizer;
31 private ZLinkedList<KeyType> zlist;
34 hash = new HashMap<KeyType, ValueType>();
35 zlist = new ZLinkedList<KeyType>();
36 //listOrganizer = new ListOrganizer<KeyType>(zlist);
44 public ValueType get(KeyType ke
[all...]
/external/swiftshader/third_party/PowerVR_SDK/Tools/
H A DPVRTMap.h18 template <typename KeyType, typename DataType>
63 PVRTuint32 GetIndexOf(const KeyType key) const
103 DataType& operator[] (const KeyType key)
139 EPVRTError Remove(const KeyType key)
181 bool Exists(const KeyType key) const
190 CPVRTArray<KeyType> m_Keys; /*!< Array of all the keys. Indices match m_Data. */
/external/libchrome/base/containers/
H A Dmru_cache.h38 template <class KeyType, class ValueType, class CompareType>
40 typedef std::map<KeyType, ValueType, CompareType> Type;
44 template <class KeyType,
53 typedef std::pair<KeyType, PayloadType> value_type;
57 typedef typename MapType<KeyType,
87 iterator Put(const KeyType& key, Payload&& payload) {
110 iterator Get(const KeyType& key) {
123 iterator Peek(const KeyType& key) {
130 const_iterator Peek(const KeyType& key) const {
212 template <class KeyType, clas
[all...]
H A Dsmall_map.h153 template <typename KeyType, typename ValueType>
154 struct select_equal_key< std::map<KeyType, ValueType>, false> {
156 bool operator()(const KeyType& left, const KeyType& right) {
161 template <typename KeyType, typename ValueType>
162 struct select_equal_key< base::hash_map<KeyType, ValueType>, false> {
164 bool operator()(const KeyType& left, const KeyType& right) {
/external/clang/test/SemaCXX/
H A DPR11358.cpp29 template <typename KeyType, typename ValueType>
30 void MapTest(hash_map<KeyType, ValueType> map) {
31 for (hash_map<KeyType, ValueType>::const_iterator it = map.begin(); // expected-error{{missing 'typename'}}
/external/webrtc/webrtc/system_wrappers/test/TestSort/
H A DTestSort.cc24 template<typename KeyType>
27 KeyType key;
48 template<typename DataType, typename KeyType>
51 KeyType keyX = ((const DataType*)dataX)->key;
52 KeyType keyY = ((const DataType*)dataY)->key;
127 template<typename KeyType>
132 KeyType key[DataLength];
133 KeyType keyRef[DataLength];
134 LotsOfData<KeyType> data[DataLength];
135 LotsOfData<KeyType> dataRe
[all...]
/external/eigen/unsupported/Eigen/src/SparseExtra/
H A DRandomSetter.h21 typedef int KeyType; typedef in struct:Eigen::StdMapTraits
22 typedef std::map<KeyType,Scalar> Type;
27 static void setInvalidKey(Type&, const KeyType&) {} argument
49 typedef int KeyType; typedef in struct:Eigen::StdUnorderedMapTraits
50 typedef std::unordered_map<KeyType,Scalar> Type;
55 static void setInvalidKey(Type&, const KeyType&) {} argument
66 typedef int KeyType; typedef in struct:Eigen::GoogleDenseHashMapTraits
67 typedef google::dense_hash_map<KeyType,Scalar> Type;
72 static void setInvalidKey(Type& map, const KeyType& k)
84 typedef int KeyType; typedef in struct:Eigen::GoogleSparseHashMapTraits
90 setInvalidKey(Type&, const KeyType&) argument
164 typedef typename MapTraits<ScalarWrapper>::KeyType KeyType; typedef in class:Eigen::RandomSetter
[all...]
/external/webrtc/talk/app/webrtc/
H A Ddtlsidentitystore.h79 rtc::KeyType key_type,
85 // RequestIdentity should replace the old one that takes rtc::KeyType. When
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,
135 rtc::KeyType key_type_;
159 // One RequestInfo per KeyType. Only touch on the |signaling_thread_|.
H A Ddtlsidentitystore.cc59 WorkerTask(DtlsIdentityStoreImpl* store, rtc::KeyType key_type)
119 const rtc::KeyType key_type_;
142 rtc::KeyType key_type,
164 rtc::KeyType key_type) const {
170 rtc::KeyType key_type,
209 rtc::KeyType key_type, rtc::scoped_ptr<rtc::SSLIdentity> identity) {
/external/webrtc/webrtc/system_wrappers/source/
H A Dsort.cc80 template<typename KeyType>
82 KeyType key_;
170 template <typename KeyType>
172 bool operator()(const SortKey<KeyType>& sort_key_x,
173 const SortKey<KeyType>& sort_key_y) const {
178 template <typename KeyType>
180 KeyType operator()(const SortKey<KeyType>& sort_key,
205 template<typename KeyType>
207 SortKey<KeyType>*
[all...]
/external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES3/
H A DPVRTTextureAPI.h22 template <typename KeyType, typename DataType>
/external/libchrome/base/
H A Did_map.h40 using KeyType = K;
43 typedef base::hash_map<KeyType, T*> HashTable;
67 KeyType Add(T* data) {
70 KeyType this_id = next_id_;
81 void AddWithID(T* data, KeyType id) {
88 void Remove(KeyType id) {
109 T* Replace(KeyType id, T* new_data) {
139 T* Lookup(KeyType id) const {
198 KeyType GetCurrentKey() const {
270 std::set<KeyType> removed_ids
[all...]
/external/webrtc/webrtc/base/
H A Dsslidentity.h121 enum KeyType { KT_RSA, KT_ECDSA, KT_LAST, KT_DEFAULT = KT_RSA }; enum in namespace:rtc
137 // Generate a KeyParams object from a simple KeyType, using default params.
138 explicit KeyParams(KeyType key_type = KT_DEFAULT);
156 KeyType type() const { return type_; }
159 KeyType type_;
166 // TODO(hbos): Remove once rtc::KeyType (to be modified) and
168 // appropriately we can change KeyType enum -> class without breaking Chromium.
169 KeyType IntKeyTypeFamilyToKeyType(int key_type_family);
194 KeyType key_type) {
H A Dsslstreamadapter.cc90 KeyType key_type) {
H A Dsslstreamadapter.h196 KeyType key_type);
H A Dsslidentity.cc38 KeyParams::KeyParams(KeyType key_type) {
87 KeyType IntKeyTypeFamilyToKeyType(int key_type_family) {
88 return static_cast<KeyType>(key_type_family);
H A Dopensslstreamadapter.h114 KeyType key_type);
/external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES2/
H A DPVRTTextureAPI.h22 template <typename KeyType, typename DataType>
/external/google-breakpad/src/processor/
H A Dstatic_map_unittest.cc42 typedef int KeyType; typedef
43 typedef google_breakpad::StaticMap< KeyType, ValueType > TestMap;
44 typedef std::map< KeyType, ValueType > StdMap;
107 sizeof(uint32_t) + kNumNodes * (sizeof(uint32_t) + sizeof(KeyType));
124 sizeof(uint32_t) + kNumNodes * (sizeof(uint32_t) + sizeof(KeyType));
129 KeyType* keys = reinterpret_cast<KeyType*>(
174 sizeof(uint32_t) + sizeof(KeyType) + sizeof(ValueType);
240 void FindTester(int test_case, const KeyType &key) {
246 void LowerBoundTester(int test_case, const KeyType
[all...]
/external/vixl/test/
H A Dtest-invalset.cc36 typedef ptrdiff_t KeyType; typedef in namespace:vixl
43 Obj(KeyType key, ValType val) : key_(key), val_(val) {}
44 KeyType key_;
63 static const KeyType kInvalidKey = PTRDIFF_MAX;
69 KeyType,
75 inline KeyType InvalSet<Obj,
77 KeyType,
86 KeyType,
89 kReclaimFactor>::SetKey(Obj* obj, KeyType key) {
/external/vixl/src/
H A Dinvalset-vixl.h69 // 'ElementType' and 'KeyType' are respectively the types of the elements and
77 class KeyType, \
78 KeyType INVALID_KEY, \
84 ElementType, N_PREALLOCATED_ELEMENTS, KeyType, INVALID_KEY, RECLAIM_FROM, \
97 static const KeyType kInvalidKey = INVALID_KEY;
124 KeyType GetMinElementKey();
127 static KeyType GetKey(const ElementType& element);
128 static void SetKey(ElementType* element, KeyType key);
131 typedef KeyType _KeyType;
201 KeyType cached_min_key
252 typedef typename S::_KeyType KeyType; typedef in class:vixl::InvalSetIterator
[all...]
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
H A DPeerConnection.java133 /** Java version of rtc::KeyType */
134 public enum KeyType { enum in class:PeerConnection
154 public KeyType keyType;
167 keyType = KeyType.ECDSA;
/external/webrtc/talk/app/webrtc/test/
H A Dfakedtlsidentitystore.h116 rtc::KeyType key_type,
/external/protobuf/java/core/src/test/java/com/google/protobuf/
H A DMapForProto2Test.java432 private static <KeyType, ValueType>
433 Message newMapEntry(Message.Builder builder, String name, KeyType key, ValueType value) {
452 private static <KeyType, ValueType>
453 Map<KeyType, ValueType> mapForValues(
454 KeyType key1, ValueType value1, KeyType key2, ValueType value2) {
455 Map<KeyType, ValueType> map = new HashMap<KeyType, ValueType>();
H A DMapTest.java525 private static <KeyType, ValueType>
526 Message newMapEntry(Message.Builder builder, String name, KeyType key, ValueType value) {
545 private static <KeyType, ValueType>
546 Map<KeyType, ValueType> mapForValues(
547 KeyType key1, ValueType value1, KeyType key2, ValueType value2) {
548 Map<KeyType, ValueType> map = new HashMap<KeyType, ValueType>();

Completed in 479 milliseconds

12