/external/yapf/yapftests/ |
D | comment_splicer_test.py | 254 funcdef = class_suite.children[3] 255 toplevel_comment = funcdef.children[0] 270 funcdef = tree.children[0] 271 block_comment_1 = funcdef.children[0] 274 block_comment_2 = funcdef.children[1]
|
/external/clang/test/Sema/ |
D | merge-decls.c | 10 int funcdef() in funcdef() function 15 int funcdef();
|
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/ |
D | function_definition.py | 26 if statement.type == symbol.funcdef: 29 statement.children[-1].type == symbol.funcdef):
|
/external/python/cpython2/Lib/hotshot/ |
D | log.py | 179 funcdef = symbol.funcdef 190 if sym == funcdef:
|
/external/python/cpython3/Lib/lib2to3/ |
D | Grammar.txt | 17 decorated: decorators (classdef | funcdef | async_funcdef) 18 async_funcdef: ASYNC funcdef 19 funcdef: 'def' NAME parameters ['->' test] ':' suite 108 compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decora… 109 async_stmt: ASYNC (funcdef | with_stmt | for_stmt)
|
D | fixer_util.py | 257 if parent.type in (syms.funcdef, syms.classdef): 360 _def_syms = {syms.classdef, syms.funcdef} 403 _block_syms = {syms.funcdef, syms.classdef, syms.trailer}
|
/external/python/cpython3/Lib/test/ |
D | test_type_comments.py | 7 funcdef = """\ variable 248 for tree in self.parse_all(funcdef): 251 tree = self.classic_parse(funcdef)
|
/external/python/cpython2/Grammar/ |
D | Grammar | 24 decorated: decorators (classdef | funcdef) 25 funcdef: 'def' NAME parameters ':' suite 65 compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decora…
|
/external/python/cpython2/Lib/lib2to3/ |
D | Grammar.txt | 36 decorated: decorators (classdef | funcdef) 37 funcdef: 'def' NAME parameters ['->' test] ':' suite 85 compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decora…
|
D | fixer_util.py | 236 if parent.type in (syms.funcdef, syms.classdef): 339 _def_syms = set([syms.classdef, syms.funcdef]) 382 _block_syms = set([syms.funcdef, syms.classdef, syms.trailer])
|
/external/python/cpython2/Include/ |
D | graminit.h | 9 #define funcdef 262 macro
|
/external/python/cpython2/Lib/ |
D | symbol.py | 19 funcdef = 262 variable
|
/external/elfutils/doc/ |
D | elfutils.sgml | 153 <funcdef>Elf_Data *<function>elf_getdata</function></funcdef> 199 <funcdef>off_t <function>elf_update</function></funcdef>
|
/external/python/cpython2/Demo/parser/ |
D | example.py | 52 if cstmt[0] == symbol.funcdef:
|
/external/python/cpython2/Lib/compiler/ |
D | transformer.py | 162 if n == symbol.funcdef: 163 return self.funcdef(node[1:]) 237 if nodelist[1][0] == symbol.funcdef: 239 return self.funcdef(n) 247 def funcdef(self, nodelist): member in Transformer 1457 symbol.funcdef,
|
/external/antlr/runtime/JavaScript/tests/functional/ |
D | Python.g | 90 funcdef 230 | funcdef
|
/external/python/cpython2/Doc/reference/ |
D | compound_stmts.rst | 50 : | `funcdef` 447 decorated: decorators (classdef | funcdef) 450 funcdef: "def" `funcname` "(" [`parameter_list`] ")" ":" `suite`
|
/external/python/cpython2/Modules/ |
D | parsermodule.c | 1652 || (ntype == funcdef) in validate_compound_stmt() 2740 int ok = (validate_ntype(tree, funcdef) in validate_funcdef() 2761 if (TYPE(RCHILD(tree, -1)) == funcdef) in validate_decorated() 3156 case funcdef: in validate_node()
|
/external/python/cpython2/Python/ |
D | ast.c | 901 REQ(n, funcdef); in ast_for_funcdef() 932 assert(TYPE(CHILD(n, 1)) == funcdef || in ast_for_decorated() 935 if (TYPE(CHILD(n, 1)) == funcdef) { in ast_for_decorated() 3310 case funcdef: in ast_for_stmt()
|
/external/python/cpython3/Doc/reference/ |
D | compound_stmts.rst | 55 : | `funcdef` 1119 funcdef: [`decorators`] "def" `funcname` "(" [`parameter_list`] ")"
|
/external/mksh/src/ |
D | check.t | 9032 name: aliases-funcdef-1 9044 name: aliases-funcdef-2 9056 name: aliases-funcdef-3 9068 name: aliases-funcdef-4
|