/external/python/cpython2/Lib/email/ |
D | parser.py | 18 def __init__(self, *args, **kws): argument 35 if '_class' in kws: 37 kws['_class'] = args[0] 39 if 'strict' in kws: 41 kws['strict'] = args[1] 44 if '_class' in kws: 45 self._class = kws['_class'] 46 del kws['_class'] 49 if 'strict' in kws: 52 del kws['strict'] [all …]
|
D | __init__.py | 51 def message_from_string(s, *args, **kws): argument 57 return Parser(*args, **kws).parsestr(s) 60 def message_from_file(fp, *args, **kws): argument 66 return Parser(*args, **kws).parse(fp)
|
/external/python/cpython3/Lib/email/ |
D | __init__.py | 32 def message_from_string(s, *args, **kws): argument 38 return Parser(*args, **kws).parsestr(s) 40 def message_from_bytes(s, *args, **kws): argument 46 return BytesParser(*args, **kws).parsebytes(s) 48 def message_from_file(fp, *args, **kws): argument 54 return Parser(*args, **kws).parse(fp) 56 def message_from_binary_file(fp, *args, **kws): argument 62 return BytesParser(*args, **kws).parse(fp)
|
/external/python/cpython3/Lib/ |
D | string.py | 107 def substitute(*args, **kws): argument 115 mapping = kws 116 elif kws: 117 mapping = _ChainMap(kws, args[0]) 134 def safe_substitute(*args, **kws): argument 142 mapping = kws 143 elif kws: 144 mapping = _ChainMap(kws, args[0])
|
/external/python/cpython2/Lib/ |
D | string.py | 148 def substitute(*args, **kws): argument 156 mapping = kws 157 elif kws: 158 mapping = _multimap(kws, args[0]) 178 def safe_substitute(*args, **kws): argument 186 mapping = kws 187 elif kws: 188 mapping = _multimap(kws, args[0])
|
/external/python/cpython3/Lib/unittest/ |
D | loader.py | 98 def loadTestsFromModule(self, module, *args, pattern=None, **kws): argument 104 if len(args) > 0 or 'use_load_tests' in kws: 107 kws.pop('use_load_tests', None) 113 if len(kws) != 0: 118 complaint = sorted(kws)[0]
|
/external/tensorflow/tensorflow/python/autograph/pyct/ |
D | templates_test.py | 181 node = templates.replace(template, kws=source.keywords)[0] 186 templates.replace(template, kws=[]) 187 templates.replace(template, kws=1)
|
/external/python/cpython3/Lib/test/test_email/ |
D | __init__.py | 17 def openfile(filename, *args, **kws): argument 19 return open(path, *args, **kws)
|
/external/scapy/scapy/tools/ |
D | UTscapy.py | 124 def add_keywords(self, kws): argument 125 if isinstance(kws, six.string_types): 126 kws = [kws] 127 for kwd in kws:
|
/external/python/cpython2/Lib/test/ |
D | test_datetime.py | 1132 def __new__(cls, *args, **kws): argument 1133 temp = kws.copy() 1705 def __new__(cls, *args, **kws): argument 1706 temp = kws.copy() 2006 def __new__(cls, *args, **kws): argument 2007 temp = kws.copy() 2421 def __new__(cls, *args, **kws): argument 2422 temp = kws.copy() 3029 def __new__(cls, *args, **kws): argument 3030 temp = kws.copy()
|
/external/python/cpython2/Modules/ |
D | gcmodule.c | 1100 gc_collect(PyObject *self, PyObject *args, PyObject *kws) in gc_collect() argument 1106 if (!PyArg_ParseTupleAndKeywords(args, kws, "|i", keywords, &genarg)) in gc_collect()
|
/external/python/cpython2/Doc/library/ |
D | string.rst | 686 .. method:: substitute(mapping[, **kws]) 691 keywords are the placeholders. When both *mapping* and *kws* are given 692 and there are duplicates, the placeholders from *kws* take precedence. 695 .. method:: safe_substitute(mapping[, **kws]) 698 *mapping* and *kws*, instead of raising a :exc:`KeyError` exception, the
|
/external/tensorflow/tensorflow/python/ops/ |
D | variables.py | 190 previous_getter = lambda **kws: default_variable_creator_v2(None, **kws) argument
|
/external/python/cpython3/Lib/unittest/test/ |
D | test_loader.py | 11 def wrapper(*args, **kws): argument 15 return func(*args, **kws)
|
/external/python/cpython3/Lib/test/ |
D | datetimetester.py | 1601 def __new__(cls, *args, **kws): argument 1602 temp = kws.copy() 2564 def __new__(cls, *args, **kws): argument 2565 temp = kws.copy() 3175 def __new__(cls, *args, **kws): argument 3176 temp = kws.copy() 3752 def __new__(cls, *args, **kws): argument 3753 temp = kws.copy() 4448 def __new__(cls, *args, **kws): argument 4449 temp = kws.copy()
|
/external/clang/test/Analysis/ |
D | misc-ps.m | 835 void f(kwset_t *kws, char const *p, char const *q) { 837 struct trie * const *next = kws->next; 842 register unsigned char const *y = kws->y;
|
/external/python/cpython3/Python/ |
D | ceval.c | 3955 PyObject *const *kws, int kwcount, in PyEval_EvalCodeEx() argument 3961 kws, kws != NULL ? kws + 1 : NULL, in PyEval_EvalCodeEx()
|
/external/python/cpython2/Doc/c-api/ |
D | veryhigh.rst | 247 …ject *globals, PyObject *locals, PyObject **args, int argcount, PyObject **kws, int kwcount, PyObj…
|
/external/python/cpython3/Doc/c-api/ |
D | veryhigh.rst | 304 …s, PyObject *locals, PyObject *const *args, int argcount, PyObject *const *kws, int kwcount, PyObj…
|
/external/python/cpython2/Python/ |
D | ceval.c | 3368 PyObject **args, int argcount, PyObject **kws, int kwcount, in PyEval_EvalCodeEx() argument 3438 PyObject *keyword = kws[2*i]; in PyEval_EvalCodeEx() 3439 PyObject *value = kws[2*i + 1]; in PyEval_EvalCodeEx()
|
/external/python/cpython3/Doc/library/ |
D | sys.rst | 122 its ``*args`` and ``**kws`` straight through. Whatever 133 passing in ``*args`` and ``**kws``, and whatever ``function()`` returns,
|
D | functions.rst | 118 .. function:: breakpoint(*args, **kws) 121 it calls :func:`sys.breakpointhook`, passing ``args`` and ``kws`` straight
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 786 PyEval_EvalCodeEx:PyObject*const*:kws::
|
/external/cldr/tools/java/org/unicode/cldr/util/data/languages/ |
D | entityToCode.tsv | 873 http://www.wikidata.org/entity/Q3200846 kws
|
/external/cldr/tools/java/org/unicode/cldr/util/data/ |
D | iso-639-3_Name_Index.tab | 3529 kws Kwese Kwese
|