Searched refs:dicts (Results 1 – 21 of 21) sorted by relevance
/external/toolchain-utils/cros_utils/ |
D | perf_diff.py | 61 for dicts in self._all_dicts: 62 self.PrintTableHelper(dicts) 64 def PrintTableHelper(self, dicts): argument 67 for d in dicts: 75 for i in range(len(dicts)): 84 for d in dicts: 222 dicts = [] 240 dicts.append(d) 242 all_dicts.append(dicts)
|
/external/python/cpython2/Lib/ |
D | trace.py | 552 dicts = [d for d in gc.get_referrers(funcs[0]) 554 if len(dicts) == 1: 555 classes = [c for c in gc.get_referrers(dicts[0])
|
D | pydoc.py | 526 def namelink(self, name, *dicts): argument 528 for dict in dicts:
|
/external/python/cpython2/Objects/ |
D | dictnotes.txt | 69 Larger dicts use the first half of the dictobject structure (one cache 78 Must be a power of two. New dicts have to zero-out every cell. 167 * If lookdict() and lookdict_string() are specialized for small dicts 169 an alternate search strategy without increasing collisions in small dicts
|
/external/autotest/frontend/afe/ |
D | rpc_interface.py | 2135 dicts = {'locked': True, 'lock_time': datetime.datetime.now()} 2136 models.Host.objects.filter(hostname__in=hostnames_to_lock).update(**dicts) 2157 dicts = {'locked': False, 'lock_time': None} 2158 models.Host.objects.filter(hostname__in=hostnames_to_lock).update(**dicts)
|
/external/autotest/frontend/tko/ |
D | models.py | 652 dicts = query.values('test_idx') 653 return [item['test_idx'] for item in dicts]
|
/external/python/cpython2/Doc/library/ |
D | gc.rst | 150 (e.g. dicts containing only atomic keys and values)::
|
D | ast.rst | 138 strings, numbers, tuples, lists, dicts, booleans, and ``None``.
|
D | json.rst | 416 If *check_circular* is true (the default), then lists, dicts, and custom
|
D | logging.config.rst | 300 over the wire as pickled dicts to a socket listener. Thus, the logging
|
D | sys.rst | 647 and thus the maximum size lists, strings, dicts, and many other containers
|
D | ssl.rst | 1292 Returns a list of dicts with information of loaded CA certs. If the
|
D | unittest.rst | 1130 | :meth:`assertDictEqual(a, b) | dicts | 2.7 |
|
/external/v8/tools/mb/docs/ |
D | user_guide.md | 204 The `masters` key contains a nested series of dicts containing mappings
|
/external/python/cpython2/Doc/faq/ |
D | library.rst | 366 variables of built-in data types (ints, lists, dicts, etc) that "look atomic" 370 D1, D2 are dicts, x, y are objects, i, j are ints)::
|
/external/google-breakpad/src/build/ |
D | common.gypi | 1036 # settings in target dicts. SYMROOT is a special case, because many other
|
/external/python/cpython2/Doc/howto/ |
D | logging-cookbook.rst | 540 Using objects other than dicts to pass contextual information
|
/external/protobuf/objectivec/ |
D | GPBMessage.m | 670 // When one of our autocreated dicts adds elements, make it visible.
|
/external/python/cpython2/Misc/ |
D | NEWS | 3267 collector repeatedly trying to untrack dicts. 6118 in sets or dicts. 7537 - Issue #4688: Add a heuristic so that tuples and dicts containing only 8340 in lists, tuples, dicts and sets on failure. Many new handy type and
|
D | HISTORY | 1574 raise an exception some day. But dicts have been allowed, and "mostly 7308 - The implementation of dicts suffers fewer collisions, which has speed 7318 - Many other small changes to dicts were made, resulting in faster 7360 values mutated the dicts. Making the code bulletproof slowed it down. 7362 - Collisions in dicts are resolved via a new approach, which can help 7423 comparison operators mutate the dicts randomly during comparison. This
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.7.rst | 934 tuples and dicts containing atomic types (such as ints, strings,
|