/external/libpng/ |
pngrutil.c | 1410 char keyword[81]; local [all...] |
/external/pdfium/third_party/libpng16/ |
pngrutil.c | 1398 char keyword[81]; local [all...] |
/external/python/cpython2/Python/ |
ceval.c | 3438 PyObject *keyword = kws[2*i]; local [all...] |
/external/autotest/site_utils/ |
generate_test_report | 111 def _CollectKeyval(self, testdir, keyword): 118 @param keyword: The keyword of keyval, either 'perf' or 'attr'. 134 match = re.search(r'^(.+){%s}=(.+)$' % keyword, line) [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
ICUResourceBundleTest.java | 790 private void getFunctionalEquivalentTestCases(String path, ClassLoader cl, String resName, String keyword, 805 ULocale equivLocale = ICUResourceBundle.getFunctionalEquivalent(path, cl, resName, keyword, inLocale, isAvail, truncate); [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
ICUResourceBundleTest.java | 787 private void getFunctionalEquivalentTestCases(String path, ClassLoader cl, String resName, String keyword, 802 ULocale equivLocale = ICUResourceBundle.getFunctionalEquivalent(path, cl, resName, keyword, inLocale, isAvail, truncate); [all...] |
/external/libcups/cups/ |
testppd.c | 1034 printf(" %s (%s):\n", option->keyword, option->text); 1041 if ((coption = ppdFindCustomOption(ppd, option->keyword)) != NULL)
|
/external/libpcap/ |
pcap-dos.c | 1088 int pcap_config_hook (const char *keyword, const char *value) 1090 return parse_config_table (debug_tab, NULL, keyword, value); [all...] |
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
parser.ml | 93 'Token.In ?? "expected 'in' keyword after 'var'";
|
/external/python/cpython2/Lib/test/ |
test_pydoc.py | 10 import keyword 624 sorted(keyword.kwlist))
|
/external/python/cpython3/Lib/ |
dataclasses.py | 6 import keyword [all...] |
/external/python/cpython3/Python/ |
ceval.c | 3744 PyObject *keyword = kwnames[i]; local [all...] |
/external/python/google-api-python-client/googleapiclient/ |
discovery.py | 45 import keyword 139 if keyword.iskeyword(name) or name in RESERVED_WORDS: 723 raise TypeError('Got an unexpected keyword argument "%s"' % name) [all...] |
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter7/ |
parser.ml | 93 'Token.In ?? "expected 'in' keyword after 'var'";
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
parser.ml | 93 'Token.In ?? "expected 'in' keyword after 'var'";
|
/external/tensorflow/tensorflow/tools/docs/ |
parser.py | 512 collections.namedtuple('_FunctionDetail', ['keyword', 'header', 'items'])): 515 Composed of a "keyword", a possibly empty "header" string, and a possibly 523 parts = [self.keyword + ':\n'] 554 keyword='Args', 560 keyword='Returns', 583 # Everything else alternates keyword-content 589 for keyword, content in pairs: 594 function_details.append(_FunctionDetail(keyword, header, items)) [all...] |
/external/u-boot/tools/buildman/ |
kconfiglib.py | [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/pydoc_data/ |
topics.py | [all...] |
/external/mdnsresponder/mDNSPosix/ |
mDNSPosix.c | 508 char keyword[10]; local 516 if (sscanf(line,"%10s %15s", keyword, nameserver) != 2) continue; // it will skip whitespaces 517 if (strncasecmp(keyword,"nameserver",10)) continue; [all...] |
/external/python/cpython3/Lib/test/ |
test_ast.py | 520 "keyword(arg='eggs', value=Str(s='leek'))" 708 self.stmt(cls(keywords=[ast.keyword("x", ast.Name("x", ast.Store()))]), [all...] |
test_getargs2.py | 538 # positional and keyword args 552 # missing optional keyword args, skipping tuples 577 # extraneous keyword arg 581 self.assertEqual(str(err), "'arg666' is an invalid keyword argument for this function") 589 self.assertEqual(str(err), "'\udc80' is an invalid keyword argument for this function") 602 # positional and keyword args 616 # missing optional keyword args, skipping tuples 654 # extraneous keyword arg 656 "'monster' is an invalid keyword argument for this function"): 661 "'\udc80' is an invalid keyword argument for this function") [all...] |
test_grammar.py | 544 # keyword argument type tests 550 self.fail('Bytes should not work as keyword argument names') 551 # keyword only argument tests 566 # keyword arguments after *arglist 716 for keyword in keywords: 717 custom_msg = "call to '{}'".format(keyword) 719 source = case.format(keyword) [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/pydoc_data/ |
topics.py | [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
optparse.py | 467 # keyword args to the constructor.
624 "invalid keyword arguments: %s" % ", ".join(attrs),
[all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
collections.py | 10 from keyword import iskeyword as _iskeyword
39 regular dictionaries, but keyword arguments are not recommended because
280 raise ValueError('Type names and field names cannot be a keyword: %r' % name)
414 >>> c = Counter(a=4, b=2) # a new counter from keyword args
|