HomeSort by relevance Sort by last modified time
    Searched defs:KeyValuePair (Results 1 - 4 of 4) 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/skia/platform_tools/nacl/
httpd.py 80 def KeyValuePair(str, sep='='):
139 url_params = dict([KeyValuePair(key_value)
  /external/chromium_org/third_party/WebKit/Source/wtf/
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> > { };
  /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...]

Completed in 635 milliseconds