HomeSort by relevance Sort by last modified time
    Searched full:keytype (Results 1 - 25 of 299) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
ZHash.java 26 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 key) {
    [all...]
  /libcore/support/src/test/java/libcore/javax/net/ssl/
ForwardingX509ExtendedKeyManager.java 38 public String chooseClientAlias(String[] keyType, Principal[] issuers, Socket socket) {
39 return delegate.chooseClientAlias(keyType, issuers, socket);
43 public String chooseServerAlias(String keyType, Principal[] issuers, Socket socket) {
44 return delegate.chooseServerAlias(keyType, issuers, socket);
53 public String[] getClientAliases(String keyType, Principal[] issuers) {
54 return delegate.getClientAliases(keyType, issuers);
58 public String[] getServerAliases(String keyType, Principal[] issuers) {
59 return delegate.getServerAliases(keyType, issuers);
63 public String chooseEngineClientAlias(String[] keyType, Principal[] issuers, SSLEngine engine) {
64 return delegate.chooseEngineClientAlias(keyType, issuers, engine)
    [all...]
TestKeyManager.java 66 for (String keyType : keyTypes) {
67 out.print(keyType);
77 for (String keyType : keyTypes) {
78 assertKeyType(keyType);
82 private void assertKeyType(String keyType) {
83 if (!StandardNames.KEY_TYPES.contains(keyType)) {
84 throw new AssertionError("Unexpected key type " + keyType);
88 public String chooseServerAlias(String keyType, Principal[] issuers, Socket socket) {
90 out.print(" | keyType: ");
91 out.print(keyType);
    [all...]
  /frameworks/compile/mclinker/include/mcld/Target/
KeyEntryMap.h 18 * \brief KeyEntryMap is a <const KeyType*, ENTRY*> map.
23 typedef KEY KeyType;
43 const KeyType* key;
56 const EntryType* lookUp(const KeyType& pKey) const;
57 EntryType* lookUp(const KeyType& pKey);
60 const EntryType* lookUpFirstEntry(const KeyType& pKey) const;
61 EntryType* lookUpFirstEntry(const KeyType& pKey);
64 const EntryType* lookUpSecondEntry(const KeyType& pKey) const;
65 EntryType* lookUpSecondEntry(const KeyType& pKey);
67 void record(const KeyType& pKey, EntryType& pEntry)
    [all...]
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
KeyManagerFactoryTest.java 163 for (String keyType : keyTypes) {
164 String[] aliases = km.getClientAliases(keyType, null);
165 if (empty || keyType == null || keyType.isEmpty()) {
166 assertNull(keyType, aliases);
169 assertNotNull(keyType, aliases);
171 test_X509KeyManager_alias(km, alias, keyType, false, empty);
174 for (String keyType : keyTypes) {
175 String[] aliases = km.getServerAliases(keyType, null);
176 if (empty || keyType == null || keyType.isEmpty())
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/javabeans/
FrontDoor.java 19 private String keytype; field in class:FrontDoor
30 return keytype;
33 public void setKeytype(String keytype) {
34 this.keytype = keytype;
  /external/snakeyaml/src/test/resources/javabeans/
house-dump1.yaml 4 keytype: qwerty123
house-dump3.yaml 4 keytype: qwerty123
house-dump2.yaml 5 keytype: qwerty123
  /external/guice/extensions/multibindings/src/com/google/inject/multibindings/
RealElement.java 33 private final String keyType;
35 RealElement(String setName, Element.Type type, String keyType) {
36 this(setName, type, keyType, nextUniqueId.incrementAndGet());
39 RealElement(String setName, Element.Type type, String keyType, int uniqueId) {
43 this.keyType = keyType;
58 @Override public String keyType() {
59 return keyType;
68 + ",uniqueId=" + uniqueId + ", type=" + type + ", keyType=" + keyType + ")"
    [all...]
  /external/conscrypt/src/test/java/org/conscrypt/
SSLParametersImplTest.java 30 String keyType = SSLParametersImpl.getClientKeyType(b);
33 assertEquals(byteString, "RSA", keyType);
36 assertEquals(byteString, "DH_RSA", keyType);
39 assertEquals(byteString, "EC", keyType);
42 assertEquals(byteString, "EC_RSA", keyType);
45 assertEquals(byteString, "EC_EC", keyType);
48 assertNull(byteString, keyType);
  /external/clang/test/SemaCXX/
PR11358.cpp 29 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/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
EnumBiMap.java 42 private transient Class<K> keyType;
49 * @param keyType the key type
53 create(Class<K> keyType, Class<V> valueType) {
54 return new EnumBiMap<K, V>(keyType, valueType);
74 private EnumBiMap(Class<K> keyType, Class<V> valueType) {
75 super(WellBehavedMap.wrap(new EnumMap<K, V>(keyType)),
77 this.keyType = keyType;
83 return ((EnumBiMap<K, ?>) map).keyType();
86 return ((EnumHashBiMap<K, ?>) map).keyType();
    [all...]
EnumHashBiMap.java 44 private transient Class<K> keyType;
49 * @param keyType the key type
52 create(Class<K> keyType) {
53 return new EnumHashBiMap<K, V>(keyType);
73 private EnumHashBiMap(Class<K> keyType) {
75 new EnumMap<K, V>(keyType)),
77 keyType.getEnumConstants().length));
78 this.keyType = keyType;
97 public Class<K> keyType() {
    [all...]
  /external/webrtc/webrtc/system_wrappers/test/TestSort/
TestSort.cc 24 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> dataRef[DataLength]
    [all...]
  /frameworks/compile/mclinker/include/mcld/ADT/
HashEntry.tcc 12 template <typename KeyType, typename ValueType, typename KeyCompare>
13 HashEntry<KeyType, ValueType, KeyCompare>::HashEntry(const KeyType& pKey)
17 template <typename KeyType, typename ValueType, typename KeyCompare>
18 HashEntry<KeyType, ValueType, KeyCompare>::~HashEntry() {
21 template <typename KeyType, typename ValueType, typename KeyCompare>
22 bool HashEntry<KeyType, ValueType, KeyCompare>::compare(const KeyType& pKey) {
HashEntry.h 32 template <typename KeyType, typename ValueType, typename KeyCompare>
35 typedef KeyType key_type;
40 typedef HashEntry<KeyType, ValueType, KeyCompare> Self;
44 explicit HashEntry(const KeyType& pKey);
48 KeyType& key() { return m_Key; }
50 const KeyType& key() const { return m_Key; }
61 KeyType m_Key;
  /external/guava/guava/src/com/google/common/collect/
EnumBiMap.java 46 private transient Class<K> keyType;
53 * @param keyType the key type
57 create(Class<K> keyType, Class<V> valueType) {
58 return new EnumBiMap<K, V>(keyType, valueType);
78 private EnumBiMap(Class<K> keyType, Class<V> valueType) {
79 super(WellBehavedMap.wrap(new EnumMap<K, V>(keyType)),
81 this.keyType = keyType;
87 return ((EnumBiMap<K, ?>) map).keyType();
90 return ((EnumHashBiMap<K, ?>) map).keyType();
    [all...]
EnumHashBiMap.java 49 private transient Class<K> keyType;
54 * @param keyType the key type
57 create(Class<K> keyType) {
58 return new EnumHashBiMap<K, V>(keyType);
78 private EnumHashBiMap(Class<K> keyType) {
80 new EnumMap<K, V>(keyType)),
82 keyType.getEnumConstants().length));
83 this.keyType = keyType;
102 public Class<K> keyType() {
    [all...]
  /external/webrtc/webrtc/system_wrappers/source/
sort.cc 80 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>*& ptr_sort_key
    [all...]
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
KeyManagerImplTest.java 38 String[] keyType = { "RSA", "DSA" };
39 String al = km.chooseClientAlias(keyType, null, new Socket());
42 al = km.chooseEngineClientAlias(keyType, null, new SSLEngineImpl(null));
65 String[] keyType = { "RSA", "DSA" };
66 String al = km.chooseClientAlias(keyType, null, new Socket());
69 al = km.chooseEngineClientAlias(keyType, null, new SSLEngineImpl(null));
  /frameworks/compile/mclinker/include/mcld/Support/
UniqueGCFactory.h 23 template <typename KeyType, typename DataType, size_t ChunkSize>
28 typedef std::map<KeyType, DataType*> KeyMap;
40 DataType* find(const KeyType& pKey) {
47 const DataType* find(const KeyType& pKey) const {
54 DataType* produce(const KeyType& pKey, bool& pExist) {
67 DataType* produce(const KeyType& pKey, const DataType& pValue, bool& pExist) {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/
ItsSerializer.java 300 private static MetadataEntry serializeEntry(Type keyType, Object keyObj, CameraMetadata md)
308 } else if (keyType == Float.class) {
315 } else if (keyType == Integer.class || keyType == Long.class || keyType == Byte.class ||
316 keyType == Boolean.class || keyType == String.class) {
318 } else if (keyType == Rational.class) {
320 } else if (keyType == Size.class) {
322 } else if (keyType == SizeF.class)
    [all...]
  /external/autotest/site_utils/bootperf-bin/
perfprinter.py 10 def PrintRawData(reader, dirlist, keytype, keylist):
16 @param keytype Selector specifying the desired key set (e.g.
23 keyset = results.KeySet(keytype)
39 def PrintStatisticsSummary(reader, dirlist, keytype, keylist):
45 @param keytype Selector specifying the desired key set (e.g.
50 if (keytype == resultset.TestResultSet.BOOTTIME_KEYSET or
51 keytype == resultset.TestResultSet.FIRMWARE_KEYSET):
62 keyset = results.KeySet(keytype)
  /external/libchrome/base/containers/
mru_cache.h 37 template <class KeyType, class ValueType>
39 typedef std::map<KeyType, ValueType> Type;
45 template <class KeyType, class PayloadType, class DeletorType,
51 typedef std::pair<KeyType, PayloadType> value_type;
55 typedef typename MapType<KeyType,
93 iterator Put(const KeyType& key, const PayloadType& payload) {
116 iterator Get(const KeyType& key) {
129 iterator Peek(const KeyType& key) {
136 const_iterator Peek(const KeyType& key) const {
232 template <class KeyType, class PayloadType
    [all...]

Completed in 2022 milliseconds

1 2 3 4 5 6 7 8 91011>>