/third_party/python/Lib/re/ |
H A D | _parser.py | 445 return list(dict.fromkeys(items))
|
/third_party/python/Lib/ |
H A D | pickletools.py | 54 # The memo is simply an array of objects, or it can be implemented as a dict 1034 name="dict", 1035 obtype=dict, 1036 doc="A Python dict object.") 1641 doc="Push an empty dict."), 1649 doc="""Build a dict out of the topmost stack slice, after markobject. 1652 a single Python dict, which single dict object replaces all of the 1666 doc="""Add a key+value pair to an existing dict. 1680 doc="""Add an arbitrary number of key+value pairs to an existing dict [all...] |
H A D | ast.py | 99 return dict(zip(map(_convert, node.keys),
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
H A D | validitygenerator.py | 41 """Make an ordered dict (with None as the values) from a generator.""" 1112 arraylengths = dict()
|
/third_party/python/Lib/test/ |
H A D | test_operator.py | 420 d = dict(key='val')
|
H A D | test_pydoc.py | 749 expected = dict(vars(object))
|
H A D | test_uuid.py | 298 args = dict(hh + bb + bble + ii + ff)
|
H A D | test_ast.py | 205 # Empty dict 209 # Multiline dict (test for .lineno & .col_offset) 674 pos = dict(lineno=2, col_offset=3) 1066 d = dict(ast.iter_fields(node.body))
|
H A D | test_unicode.py | 1062 self.assertEqual("My name is {0[name]}".format(dict(name='Fred')), 1388 class Mapping(dict):
|
H A D | test_csv.py | 88 kwargs = dict(delimiter=':', doublequote=False, escapechar='\\',
|
/third_party/python/Lib/logging/ |
H A D | handlers.py | 643 d = dict(record.__dict__) 1233 Default implementation of mapping the log record into a dict 1471 the record to a dict or JSON string, or send a modified copy
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/examples/ |
H A D | dpp-nfc.py | 150 vals = dict()
|
/third_party/python/Python/ |
H A D | Python-ast.c | 763 PyObject *dict; member 772 Py_CLEAR(self->dict); in ast_dealloc() 783 Py_VISIT(self->dict); in ast_traverse() 790 Py_CLEAR(self->dict); in ast_clear() 878 PyObject *dict; in ast_type_reduce() local 879 if (_PyObject_LookupAttr(self, state->__dict__, &dict) < 0) { in ast_type_reduce() 882 if (dict) { in ast_type_reduce() 883 return Py_BuildValue("O()N", Py_TYPE(self), dict); in ast_type_reduce() 889 {"__dictoffset__", T_PYSSIZET, offsetof(AST_object, dict), READONLY},
|
/third_party/node/deps/v8/src/heap/ |
H A D | factory.cc | 583 Handle<SmallOrderedNameDictionary> dict = in NewSmallOrderedNameDictionary() local 586 dict->SetHash(PropertyArray::kNoHashSentinel); in NewSmallOrderedNameDictionary() 587 return dict; in NewSmallOrderedNameDictionary()
|
/third_party/python/Tools/clinic/ |
H A D | clinic.py | 39 # * dict constructor uses positional-only and keyword-only 368 the counts dict would now look like 2853 '&PyDict_Type': ('PyDict_Check', 'dict'), 3952 globals represents the globals dict the expression 4707 dict = legacy_converters if legacy else converters 4709 if name not in dict: 4713 converter = dict[name](c_name or parameter_name, parameter_name, self.function, value, **kwargs)
|
/third_party/node/deps/v8/src/codegen/ |
H A D | code-stub-assembler.h | 4056 TNode<SwissNameDictionary> dict, TNode<IntPtrT> index, int field_index); 4060 TNode<SwissNameDictionary> dict, TNode<IntPtrT> capacity, 4090 TNode<Name> LoadSwissNameDictionaryKey(TNode<SwissNameDictionary> dict, 4093 void StoreSwissNameDictionaryKeyAndValue(TNode<SwissNameDictionary> dict,
|
/third_party/python/Objects/ |
H A D | unicodeobject.c | 13496 /* x must be a dict */ in unicode_maketrans_impl() 13499 "to maketrans it must be a dict"); in unicode_maketrans_impl() 13502 /* copy entries into the new dict, converting string keys to int keys */ in unicode_maketrans_impl() 14326 PyObject *dict; member 14707 if (ctx->dict == NULL) { in unicode_format_arg_parse() 14738 ctx->args = PyObject_GetItem(ctx->dict, key); in unicode_format_arg_parse() 15176 if (ctx->dict && (ctx->argidx < ctx->arglen)) { in unicode_format_arg() 15217 ctx.dict = args; in PyUnicode_Format() 15219 ctx.dict = NULL; in PyUnicode_Format() 15248 if (ctx.argidx < ctx.arglen && !ctx.dict) { in PyUnicode_Format() [all...] |
/test/testfwk/xdevice/src/xdevice/_core/report/ |
H A D | reporter_helper.py | 335 product_info = dict()
|
/third_party/littlefs/scripts/ |
H A D | test.py | 70 # defines can be a dict or a list or dicts 134 self.permutations.extend(dict(perm) for perm in it.product(*(
|
/third_party/python/Tools/gdb/ |
H A D | libpython.py | 16 that we can emit useful visualizations e.g. a string, a list, a dict, a frame 448 if isinstance(self.attrdict, dict): 752 Class wrapping a gdb.Value that's a PyDictObject* i.e. a dict instance 760 analogous to dict.iteritems()
|
/third_party/python/Lib/idlelib/ |
H A D | pyshell.py | 1650 if macosx.isAquaTk() and flist.dict:
|
H A D | editor.py | 213 flist.dict[key] = self
|
/third_party/python/Lib/asyncio/ |
H A D | base_events.py | 1290 opts = dict(local_addr=local_addr, remote_addr=remote_addr, 1326 addr_infos = {} # Using order preserving dict 1715 will be a dict object (see `call_exception_handler()` 1776 The context argument is a dict containing the following keys:
|
/third_party/skia/third_party/externals/angle2/scripts/ |
H A D | generate_entry_points.py | 2369 command_to_param_types_mapping = dict()
|
/third_party/skia/third_party/externals/brotli/research/ |
H A D | brotlidump.py | 1266 self.file = open('dict', 'rb') 1455 alphabet.setLength(dict(zip(table, lengths)))
|