HomeSort by relevance Sort by last modified time
    Searched refs:kw (Results 51 - 75 of 217) sorted by null

1 23 4 5 6 7 8 9

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
WindowList.py 60 def __init__(self, master, **kw):
61 Toplevel.__init__(self, master, kw)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
WindowList.py 60 def __init__(self, master, **kw):
61 Toplevel.__init__(self, master, kw)
  /external/chromium_org/third_party/cython/src/Cython/Utility/
CythonFunction.c 560 static PyObject * __Pyx_CyFunction_Call(PyObject *func, PyObject *arg, PyObject *kw) {
568 if (likely(kw == NULL) || PyDict_Size(kw) == 0)
572 return (*(PyCFunctionWithKeywords)meth)(self, arg, kw);
574 if (likely(kw == NULL) || PyDict_Size(kw) == 0) {
585 if (likely(kw == NULL) || PyDict_Size(kw) == 0) {
607 static PyObject * __Pyx_CyFunction_Call(PyObject *func, PyObject *arg, PyObject *kw) {
608 return PyCFunction_Call(func, arg, kw);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
__init__.py 78 def CFUNCTYPE(restype, *argtypes, **kw):
95 if kw.pop("use_errno", False):
97 if kw.pop("use_last_error", False):
99 if kw:
100 raise ValueError("unexpected keyword argument(s) %s" % kw.keys())
119 def WINFUNCTYPE(restype, *argtypes, **kw):
122 if kw.pop("use_errno", False):
124 if kw.pop("use_last_error", False):
126 if kw:
127 raise ValueError("unexpected keyword argument(s) %s" % kw.keys()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
__init__.py 78 def CFUNCTYPE(restype, *argtypes, **kw):
95 if kw.pop("use_errno", False):
97 if kw.pop("use_last_error", False):
99 if kw:
100 raise ValueError("unexpected keyword argument(s) %s" % kw.keys())
119 def WINFUNCTYPE(restype, *argtypes, **kw):
122 if kw.pop("use_errno", False):
124 if kw.pop("use_last_error", False):
126 if kw:
127 raise ValueError("unexpected keyword argument(s) %s" % kw.keys()
    [all...]
  /external/chromium_org/tools/gyp/pylib/gyp/
__init__.py 243 def add_option(self, *args, **kw):
255 env_name = kw.pop('env_name', None)
256 if 'dest' in kw and kw.pop('regenerate', True):
257 dest = kw['dest']
261 type = kw.get('type')
263 kw['type'] = 'string'
266 'action': kw.get('action'),
272 optparse.OptionParser.add_option(self, *args, **kw)
  /external/chromium_org/build/win/importlibs/
create_importlib_win.py 58 def _Shell(self, cmd, **kw):
59 ret = subprocess.call(cmd, **kw)
  /external/chromium_org/chrome/tools/build/win/
syzygy_instrument.py 29 def _Shell(*cmd, **kw):
32 prog = subprocess.Popen(cmd, **kw)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pkgimport.py 7 def __init__(self, *args, **kw):
12 unittest.TestCase.__init__(self, *args, **kw)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pkgimport.py 7 def __init__(self, *args, **kw):
12 unittest.TestCase.__init__(self, *args, **kw)
  /external/chromium_org/third_party/cython/src/Cython/Tempita/
_tempita.py 23 ``string.Template``) you can call the ``tmpl.substitute(**kw)``
26 ``sub(content, **kw)`` substitutes the template immediately. You
162 def substitute(self, *args, **kw):
164 if kw:
174 kw = args[0]
175 ns = kw
380 def sub(content, delimeters=None, **kw):
381 name = kw.get('__name')
383 return tmpl.substitute(kw)
393 def __init__(self, **kw)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
modsupport.h 33 PyAPI_FUNC(int) _PyArg_NoKeywords(const char *funcname, PyObject *kw);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/
validate.py 143 def lint_app(*args, **kw):
145 assert_(not kw, "No keyword arguments allowed")
154 def start_response_wrapper(*args, **kw):
157 assert_(not kw, "No keyword arguments allowed")
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
modsupport.h 33 PyAPI_FUNC(int) _PyArg_NoKeywords(const char *funcname, PyObject *kw);
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/
validate.py 143 def lint_app(*args, **kw):
145 assert_(not kw, "No keyword arguments allowed")
154 def start_response_wrapper(*args, **kw):
157 assert_(not kw, "No keyword arguments allowed")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
extension.py 104 **kw # To catch unknown keywords
128 if len(kw):
129 L = kw.keys() ; L.sort()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
extension.py 104 **kw # To catch unknown keywords
128 if len(kw):
129 L = kw.keys() ; L.sort()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
xmllib.py 103 def __init__(self, **kw):
105 if 'accept_unquoted_attributes' in kw:
106 self.__accept_unquoted_attributes = kw['accept_unquoted_attributes']
107 if 'accept_missing_endtag_name' in kw:
108 self.__accept_missing_endtag_name = kw['accept_missing_endtag_name']
109 if 'map_case' in kw:
110 self.__map_case = kw['map_case']
111 if 'accept_utf8' in kw:
112 self.__accept_utf8 = kw['accept_utf8']
113 if 'translate_attribute_references' in kw
    [all...]
formatter.py 44 def add_hor_rule(self, *args, **kw): pass
108 def add_hor_rule(self, *args, **kw):
111 self.writer.send_hor_rule(*args, **kw)
312 def send_hor_rule(self, *args, **kw): pass
347 def send_hor_rule(self, *args, **kw):
389 def send_hor_rule(self, *args, **kw):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
xmllib.py 103 def __init__(self, **kw):
105 if 'accept_unquoted_attributes' in kw:
106 self.__accept_unquoted_attributes = kw['accept_unquoted_attributes']
107 if 'accept_missing_endtag_name' in kw:
108 self.__accept_missing_endtag_name = kw['accept_missing_endtag_name']
109 if 'map_case' in kw:
110 self.__map_case = kw['map_case']
111 if 'accept_utf8' in kw:
112 self.__accept_utf8 = kw['accept_utf8']
113 if 'translate_attribute_references' in kw
    [all...]
formatter.py 44 def add_hor_rule(self, *args, **kw): pass
108 def add_hor_rule(self, *args, **kw):
111 self.writer.send_hor_rule(*args, **kw)
312 def send_hor_rule(self, *args, **kw): pass
347 def send_hor_rule(self, *args, **kw):
389 def send_hor_rule(self, *args, **kw):
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
lexer.py 25 def __init__(self,s="",verbose=0,**kw):
42 for key in kw.keys():
43 self.__dict__[key] = kw[key]
node.py 17 def __init__(self,*items,**kw):
22 for key in kw.keys():
23 self.__dict__[key] = kw[key]
  /frameworks/native/opengl/libs/GLES_trace/tools/
genapi.py 213 def getDataTypeFromKw(kw):
219 if kw.count('*') > 0:
221 return GLPROTOBUF_TYPE_MAP.get(kw)
  /external/valgrind/main/coregrind/m_gdbserver/
m_gdbserver.c 1308 HChar* kw; \/* current keyword, its length, its position *\/ local
    [all...]

Completed in 1171 milliseconds

1 23 4 5 6 7 8 9