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

1 2 3 4 5

  /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/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);
  /external/chromium_org/tools/gyp/test/ios/
gyptest-archs.py 42 kwds = collections.defaultdict(list) variable
46 kwds['arguments'].extend(['-sdk', sdk])
48 kwds['arguments'].extend(['-arch', archs[0]])
52 test.build('test-archs.gyp', target, chdir='app-bundle', **kwds)
  /external/protobuf/editors/
protobuf-mode.el 79 ;; cc-langs.el file for information about the meaning of the -kwds variables.
81 (c-lang-defconst c-primitive-type-kwds
86 (c-lang-defconst c-modifier-kwds
89 (c-lang-defconst c-class-decl-kwds
92 (c-lang-defconst c-constant-kwds
95 (c-lang-defconst c-other-decl-kwds
98 (c-lang-defconst c-other-kwds
108 (c-lang-defconst c-type-list-kwds
111 (c-lang-defconst c-typeless-decl-kwds
118 (c-lang-defconst c-brace-list-decl-kwds
    [all...]
  /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/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/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())
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())
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/darwin-x86/2.7.5/lib/python2.7/
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...]
contextlib.py 83 def helper(*args, **kwds):
84 return GeneratorContextManager(func(*args, **kwds))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
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...]
contextlib.py 83 def helper(*args, **kwds):
84 return GeneratorContextManager(func(*args, **kwds))
  /external/chromium_org/third_party/google_appengine_cloudstorage/cloudstorage/
api_utils.py 223 def _retry_fetch(url, retry_params, **kwds):
233 **kwds: keyword arguments for urlfetch. If deadline is specified in kwds,
255 resp = urlfetch.fetch(url, **kwds)
310 def eager_wrapper(*args, **kwds):
311 fut = tasklet(*args, **kwds)
rest_api.py 51 def sync_wrapper(self, *args, **kwds):
53 future = method(*args, **kwds)
234 def urlfetch_async(self, url, **kwds):
243 return ctx.urlfetch(url, **kwds)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
ordered_dict.py 29 def __init__(self, *args, **kwds):
34 self.update(*args, **kwds)
  /external/chromium_org/third_party/simplejson/
ordered_dict.py 21 def __init__(self, *args, **kwds):
28 self.update(*args, **kwds)
  /external/qemu/scripts/
ordereddict.py 27 def __init__(self, *args, **kwds):
34 self.update(*args, **kwds)

Completed in 636 milliseconds

1 2 3 4 5