HomeSort by relevance Sort by last modified time
    Searched refs:KeyValuePair (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
MediaConstraints.java 39 public static class KeyValuePair {
43 public KeyValuePair(String key, String value) {
62 public final List<KeyValuePair> mandatory;
63 public final List<KeyValuePair> optional;
66 mandatory = new LinkedList<KeyValuePair>();
67 optional = new LinkedList<KeyValuePair>();
70 private static String stringifyKeyValuePairList(List<KeyValuePair> list) {
72 for (KeyValuePair pair : list) {
  /external/chromium_org/third_party/WebKit/Source/wtf/
HashIterators.h 36 template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > {
38 typedef KeyValuePair<KeyType, MappedType> ValueType;
59 template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > {
61 typedef KeyValuePair<KeyType, MappedType> ValueType;
89 typedef HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > ConstIterator;
106 typedef HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > ConstIterator;
123 typedef HashTableIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > Iterator;
124 typedef HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > ConstIterator;
146 typedef HashTableIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > Iterator;
147 typedef HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > ConstIterator
    [all...]
HashTraits.h 253 struct KeyValuePair {
256 KeyValuePair(const KeyTypeArg& _key, const ValueTypeArg& _value)
263 KeyValuePair(const KeyValuePair<OtherKeyType, OtherValueType>& other)
274 struct KeyValuePairHashTraits : GenericHashTraits<KeyValuePair<typename KeyTraitsArg::TraitType, typename ValueTraitsArg::TraitType> > {
277 typedef KeyValuePair<typename KeyTraits::TraitType, typename ValueTraits::TraitType> TraitType;
278 typedef KeyValuePair<typename KeyTraits::EmptyValueType, typename ValueTraits::EmptyValueType> EmptyValueType;
281 static EmptyValueType emptyValue() { return KeyValuePair<typename KeyTraits::EmptyValueType, typename ValueTraits::EmptyValueType>(KeyTraits::emptyValue(), ValueTraits::emptyValue()); }
303 struct HashTraits<KeyValuePair<Key, Value> > : public KeyValuePairHashTraits<HashTraits<Key>, HashTraits<Value> > { };
HashTable.h 254 template<typename T, typename U> inline void hashTableSwap(KeyValuePair<T, U>& a, KeyValuePair<T, U>& b)
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/csharp/
std_map.i 85 foreach (System.Collections.Generic.KeyValuePair<$typemap(cstype, K), $typemap(cstype, T)> pair in this) {
92 public void Add(System.Collections.Generic.KeyValuePair<$typemap(cstype, K), $typemap(cstype, T)> item) {
96 public bool Remove(System.Collections.Generic.KeyValuePair<$typemap(cstype, K), $typemap(cstype, T)> item) {
104 public bool Contains(System.Collections.Generic.KeyValuePair<$typemap(cstype, K), $typemap(cstype, T)> item) {
112 public void CopyTo(System.Collections.Generic.KeyValuePair<$typemap(cstype, K), $typemap(cstype, T)>[] array) {
116 public void CopyTo(System.Collections.Generic.KeyValuePair<$typemap(cstype, K), $typemap(cstype, T)>[] array, int arrayIndex) {
129 array.SetValue(new System.Collections.Generic.KeyValuePair<$typemap(cstype, K), $typemap(cstype, T)>(currentKey, this[currentKey]), arrayIndex+i);
133 System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<$typemap(cstype, K), $typemap(cstype, T)>> System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<$typemap(cstype, K), $typemap(cstype, T)>>.GetEnumerator() {
151 System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<$typemap(cstype, K), $typemap(cstype, T)>
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/examples/android/src/org/appspot/apprtc/
AppRTCClient.java 288 for (MediaConstraints.KeyValuePair pair : pcConstraints.mandatory) {
293 for (MediaConstraints.KeyValuePair pair : pcConstraints.optional) {
301 new MediaConstraints.KeyValuePair("DtlsSrtpKeyAgreement", "true"));
344 new MediaConstraints.KeyValuePair(key, value));
355 new MediaConstraints.KeyValuePair(key, value));
AppRTCDemoActivity.java 146 sdpMediaConstraints.mandatory.add(new MediaConstraints.KeyValuePair(
148 sdpMediaConstraints.mandatory.add(new MediaConstraints.KeyValuePair(
284 new MediaConstraints.KeyValuePair("RtpDataChannels", "true"));
  /external/chromium_org/third_party/skia/platform_tools/nacl/
httpd.py 80 def KeyValuePair(str, sep='='):
139 url_params = dict([KeyValuePair(key_value)
  /external/skia/platform_tools/nacl/
httpd.py 80 def KeyValuePair(str, sep='='):
139 url_params = dict([KeyValuePair(key_value)
  /external/clang/include/clang/AST/
ExprObjC.h 228 struct KeyValuePair {
270 KeyValuePair *getKeyValues() {
271 return reinterpret_cast<KeyValuePair *>(this + 1);
274 const KeyValuePair *getKeyValues() const {
275 return reinterpret_cast<const KeyValuePair *>(this + 1);
309 const KeyValuePair &KV = getKeyValues()[Index];
333 // Note: we're taking advantage of the layout of the KeyValuePair struct
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
Heap.h     [all...]
HeapTest.cpp     [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/javatests/src/org/webrtc/
PeerConnectionTest.java 540 new MediaConstraints.KeyValuePair("DtlsSrtpKeyAgreement", "true"));
  /external/clang/lib/AST/
Expr.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 947 ObjCDictionaryLiteral::KeyValuePair *KeyValues = E->getKeyValues();
    [all...]
  /libcore/benchmarks/libs/
caliper.jar 
  /prebuilts/tools/common/m2/repository/org/freemarker/freemarker/2.3.20/
freemarker-2.3.20.jar 

Completed in 971 milliseconds