/third_party/protobuf/python/google/protobuf/internal/ |
D | extension_dict.py | 83 result = self._extended_message._fields.get(extension_handle) 114 result = self._extended_message._fields.setdefault( 165 self._extended_message._fields[extension_handle] = ( 202 if extension_handle not in self._extended_message._fields: 206 return bool(self._extended_message._fields.get(extension_handle)) 209 value = self._extended_message._fields.get(extension_handle)
|
D | python_message.py | 512 self._fields = {} 554 self._fields[field] = copy 564 self._fields[field] = copy 656 field_value = self._fields.get(field) 667 field_value = self._fields.setdefault(field, field_value) 702 return self._fields.get(field, default_value) 718 self._fields.pop(field, None) 720 self._fields[field] = new_value 758 field_value = self._fields.get(field) 769 field_value = self._fields.setdefault(field, field_value) [all …]
|
D | proto_builder_test.py | 57 self._fields = dict(self.ordered_fields) 62 self._fields, 85 self._fields, 89 self._fields,
|
/third_party/grpc/third_party/upb/benchmarks/ |
D | BUILD | 76 "100_fields": "Message", 77 "200_fields": "Message", 104 "100_fields.proto", 105 "200_fields.proto", 122 srcs = ["100_fields.proto"], 127 srcs = ["200_fields.proto"],
|
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/ |
D | form.dart | 134 final Set<FormFieldState<dynamic>> _fields = <FormFieldState<dynamic>>{}; 151 _fields.add(field); 155 _fields.remove(field); 174 for (FormFieldState<dynamic> field in _fields) 186 for (FormFieldState<dynamic> field in _fields) 202 for (FormFieldState<dynamic> field in _fields)
|
/third_party/python/Lib/test/ |
D | test_c_locale_coercion.py | 98 _fields = "fsencoding stdin_info stdout_info stderr_info lang lc_ctype lc_all" variable 99 _EncodingDetails = namedtuple("EncodingDetails", _fields)
|
D | test_collections.py | 317 self.assertEqual(Point._fields, ('x', 'y')) 333 self.assertNotIn("u'", repr(nt._fields)) 335 self.assertNotIn("u'", repr(nt._fields)) 456 self.assertEqual(namedtuple('NT', spec, rename=True)._fields, renamed) 479 self.assertEqual(p._fields, ('x', 'y')) # test _fields attribute 529 self.assertEqual(Zero()._fields, ()) 538 self.assertEqual(Dot(1)._fields, ('d',)) 559 self.assertEqual(b._fields, tuple(names)) 569 self.assertEqual(p._fields, q._fields) 577 self.assertEqual(p._fields, q._fields) [all …]
|
D | test_ast.py | 24 if t._fields is None: 26 for f in t._fields: 260 if not isinstance(ast_node, ast.AST) or ast_node._fields is None: 266 for name in ast_node._fields: 276 self.assertEqual(ast_node._fields, ast_node.__match_args__) 280 self.assertEqual(x._fields, ()) 375 self.assertEqual(type(x._fields), tuple) 379 self.assertEqual(x._fields, ('posonlyargs', 'args', 'vararg', 'kwonlyargs', 393 x._fields = 666 394 self.assertEqual(x._fields, 666) [all …]
|
D | test_pydoc.py | 1115 _fields = None variable in TestDescriptions.test_field_order_for_named_tuples.NonIterableFields 1118 _fields = [[]] variable in TestDescriptions.test_field_order_for_named_tuples.NonHashableFields
|
D | test_typing.py | 4001 self.assertEqual(Emp._fields, ('name', 'id')) 4020 self.assertEqual(CoolEmployee._fields, ('name', 'cool')) 4034 self.assertEqual(CoolEmployeeWithDefault._fields, ('name', 'cool')) 4053 def _fields(self): member in NamedTupleTests.test_annotation_usage_with_methods.XMethBad 4075 self.assertEqual(LocalEmployee._fields, ('name', 'age')) 4085 self.assertEqual(NT._fields, ('cls', 'self', 'typename', 'fields')) 4100 self.assertEqual(struct._fields, ()) 4172 …TD = TypedDict("TD", cls=type, self=object, typename=str, _typename=int, fields=list, _fields=dict) 4175 …a = TD(cls=str, self=42, typename='foo', _typename=53, fields=[('bar', tuple)], _fields={'baz', se… 4194 TypedDict('Emp', _fields={'name': str, 'id': int})
|
/third_party/python/Tools/peg_generator/pegen/ |
D | ast_dump.py | 24 for name in node._fields:
|
/third_party/python/Lib/ |
D | ast.py | 136 for name in node._fields: 252 for field in node._fields: 540 if key not in cls._fields: 543 pos = cls._fields.index(key) 551 _fields = ('n',) variable in Num 555 _fields = ('s',) variable in Str 559 _fields = ('s',) variable in Bytes 566 _fields = () variable in Ellipsis
|
D | platform.py | 792 num_fields = len(cls._fields) 806 return uname_result, tuple(self)[:len(self._fields)]
|
/third_party/skia/tools/skpbench/ |
D | sheet.py | 81 for x in FullConfig._fields))
|
/third_party/flutter/skia/tools/skpbench/ |
D | sheet.py | 81 for x in FullConfig._fields))
|
/third_party/mesa3d/src/compiler/glsl/ |
D | builtin_types.cpp | 51 glsl_type(NAME##_fields, ARRAY_SIZE(NAME##_fields), #NAME); \
|
/third_party/python/Include/internal/ |
D | pycore_ast_state.h | 152 PyObject *_fields; member
|
/third_party/flatbuffers/rust/flexbuffers/src/reader/ |
D | de.rs | 149 _fields: &'static [&'static str], in struct_variant()
|
/third_party/skia/third_party/externals/angle2/third_party/logdog/logdog/ |
D | stream.py | 54 return cls(**{f: kwargs.get(f) for f in cls._fields})
|
/third_party/python/Doc/library/ |
D | collections.rst | 973 .. attribute:: somenamedtuple._fields 980 >>> p._fields # view the field names 984 >>> Pixel = namedtuple('Pixel', Point._fields + Color._fields) 1036 create a new named tuple type from the :attr:`~somenamedtuple._fields` attribute: 1038 >>> Point3D = namedtuple('Point3D', Point._fields + ('z',))
|
D | ast.rst | 62 .. attribute:: _fields 64 Each concrete class has an attribute :attr:`_fields` which gives the names 99 in :attr:`T._fields`; they will be assigned as attributes of these names. 2040 Yield a tuple of ``(fieldname, value)`` for each field in ``node._fields``
|
/third_party/freetype/docs/reference/assets/javascripts/ |
D | application.c33a9706.js | 60 …_fields=Object.create(null),this._documents=Object.create(null),this.invertedIndex=Object.create(n…
|
/third_party/python/Tools/c-analyzer/c_parser/ |
D | info.py | 284 elif column in cls._fields: 330 columns = self._fields
|
/third_party/node/tools/inspector_protocol/ |
D | code_generator.py | 51 keys = list(config_tuple._fields) # pylint: disable=E1101
|
/third_party/jerryscript/tools/pylint/ |
D | pylintrc | 371 exclude-protected=_asdict,_fields,_replace,_source,_make
|