Home
last modified time | relevance | path

Searched refs:_make (Results 1 – 22 of 22) sorted by relevance

/external/grpc-grpc/tools/distrib/python/
Dcheck_grpcio_tools.py17 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/
DbuildebpfPlugin.py44 self._make('all')
48 self._make('clean')
50 def _make(self, target): member in SubPlugin
/external/python/cpython2/Lib/test/
Dtest_collections.py92 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/
DREADME.md35 The _make.sh_ script will compile honggfuzz and libFuzzer binaries. Syntax:
/external/python/cpython3/Tools/tz/
Dzdump.py35 ttis.append(ttinfo._make(struct.unpack(">lbb", fileobj.read(6))))
/external/python/cpython3/Lib/collections/
D__init__.py404 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/
Dcollections.py731 _make = classmethod(tuple.__new__) variable in Point
733 return self._make(_map(kwds.get, ('x', 'y'), self))
Ddifflib.py526 self.matching_blocks = map(Match._make, non_adjacent)
/external/python/cpython3/Lib/test/
Dtest_collections.py247 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/
Dcollections.rst619 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))
Dstruct.rst318 >>> Student._make(unpack('<10sHHb', record))
/external/autotest/server/cros/
Dresource_monitor_unittest.py267 ResourceMonitorParsedResult.UtilValues._make,
/external/adhd/scripts/
Dini_editor.py73 self.parameter = Parameter._make(result.groups())
/external/python/cpython3/Doc/library/
Dcollections.rst879 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)
Dstruct.rst370 >>> Student._make(unpack('<10sHHb', record))
/external/yapf/
Dpylintrc382 exclude-protected=_asdict,_fields,_replace,_source,_make
/external/python/cpython3/Lib/
Ddifflib.py514 self.matching_blocks = list(map(Match._make, non_adjacent))
/external/tensorflow/tensorflow/python/distribute/
Dvalues.py1325 return type(v0)._make(regrouped_tuple)
/external/python/cpython2/Doc/
Dglossary.rst715 methods like :meth:`~collections.somenamedtuple._make` or
/external/python/cpython3/Doc/
Dglossary.rst1017 methods like :meth:`~collections.somenamedtuple._make` or
/external/python/cpython3/Misc/NEWS.d/
D3.7.0a1.rst1624 speed-ups for instance creation using __new__, _make, and _replace. (The
/external/googletest/googlemock/docs/
DCookBook.md1972 wrap the argument in `ByRef()`? Then `InvokeArgument()` will _make a