/external/grpc-grpc/tools/distrib/python/ |
D | check_grpcio_tools.py | 17 import make_grpcio_tools as _make namespace 23 submodule_commit_hash = _make.protobuf_submodule_commit_hash() 25 with open(_make.GRPC_PYTHON_PROTOC_LIB_DEPS, 'r') as _protoc_lib_deps_file: 29 _make.COMMIT_HASH_PREFIX + submodule_commit_hash + _make.COMMIT_HASH_SUFFIX) 32 print(OUT_OF_DATE_MESSAGE.format(_make.GRPC_PYTHON_PROTOC_LIB_DEPS))
|
/external/linux-kselftest/tools/testing/selftests/tc-testing/plugin-lib/ |
D | buildebpfPlugin.py | 44 self._make('all') 48 self._make('clean') 50 def _make(self, target): member in SubPlugin
|
/external/python/cpython2/Lib/test/ |
D | test_collections.py | 92 self.assertRaises(TypeError, Point._make, [11]) # catch too few args 93 self.assertRaises(TypeError, Point._make, [11, 22, 33]) # catch too many args 126 self.assertEqual(p, Point._make([11, 22])) # test _make classmethod 171 self.assertEqual(Zero._make([]), ()) 178 self.assertEqual(Dot._make([1]), (1,)) 192 self.assertEqual(Big._make(range(n)), tuple(range(n))) 245 t = T._make(values) 252 t = T._make(values)
|
/external/honggfuzz/examples/openssl/ |
D | README.md | 35 The _make.sh_ script will compile honggfuzz and libFuzzer binaries. Syntax:
|
/external/python/cpython3/Tools/tz/ |
D | zdump.py | 35 ttis.append(ttinfo._make(struct.unpack(">lbb", fileobj.read(6))))
|
/external/python/cpython3/Lib/collections/ |
D | __init__.py | 404 def _make(cls, iterable): function 410 _make.__func__.__doc__ = (f'Make a new {typename} object from a sequence ' 414 result = _self._make(map(kwds.pop, field_names, _self)) 436 for method in (__new__, _make.__func__, _replace, 448 '_make': _make,
|
/external/python/cpython2/Lib/ |
D | collections.py | 731 _make = classmethod(tuple.__new__) variable in Point 733 return self._make(_map(kwds.get, ('x', 'y'), self))
|
D | difflib.py | 526 self.matching_blocks = map(Match._make, non_adjacent)
|
/external/python/cpython3/Lib/test/ |
D | test_collections.py | 247 self.assertRaises(TypeError, Point._make, [11]) # catch too few args 248 self.assertRaises(TypeError, Point._make, [11, 22, 33]) # catch too many args 344 self.assertEqual(p, Point._make([11, 22])) # test _make classmethod 388 self.assertEqual(Zero._make([]), ()) 395 self.assertEqual(Dot._make([1]), (1,)) 409 self.assertEqual(Big._make(range(n)), tuple(range(n))) 489 t = T._make(values) 496 t = T._make(values)
|
/external/python/cpython2/Doc/library/ |
D | collections.rst | 619 def _make(cls, iterable, new=tuple.__new__, len=len): 636 result = _self._make(map(kwds.pop, ('x', 'y'), _self)) 674 for emp in map(EmployeeRecord._make, csv.reader(open("employees.csv", "rb"))): 681 for emp in map(EmployeeRecord._make, cursor.fetchall()): 688 .. classmethod:: somenamedtuple._make(iterable) 695 >>> Point._make(t) 785 >>> Status = namedtuple('Status', 'open pending closed')._make(range(3))
|
D | struct.rst | 318 >>> Student._make(unpack('<10sHHb', record))
|
/external/autotest/server/cros/ |
D | resource_monitor_unittest.py | 267 ResourceMonitorParsedResult.UtilValues._make,
|
/external/adhd/scripts/ |
D | ini_editor.py | 73 self.parameter = Parameter._make(result.groups())
|
/external/python/cpython3/Doc/library/ |
D | collections.rst | 879 for emp in map(EmployeeRecord._make, csv.reader(open("employees.csv", "rb"))): 886 for emp in map(EmployeeRecord._make, cursor.fetchall()): 893 .. classmethod:: somenamedtuple._make(iterable) 900 >>> Point._make(t)
|
D | struct.rst | 370 >>> Student._make(unpack('<10sHHb', record))
|
/external/yapf/ |
D | pylintrc | 382 exclude-protected=_asdict,_fields,_replace,_source,_make
|
/external/python/cpython3/Lib/ |
D | difflib.py | 514 self.matching_blocks = list(map(Match._make, non_adjacent))
|
/external/tensorflow/tensorflow/python/distribute/ |
D | values.py | 1325 return type(v0)._make(regrouped_tuple)
|
/external/python/cpython2/Doc/ |
D | glossary.rst | 715 methods like :meth:`~collections.somenamedtuple._make` or
|
/external/python/cpython3/Doc/ |
D | glossary.rst | 1017 methods like :meth:`~collections.somenamedtuple._make` or
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.7.0a1.rst | 1624 speed-ups for instance creation using __new__, _make, and _replace. (The
|
/external/googletest/googlemock/docs/ |
D | CookBook.md | 1972 wrap the argument in `ByRef()`? Then `InvokeArgument()` will _make a
|