HomeSort by relevance Sort by last modified time
    Searched defs:Dict (Results 1 - 25 of 51) sorted by null

1 2 3

  /hardware/google/av/media/sfplugin/
ReflectedParamUpdater.h 67 struct Dict : public std::map<std::string, Value> {
68 Dict() = default;
143 * \param params[in] Dict object with field name to value pairs.
147 const Dict &params,
163 * \param params[in] Dict object with field name to value pairs.
167 const Dict &params,
174 * \return a Dict object containing the known parameters
176 Dict getParams(
179 Dict getParams(
197 const Dict &params
    [all...]
  /external/python/cpython3/Lib/test/
test_dict_version.py 13 type2test = dict
17 self.dict = None
60 # dict.copy() must create a dictionary with a new unique version
81 # setting a key to the same value with dict.__setitem__
85 # setting a key to the same value with dict.update
106 # with dict.__setitem__() must change the version
110 # with dict.update() must change the version
119 # setting a key with dict.setdefault() must change the version
128 # deleting a key with dict.__delitem__() must change the version
148 # popitem() must change the version if the dict is not empt
    [all...]
  /external/tensorflow/tensorflow/contrib/labeled_tensor/python/ops/
_typecheck.py 166 class Dict(Mapping):
167 """A typed dict.
173 return (isinstance(instance, dict)
174 and super(Dict, self).__instancecheck__(instance))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
fixcid.py 243 if Dict.has_key(found):
244 subst = Dict[found]
274 Dict = {}
307 if Dict.has_key(key):
309 err('%s:%r: warning: previous: %r\n' % (substfile, lineno, Dict[key]))
310 Dict[key] = value
  /external/python/cpython2/Tools/scripts/
fixcid.py 245 if found in Dict:
246 subst = Dict[found]
276 Dict = {}
309 if key in Dict:
311 err('%s:%r: warning: previous: %r\n' % (substfile, lineno, Dict[key]))
312 Dict[key] = value
  /external/python/cpython3/Tools/scripts/
fixcid.py 245 if found in Dict:
246 subst = Dict[found]
276 Dict = {}
309 if key in Dict:
311 err('%s:%r: warning: previous: %r\n' % (substfile, lineno, Dict[key]))
312 Dict[key] = value
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
plistlib.py 28 pl = dict(
33 aDict=dict(
57 "Plist", "Data", "Dict"
59 # Note: the Plist and Dict classes have been deprecated.
251 elif isinstance(value, dict):
274 self.beginElement("dict")
282 self.endElement("dict")
291 class _InternalDict(dict):
293 # This class is needed while Dict is scheduled for deprecation:
294 # we only need to warn when a *user* instantiates Dict or when
    [all...]
  /external/python/cpython2/Lib/
plistlib.py 28 pl = dict(
33 aDict=dict(
57 "Plist", "Data", "Dict"
59 # Note: the Plist and Dict classes have been deprecated.
251 elif isinstance(value, dict):
274 self.beginElement("dict")
282 self.endElement("dict")
291 class _InternalDict(dict):
293 # This class is needed while Dict is scheduled for deprecation:
294 # we only need to warn when a *user* instantiates Dict or whe
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
plistlib.py 28 pl = dict(
33 aDict=dict(
57 "Plist", "Data", "Dict"
59 # Note: the Plist and Dict classes have been deprecated.
251 elif isinstance(value, dict):
274 self.beginElement("dict")
282 self.endElement("dict")
291 class _InternalDict(dict):
293 # This class is needed while Dict is scheduled for deprecation:
294 # we only need to warn when a *user* instantiates Dict or whe
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
plistlib.py 28 pl = dict(
33 aDict=dict(
57 "Plist", "Data", "Dict"
59 # Note: the Plist and Dict classes have been deprecated.
251 elif isinstance(value, dict):
274 self.beginElement("dict")
282 self.endElement("dict")
291 class _InternalDict(dict):
293 # This class is needed while Dict is scheduled for deprecation:
294 # we only need to warn when a *user* instantiates Dict or whe
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
plistlib.py 28 pl = dict(
33 aDict=dict(
57 "Plist", "Data", "Dict"
59 # Note: the Plist and Dict classes have been deprecated.
251 elif isinstance(value, dict):
274 self.beginElement("dict")
282 self.endElement("dict")
291 class _InternalDict(dict):
293 # This class is needed while Dict is scheduled for deprecation:
294 # we only need to warn when a *user* instantiates Dict or whe
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
plistlib.py 28 pl = dict(
33 aDict=dict(
57 "Plist", "Data", "Dict"
59 # Note: the Plist and Dict classes have been deprecated.
251 elif isinstance(value, dict):
274 self.beginElement("dict")
282 self.endElement("dict")
291 class _InternalDict(dict):
293 # This class is needed while Dict is scheduled for deprecation:
294 # we only need to warn when a *user* instantiates Dict or whe
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_dict.py 11 self.assertEqual(dict(), {})
12 self.assertIsNot(dict(), {})
23 self.assertEqual(eval(dictliteral), dict(items))
208 self.assertEqual(dict.fromkeys('abc'), {'a':None, 'b':None, 'c':None})
218 class dictlike(dict): pass
223 class mydict(dict):
229 self.assertRaises(TypeError, dict.fromkeys)
233 class baddict1(dict):
245 self.assertRaises(Exc, dict.fromkeys, BadSeq())
247 class baddict2(dict):
    [all...]
test_operator.py 225 class Dict(dict): pass
226 self.assertFalse(operator.isSequenceType(Dict()))
429 d = dict(key='val')
  /external/python/cpython2/Lib/test/
test_operator.py 225 class Dict(dict): pass
226 self.assertFalse(operator.isSequenceType(Dict()))
435 d = dict(key='val')
  /external/python/cpython3/Lib/
plistlib.py 24 pl = dict(
29 aDict = dict(
50 "Plist", "Data", "Dict", "InvalidFileException", "FMT_XML", "FMT_BINARY",
79 class _InternalDict(dict):
81 # This class is needed while Dict is scheduled for deprecation:
82 # we only need to warn when a *user* instantiates Dict or when
83 # the "attribute notation for dict keys" is used.
109 class Dict(_InternalDict):
112 warn("The plistlib.Dict class is deprecated, use builtin dict instead"
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_dict.py 11 self.assertEqual(dict(), {})
12 self.assertIsNot(dict(), {})
23 self.assertEqual(eval(dictliteral), dict(items))
208 self.assertEqual(dict.fromkeys('abc'), {'a':None, 'b':None, 'c':None})
218 class dictlike(dict): pass
223 class mydict(dict):
229 self.assertRaises(TypeError, dict.fromkeys)
233 class baddict1(dict):
245 self.assertRaises(Exc, dict.fromkeys, BadSeq())
247 class baddict2(dict)
    [all...]
test_operator.py 225 class Dict(dict): pass
226 self.assertFalse(operator.isSequenceType(Dict()))
429 d = dict(key='val')
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_dict.py 11 self.assertEqual(dict(), {})
12 self.assertIsNot(dict(), {})
23 self.assertEqual(eval(dictliteral), dict(items))
208 self.assertEqual(dict.fromkeys('abc'), {'a':None, 'b':None, 'c':None})
218 class dictlike(dict): pass
223 class mydict(dict):
229 self.assertRaises(TypeError, dict.fromkeys)
233 class baddict1(dict):
245 self.assertRaises(Exc, dict.fromkeys, BadSeq())
247 class baddict2(dict)
    [all...]
test_operator.py 225 class Dict(dict): pass
226 self.assertFalse(operator.isSequenceType(Dict()))
429 d = dict(key='val')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_dict.py 11 self.assertEqual(dict(), {})
12 self.assertIsNot(dict(), {})
23 self.assertEqual(eval(dictliteral), dict(items))
208 self.assertEqual(dict.fromkeys('abc'), {'a':None, 'b':None, 'c':None})
218 class dictlike(dict): pass
223 class mydict(dict):
229 self.assertRaises(TypeError, dict.fromkeys)
233 class baddict1(dict):
245 self.assertRaises(Exc, dict.fromkeys, BadSeq())
247 class baddict2(dict)
    [all...]
test_operator.py 225 class Dict(dict): pass
226 self.assertFalse(operator.isSequenceType(Dict()))
429 d = dict(key='val')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_dict.py 11 self.assertEqual(dict(), {})
12 self.assertIsNot(dict(), {})
23 self.assertEqual(eval(dictliteral), dict(items))
208 self.assertEqual(dict.fromkeys('abc'), {'a':None, 'b':None, 'c':None})
218 class dictlike(dict): pass
223 class mydict(dict):
229 self.assertRaises(TypeError, dict.fromkeys)
233 class baddict1(dict):
245 self.assertRaises(Exc, dict.fromkeys, BadSeq())
247 class baddict2(dict)
    [all...]
test_operator.py 225 class Dict(dict): pass
226 self.assertFalse(operator.isSequenceType(Dict()))
429 d = dict(key='val')
  /development/vndk/tools/sourcedr/sourcedr/blueprint/
blueprint.py 508 class Dict(Expr, collections.OrderedDict):
519 return Dict((key, value.eval(env)) for key, value in self.items())
580 self.vars = {} if inherited_env is None else dict(inherited_env)
715 """Parse a dict."""
716 result = Dict()
896 """Build a name-to-module dict."""
942 if isinstance(value, Dict) and isinstance(attrs_value, Dict):

Completed in 791 milliseconds

1 2 3