HomeSort by relevance Sort by last modified time
    Searched refs:kw (Results 226 - 250 of 464) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/python/cpython3/Modules/
_datetimemodule.c     [all...]
  /external/python/cpython3/Lib/unittest/
mock.py 374 def __new__(cls, *args, **kw):
710 value = lambda *args, **kw: original(self, *args, **kw)
894 def _get_child_mock(self, **kw):
912 attribute = "." + kw["name"] if "name" in kw else "()"
916 return klass(**kw)
    [all...]
  /external/grpc-grpc/src/ruby/pb/test/
client.rb 131 kw = auth_creds.updater_proc.call({}) # gives as an auth token
134 call_creds = GRPC::Core::CallCredentials.new(proc { |md| md.merge(kw) })
357 kw = auth_creds.updater_proc.call({})
660 def perform_large_unary(fill_username: false, fill_oauth_scope: false, **kw)
668 resp = @stub.unary_call(req, **kw)
  /external/python/httplib2/tests/
__init__.py 422 kw = copy.deepcopy(kwargs)
423 kw["body"] = request.raw
424 response = http_response_bytes(**kw)
485 def wrapped(request, *a, **kw):
486 response_bytes = fun(request, *a, **kw)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
pkgutil.py 34 def wrapper(*args, **kw):
51 return registry[t](*args, **kw)
53 return func(*args, **kw)
weakref.py 47 def __init__(self, *args, **kw):
59 UserDict.UserDict.__init__(self, *args, **kw)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
classobject.c 550 PyInstance_New(PyObject *klass, PyObject *arg, PyObject *kw)
572 || (kw != NULL && (!PyDict_Check(kw) ||
573 PyDict_Size(kw) != 0))) {
581 PyObject *res = PyEval_CallObjectWithKeywords(init, arg, kw);
610 instance_new(PyTypeObject* type, PyObject* args, PyObject *kw)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
pkgutil.py 34 def wrapper(*args, **kw):
51 return registry[t](*args, **kw)
53 return func(*args, **kw)
weakref.py 47 def __init__(self, *args, **kw):
53 UserDict.UserDict.__init__(self, *args, **kw)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_zipimport.py 69 def doTest(self, expected_ext, files, *modules, **kw):
78 stuff = kw.get("stuff", None)
95 call = kw.get('call')
test_multibytecodec_support.py 255 def __init__(self, *args, **kw):
256 unittest.TestCase.__init__(self, *args, **kw)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
classobject.c 540 PyInstance_New(PyObject *klass, PyObject *arg, PyObject *kw)
562 || (kw != NULL && (!PyDict_Check(kw) ||
563 PyDict_Size(kw) != 0))) {
571 PyObject *res = PyEval_CallObjectWithKeywords(init, arg, kw);
600 instance_new(PyTypeObject* type, PyObject* args, PyObject *kw)
    [all...]
  /external/python/cpython2/Lib/
pkgutil.py 31 def wrapper(*args, **kw):
48 return registry[t](*args, **kw)
50 return func(*args, **kw)
  /external/python/cpython2/Lib/test/
test_zipimport.py 69 def doTest(self, expected_ext, files, *modules, **kw):
78 stuff = kw.get("stuff", None)
95 call = kw.get('call')
test_contextlib.py 86 def attribs(**kw):
88 for k,v in kw.items():
test_weakref.py     [all...]
  /external/python/cpython2/Objects/
classobject.c 549 PyInstance_New(PyObject *klass, PyObject *arg, PyObject *kw)
571 || (kw != NULL && (!PyDict_Check(kw) ||
572 PyDict_Size(kw) != 0))) {
580 PyObject *res = PyEval_CallObjectWithKeywords(init, arg, kw);
609 instance_new(PyTypeObject* type, PyObject* args, PyObject *kw)
    [all...]
  /external/python/cpython3/Lib/test/test_email/
test_policy.py 174 def __init__(self, *args, **kw):
175 super().__init__(*args, defects=[], **kw)
254 def badmethod(self, *args, **kw):
  /external/tensorflow/tensorflow/tools/compatibility/
ast_edits.py 87 for kw in node.keywords:
88 if kw.arg == arg_name:
89 return (True, kw.value)
  /external/owasp/sanitizer/empiricism/
html-containment.js 142 var htmlForNullValue = '<span class="json-kw">null</span>';
143 var htmlForErrorValue = '<span class="json-kw json-err">null</span>';
156 out.push('<span class="json-kw">', v, '</span>');
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/test/
test_suite.py 351 def __call__(self, *args, **kw):
353 unittest.TestSuite.__call__(self, *args, **kw)
  /external/python/cpython2/Lib/bsddb/
dbshelve.py 243 def get(self, *args, **kw):
244 # We do it with *args and **kw so if the default value wasn't
248 data = self.db.get(*args, **kw)
  /external/python/cpython2/Lib/ctypes/test/
test_bitfields.py 190 def get_except(self, func, *args, **kw):
192 func(*args, **kw)
  /external/python/cpython2/Lib/unittest/test/
test_suite.py 351 def __call__(self, *args, **kw):
353 unittest.TestSuite.__call__(self, *args, **kw)
  /external/python/cpython3/Lib/ctypes/test/
test_bitfields.py 189 def get_except(self, func, *args, **kw):
191 func(*args, **kw)

Completed in 5256 milliseconds

1 2 3 4 5 6 7 8 91011>>