Home
last modified time | relevance | path

Searched refs:get_args (Results 1 – 25 of 30) sorted by relevance

12

/external/ms-tpm-20-ref/Samples/ARM32-FirmwareTPM/ta_prod_signing_scripts/
Dgenerate_digest.py29 def get_args(): function
51 args = get_args()
Dstitch_ta.py29 def get_args(): function
53 args = get_args()
/external/mesa3d/src/util/
Dxxd.py31 def get_args(): function
95 args = get_args()
/external/autotest/frontend/afe/
Dfrontend_test_utils.py82 attribute_model, get_args = host._get_static_attribute_model_and_args(
84 attribute_object, _ = attribute_model.objects.get_or_create(**get_args)
Dmodel_logic.py1332 attribute_model, get_args = self._get_attribute_model_and_args(
1334 attribute_object, _ = attribute_model.objects.get_or_create(**get_args)
1346 attribute_model, get_args = self._get_attribute_model_and_args(
1349 attribute_model.objects.get(**get_args).delete()
/external/curl/src/
Dtool_paramhlp.h45 CURLcode get_args(struct OperationConfig *config, const size_t i);
Dtool_paramhlp.c532 CURLcode get_args(struct OperationConfig *config, const size_t i) in get_args() function
Dtool_operate.c2607 result = get_args(operation, count++); in operate()
/external/python/cpython2/Lib/test/
Dtest_getargs2.py408 from _testcapi import get_args
410 ret = get_args(1, 2)
414 ret = get_args(1, *(2, 3))
418 ret = get_args(*[1, 2])
422 ret = get_args(*TupleSubclass([1, 2]))
426 ret = get_args()
430 ret = get_args(*())
/external/python/setuptools/setuptools/command/
Dinstall_scripts.py48 for args in writer.get_args(dist, cmd.as_header()):
Deasy_install.py794 for args in ScriptWriter.best().get_args(dist):
984 for args in ScriptWriter.get_args(dist)
2080 return writer.get_args(dist, header)
2093 def get_args(cls, dist, header=None): member in ScriptWriter
/external/python/cpython3/Lib/test/
Dtest_getargs2.py565 from _testcapi import get_args
567 ret = get_args(1, 2)
571 ret = get_args(1, *(2, 3))
575 ret = get_args(*[1, 2])
579 ret = get_args(*TupleSubclass([1, 2]))
583 ret = get_args()
587 ret = get_args(*())
Dtest_typing.py18 from typing import get_origin, get_args
3059 self.assertEqual(get_args(C[int]), (int,))
3060 self.assertEqual(get_args(C[T]), (T,))
3061 self.assertEqual(get_args(int), ())
3062 self.assertEqual(get_args(ClassVar[int]), (int,))
3063 self.assertEqual(get_args(Union[int, str]), (int, str))
3064 self.assertEqual(get_args(Literal[42, 43]), (42, 43))
3065 self.assertEqual(get_args(Final[List[int]]), (List[int],))
3066 self.assertEqual(get_args(Union[int, Tuple[T, int]][str]),
3068 self.assertEqual(get_args(typing.Dict[int, Tuple[T, T]][Optional[int]]),
[all …]
/external/python/cpython3/Parser/
Dasdl_c.py256 def get_args(self, fields): member in PrototypeVisitor
284 args = self.get_args(cons.fields)
285 attrs = self.get_args(attrs)
306 self.get_args(prod.fields),
307 self.get_args(prod.attributes),
/external/python/cpython2/Parser/
Dasdl_c.py225 def get_args(self, fields): member in PrototypeVisitor
253 args = self.get_args(cons.fields)
254 attrs = self.get_args(attrs)
275 self.get_args(prod.fields), [], union=False)
/external/python/dateutil/dateutil/test/
Dtest_tz.py439 def get_args(self, tzname): member in TzWinFoldMixin
473 args = self.get_args(tzname)
498 args = self.get_args(tzname)
518 args = self.get_args(tzname)
538 args = self.get_args(tzname)
560 args = self.get_args(tzname)
595 args = self.get_args(tzname)
2236 def get_args(self, tzname): member in TzWinLocalTest
/external/kernel-headers/original/uapi/linux/
Dwireless.h1066 __u16 get_args; /* Type and number of args */ member
/external/tensorflow/tensorflow/tools/def_file_filter/
Ddef_file_filter.py.tpl92 def get_args():
239 args = get_args()
/external/tensorflow/tensorflow/tools/compatibility/
Dtf_upgrade_v2_test.py51 def get_args(symbol): function
289 arg_names_v1 = get_args(attr)
321 args_v2 = get_args(self.v2_symbols[new_function_name])
333 args_v1 = get_args(self.v1_symbols[new_function_name])
/external/python/setuptools/setuptools/tests/
Dtest_easy_install.py83 args = next(ei.ScriptWriter.get_args(dist))
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a6.rst291 :func:`typing.get_args` now always returns an empty tuple for special
301 Functions :func:`typing.get_origin`, :func:`typing.get_args` and
/external/python/cpython2/Modules/
D_testcapimodule.c1036 get_args(PyObject *self, PyObject *args) in get_args() function
2698 {"get_args", get_args, METH_VARARGS},
/external/vulkan-validation-layers/tests/
Dlayer_validation_tests.cpp2002 std::vector<std::string> get_args(android_app &app, const char *intent_extra_data_key) { in get_args() function
2143 std::vector<std::string> args = get_args(*app, key); in android_main()
/external/python/cpython3/Doc/library/
Dtyping.rst1688 .. function:: get_args(tp)
1703 assert get_args(Dict[int, str]) == (int, str)
1706 assert get_args(Union[int, str]) == (int, str)
/external/python/cpython3/Lib/
Dtyping.py1490 def get_args(tp): function

12