HomeSort by relevance Sort by last modified time
    Searched refs:keywords (Results 101 - 125 of 309) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/python/cpython3/Lib/distutils/tests/
test_dist.py 190 attrs = {'keywords': 'one,two',
196 # finalize_option splits platforms and keywords
198 self.assertEqual(dist.metadata.keywords, ['one', 'two'])
200 attrs = {'keywords': 'foo bar',
205 self.assertEqual(dist.metadata.keywords, ['foo bar'])
382 'keywords': ['spam', 'eggs', 'life of brian']}
389 'keywords': ('spam', 'eggs', 'life of brian')}
395 self.assertIsInstance(d.metadata.keywords, list)
396 self.assertEqual(d.metadata.keywords, list(attrs['keywords']))
    [all...]
  /external/tensorflow/tensorflow/tools/compatibility/
ast_edits.py 87 for kw in node.keywords:
340 continue # Can't move Starred to keywords
348 "Added keywords to args of function %r" % full_name)
350 node.keywords = new_keywords + (node.keywords or [])
364 for keyword in node.keywords:
386 node.keywords = new_keywords
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
parsermodule.c 339 static char *keywords[] = {"ast", "line_info", "col_info", NULL}; local
342 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|OO:st2tuple", keywords,
347 ok = PyArg_ParseTupleAndKeywords(args, kw, "|OO:totuple", &keywords[1],
395 static char *keywords[] = {"ast", "line_info", "col_info", NULL}; local
398 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|OO:st2list", keywords,
402 ok = PyArg_ParseTupleAndKeywords(args, kw, "|OO:tolist", &keywords[1],
451 static char *keywords[] = {"ast", "filename", NULL}; local
454 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|s:compilest", keywords,
457 ok = PyArg_ParseTupleAndKeywords(args, kw, "|s:compile", &keywords[1],
496 static char *keywords[] = {"ast", NULL}; local
519 static char *keywords[] = {"ast", NULL}; local
569 static char *keywords[] = {"source", NULL}; local
658 static char *keywords[] = {"sequence", NULL}; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
parsermodule.c 308 static char *keywords[] = {"ast", "line_info", "col_info", NULL}; local
311 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|OO:st2tuple", keywords,
316 ok = PyArg_ParseTupleAndKeywords(args, kw, "|OO:totuple", &keywords[1],
360 static char *keywords[] = {"ast", "line_info", "col_info", NULL}; local
363 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|OO:st2list", keywords,
367 ok = PyArg_ParseTupleAndKeywords(args, kw, "|OO:tolist", &keywords[1],
412 static char *keywords[] = {"ast", "filename", NULL}; local
415 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|s:compilest", keywords,
418 ok = PyArg_ParseTupleAndKeywords(args, kw, "|s:compile", &keywords[1],
457 static char *keywords[] = {"ast", NULL}; local
480 static char *keywords[] = {"ast", NULL}; local
549 static char *keywords[] = {"source", NULL}; local
638 static char *keywords[] = {"sequence", NULL}; local
    [all...]
  /external/python/cpython2/Modules/
parsermodule.c 339 static char *keywords[] = {"ast", "line_info", "col_info", NULL}; local
342 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|OO:st2tuple", keywords,
347 ok = PyArg_ParseTupleAndKeywords(args, kw, "|OO:totuple", &keywords[1],
395 static char *keywords[] = {"ast", "line_info", "col_info", NULL}; local
398 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|OO:st2list", keywords,
402 ok = PyArg_ParseTupleAndKeywords(args, kw, "|OO:tolist", &keywords[1],
451 static char *keywords[] = {"ast", "filename", NULL}; local
454 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|s:compilest", keywords,
457 ok = PyArg_ParseTupleAndKeywords(args, kw, "|s:compile", &keywords[1],
496 static char *keywords[] = {"ast", NULL} local
519 static char *keywords[] = {"ast", NULL}; local
569 static char *keywords[] = {"source", NULL}; local
658 static char *keywords[] = {"sequence", NULL}; local
    [all...]
  /external/python/cpython3/Lib/distutils/
dist.py 120 ('keywords', None,
121 "print the list of keywords"),
613 for attr in ('keywords', 'platforms'):
700 if opt in ['keywords', 'platforms']:
    [all...]
  /external/ImageMagick/scripts/
format_c_api_docs 127 my %keywords =
535 # Replace tokens matching keywords with HTML links.
537 foreach $keyword ( %keywords ) {
539 $html .= linked( $keyword, $keywords{$keyword} );
  /external/flatbuffers/src/
idl_gen_lobster.cpp 33 static const char * const keywords[] = { local
39 keywords_.insert(std::begin(keywords), std::end(keywords));
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/util/
ULocale.java 62 * <li>language, script, country, variant, and keywords are properly cased<br>
67 * <li>surrounding spaces are removed from keywords and values</li>
68 * <li>if there are multiple keywords, they are put in sorted order</li>
3498 Map<String, String> keywords = null; local
    [all...]
  /external/python/cpython2/Lib/multiprocessing/
forking.py 93 return _rebuild_partial, (p.func, p.args, p.keywords or {})
94 def _rebuild_partial(func, args, keywords):
95 return partial(func, *args, **keywords)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
parse.py 167 ilabel = self.grammar.keywords.get(value)
conv.py 251 self.keywords = {} # map from keyword strings to arc labels
255 self.keywords[value] = ilabel
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/faqwiz/
faqwiz.py 431 self.error("No keywords specified!")
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/i18n/
pygettext.py 41 xgettext recognizes the following keywords: gettext, dgettext, dcgettext,
92 Keywords to look for in addition to the default set, which are:
98 --no-default-keywords
99 Disable the default set of keywords (see above). Any keywords
391 if ttype == tokenize.NAME and tstring in opts.keywords:
518 'keyword=', 'no-default-keywords',
534 keywords = []
563 options.keywords.append(arg)
564 elif opt in ('-K', '--no-default-keywords'):
528 keywords = [] variable in class:main.Options
    [all...]
  /external/llvm/utils/vim/syntax/
llvm.vim 38 " Keywords.
156 " Obsolete keywords.
171 " Named metadata and specialized metadata keywords.
  /external/python/cpython2/Lib/lib2to3/pgen2/
parse.py 167 ilabel = self.grammar.keywords.get(value)
  /external/python/cpython2/Tools/faqwiz/
faqwiz.py 431 self.error("No keywords specified!")
  /external/python/cpython2/Tools/i18n/
pygettext.py 41 xgettext recognizes the following keywords: gettext, dgettext, dcgettext,
92 Keywords to look for in addition to the default set, which are:
98 --no-default-keywords
99 Disable the default set of keywords (see above). Any keywords
384 if ttype == tokenize.NAME and tstring in opts.keywords:
511 'keyword=', 'no-default-keywords',
527 keywords = []
556 options.keywords.append(arg)
557 elif opt in ('-K', '--no-default-keywords')
521 keywords = [] variable in class:main.Options
    [all...]
  /external/python/cpython3/Include/
modsupport.h 84 const char * const *keywords; member in struct:_PyArg_Parser
  /external/python/cpython3/Lib/lib2to3/pgen2/
parse.py 167 ilabel = self.grammar.keywords.get(value)
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/vim/syntax/
llvm.vim 39 " Keywords.
173 " Obsolete keywords.
188 " Named metadata and specialized metadata keywords.
  /external/tensorflow/tensorflow/contrib/specs/python/
specs_lib.py 31 KEYWORDS = re.compile(r"""\b(import|while|def|exec)\b""")
38 """Check for common Python keywords in spec.
51 match = re.search(KEYWORDS, spec)
59 If `kw` contains keywords of the form "_0", "_1", etc., these
  /external/tensorflow/tensorflow/lite/tools/pip_package/
setup.py 152 keywords='tflite tensorflow tensor machine learning',
  /external/tensorflow/tensorflow/python/autograph/converters/
directives.py 49 kwds = {kwd.arg: kwd.value for kwd in call_node.keywords}
  /external/turbine/javatests/com/google/turbine/parse/
LexerTest.java 201 public void keywords() { method in class:LexerTest

Completed in 925 milliseconds

1 2 3 45 6 7 8 91011>>