/prebuilts/gdb/darwin-x86/lib/python2.7/pydoc_data/ |
topics.py | [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/pydoc_data/ |
topics.py | [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/pydoc_data/ |
topics.py | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/pydoc_data/ |
topics.py | [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/pydoc_data/ |
topics.py | [all...] |
/external/python/cpython2/Lib/pydoc_data/ |
topics.py | [all...] |
/prebuilts/misc/common/icu4j/ |
icu4j.jar | |
/prebuilts/misc/common/robolectric/3.1.1/lib/ |
icu4j-53.1.jar | |
/prebuilts/misc/common/robolectric/3.4.2/lib/ |
icu4j-53.1.jar | |
/prebuilts/misc/common/robolectric/3.5.1/lib/ |
icu4j-53.1.jar | |
/prebuilts/misc/common/robolectric/3.6.1/lib/ |
icu4j-53.1.jar | |
/prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/ |
icu4j-53.1.jar | |
/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 | 515 "keyword(arg='eggs', value=Str(s='leek'))" 648 self.stmt(cls(keywords=[ast.keyword("x", ast.Name("x", ast.Store()))]), 877 keywords = [ast.keyword("w", ast.Name("z", ast.Load()))] 882 bad_keywords = [ast.keyword("w", ast.Name("z", ast.Store()))] [all...] |
test_getargs2.py | 530 # positional and keyword args 544 # missing optional keyword args, skipping tuples 568 # extraneous keyword arg 572 self.assertEqual(str(err), "'arg666' is an invalid keyword argument for this function") 580 self.assertEqual(str(err), "'\udc80' is an invalid keyword argument for this function") 593 # positional and keyword args 607 # missing optional keyword args, skipping tuples 645 # extraneous keyword arg 647 "'monster' is an invalid keyword argument for this function"): 652 "'\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
|
optparse.py | 466 # keyword args to the constructor.
623 "invalid keyword arguments: %s" % ", ".join(attrs),
[all...] |
/external/libmojo/third_party/jinja2/ |
filters.py | 488 using the wrapstring keyword argument. 542 raise FilterArgumentError('can\'t handle positional and keyword ' 826 raise FilterArgumentError('Unexpected keyword argument %r' %
|
/external/python/cpython2/Lib/ |
collections.py | 22 from keyword import iskeyword as _iskeyword 52 regular dictionaries, but keyword arguments are not recommended because 354 'keyword: %r' % name) 466 >>> c = Counter(a=4, b=2) # a new counter from keyword args
|
optparse.py | 467 # keyword args to the constructor. 624 "invalid keyword arguments: %s" % ", ".join(attrs), [all...] |
/external/python/cpython3/Lib/ |
optparse.py | 470 # keyword args to the constructor. 626 "invalid keyword arguments: %s" % ", ".join(attrs), [all...] |
/external/skia/tools/bookmaker/ |
includeParser.cpp | 13 { "", KeyWord::kNone, KeyProperty::kNone }, 14 { "SK_API", KeyWord::kSK_API, KeyProperty::kModifier }, 15 { "SK_BEGIN_REQUIRE_DENSE", KeyWord::kSK_BEGIN_REQUIRE_DENSE, KeyProperty::kModifier }, 16 { "bool", KeyWord::kBool, KeyProperty::kNumber }, 17 { "char", KeyWord::kChar, KeyProperty::kNumber }, 18 { "class", KeyWord::kClass, KeyProperty::kObject }, 19 { "const", KeyWord::kConst, KeyProperty::kModifier }, 20 { "constexpr", KeyWord::kConstExpr, KeyProperty::kModifier }, 21 { "define", KeyWord::kDefine, KeyProperty::kPreprocessor }, 22 { "double", KeyWord::kDouble, KeyProperty::kNumber } 1084 KeyWord keyword = oneClass.second.fKeyWord; local [all...] |