HomeSort by relevance Sort by last modified time
    Searched refs:kwds (Results 1 - 25 of 93) sorted by null

1 2 3 4

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_apply.py 24 (not argument<NAME '=' any>) kwds=any] [',']
36 kwds = results.get("kwds")
47 if kwds is not None:
48 kwds = kwds.clone()
49 kwds.prefix = ""
51 if kwds is not None:
54 kwds])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_apply.py 24 (not argument<NAME '=' any>) kwds=any] [',']
36 kwds = results.get("kwds")
47 if kwds is not None:
48 kwds = kwds.clone()
49 kwds.prefix = ""
51 if kwds is not None:
54 kwds])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/
wrapper.py 12 def wrapper(func, *args, **kwds):
43 return func(stdscr, *args, **kwds)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/
wrapper.py 12 def wrapper(func, *args, **kwds):
43 return func(stdscr, *args, **kwds)
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
eval.h 16 PyObject **kwds, int kwdc,
descrobject.h 23 void *wrapped, PyObject *kwds);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
eval.h 16 PyObject **kwds, int kwdc,
descrobject.h 23 void *wrapped, PyObject *kwds);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_decorators.py 4 def funcattrs(**kwds):
6 func.__dict__.update(kwds)
21 def __init__(self, exprstr, func, args, kwds):
23 Exception.__init__(self, "dbcheck %r failed (func=%s args=%s kwds=%s)" %
24 (exprstr, func, args, kwds))
31 def check(*args, **kwds):
33 raise DbcheckError(exprstr, func, args, kwds)
34 return func(*args, **kwds)
45 def call(*args, **kwds):
47 return func(*args, **kwds)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_decorators.py 4 def funcattrs(**kwds):
6 func.__dict__.update(kwds)
21 def __init__(self, exprstr, func, args, kwds):
23 Exception.__init__(self, "dbcheck %r failed (func=%s args=%s kwds=%s)" %
24 (exprstr, func, args, kwds))
31 def check(*args, **kwds):
33 raise DbcheckError(exprstr, func, args, kwds)
34 return func(*args, **kwds)
45 def call(*args, **kwds):
47 return func(*args, **kwds)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
sharedctypes.py 92 def Value(typecode_or_type, *args, **kwds):
96 lock = kwds.pop('lock', None)
97 if kwds:
98 raise ValueError('unrecognized keyword argument(s): %s' % kwds.keys())
108 def Array(typecode_or_type, size_or_initializer, **kwds):
112 lock = kwds.pop('lock', None)
113 if kwds:
114 raise ValueError('unrecognized keyword argument(s): %s' % kwds.keys())
__init__.py 248 def Value(typecode_or_type, *args, **kwds):
253 return Value(typecode_or_type, *args, **kwds)
255 def Array(typecode_or_type, size_or_initializer, **kwds):
260 return Array(typecode_or_type, size_or_initializer, **kwds)
managers.py 97 def dispatch(c, id, methodname, args=(), kwds={}):
101 c.send((id, methodname, args, kwds))
200 ignore, funcname, args, kwds = request
207 result = func(c, *args, **kwds)
241 ident, methodname, args, kwds = request
253 res = function(*args, **kwds)
272 self, conn, ident, obj, *args, **kwds
373 def create(self, c, typeid, *args, **kwds):
383 assert len(args) == 1 and not kwds
386 obj = callable(*args, **kwds)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
sharedctypes.py 92 def Value(typecode_or_type, *args, **kwds):
96 lock = kwds.pop('lock', None)
97 if kwds:
98 raise ValueError('unrecognized keyword argument(s): %s' % kwds.keys())
108 def Array(typecode_or_type, size_or_initializer, **kwds):
112 lock = kwds.pop('lock', None)
113 if kwds:
114 raise ValueError('unrecognized keyword argument(s): %s' % kwds.keys())
__init__.py 248 def Value(typecode_or_type, *args, **kwds):
253 return Value(typecode_or_type, *args, **kwds)
255 def Array(typecode_or_type, size_or_initializer, **kwds):
260 return Array(typecode_or_type, size_or_initializer, **kwds)
managers.py 97 def dispatch(c, id, methodname, args=(), kwds={}):
101 c.send((id, methodname, args, kwds))
200 ignore, funcname, args, kwds = request
207 result = func(c, *args, **kwds)
241 ident, methodname, args, kwds = request
253 res = function(*args, **kwds)
272 self, conn, ident, obj, *args, **kwds
373 def create(self, c, typeid, *args, **kwds):
383 assert len(args) == 1 and not kwds
386 obj = callable(*args, **kwds)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/readwrite/
nx_yaml.py 30 def write_yaml(G, path, encoding='UTF-8', **kwds):
59 yaml.dump(G, path, **kwds)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/drawing/
nx_pylab.py 39 def draw(G, pos=None, ax=None, hold=None, **kwds):
64 **kwds : optional keywords
122 h = kwds.pop('hold', None)
126 draw_networkx(G,pos=pos,ax=ax,**kwds)
136 def draw_networkx(G, pos=None, with_labels=True, **kwds):
259 node_collection=draw_networkx_nodes(G, pos, **kwds)
260 edge_collection=draw_networkx_edges(G, pos, **kwds)
262 draw_networkx_labels(G, pos, **kwds)
277 **kwds):
399 **kwds)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
contextlib.py 83 def helper(*args, **kwds):
84 return GeneratorContextManager(func(*args, **kwds))
collections.py 38 def __init__(self, *args, **kwds):
52 self.__update(*args, **kwds)
262 def _replace(_self, **kwds):
264 result = _self._make(map(kwds.pop, {field_names!r}, _self))
265 if kwds:
266 raise ValueError('Got unexpected field names: %r' % kwds.keys())
432 def __init__(self, iterable=None, **kwds):
444 self.update(iterable, **kwds)
495 def update(self, iterable=None, **kwds):
527 if kwds
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
contextlib.py 83 def helper(*args, **kwds):
84 return GeneratorContextManager(func(*args, **kwds))
collections.py 38 def __init__(self, *args, **kwds):
52 self.__update(*args, **kwds)
262 def _replace(_self, **kwds):
264 result = _self._make(map(kwds.pop, {field_names!r}, _self))
265 if kwds:
266 raise ValueError('Got unexpected field names: %r' % kwds.keys())
432 def __init__(self, iterable=None, **kwds):
444 self.update(iterable, **kwds)
495 def update(self, iterable=None, **kwds):
527 if kwds
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/utils/
random_sequence.py 18 def create_degree_sequence(n, sfunction=None, max_tries=50, **kwds):
20 specified function sfunction(n,**kwds).
28 Called as "sfunction(n,**kwds)".
34 Repeatedly create a degree sequence by calling sfunction(n,**kwds)
49 trialseq=sfunction(n,**kwds)
  /external/protobuf/python/google/protobuf/pyext/
repeated_composite_container.cc 490 PyObject* kwds) {
498 if (!PyArg_ParseTupleAndKeywords(args, kwds, "|OOi:sort",
533 PyObject* kwds) {
537 if (PyObject_Call(m, args, kwds) == NULL)
544 PyObject* kwds) {
547 if (kwds != NULL) {
548 PyObject* sort_func = PyDict_GetItemString(kwds, "sort_function");
551 // and kwds might be the only thing keeping it alive.
552 PyDict_SetItemString(kwds, "cmp", sort_func);
553 PyDict_DelItemString(kwds, "sort_function")
    [all...]
  /external/chromium-trace/trace-viewer/perf_insights/third_party/cloudstorage/
api_utils.py 135 def run(self, tasklet, **kwds):
144 **kwds: keywords arguments to run the tasklet.
161 result = yield tasklet(**kwds)
348 def eager_wrapper(*args, **kwds):
349 fut = tasklet(*args, **kwds)

Completed in 278 milliseconds

1 2 3 4