HomeSort by relevance Sort by last modified time
    Searched refs:fixer (Results 1 - 17 of 17) sorted by null

  /external/clang/test/CodeGenCXX/
reference-in-block-args.cpp 11 void OUTER_BLOCK(void (^fixer)(ST& ref)) {
13 fixer(ref);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
btm_matcher.py 37 def add_fixer(self, fixer):
38 """Reduces a fixer's pattern tree to a linear path and adds it
39 to the matcher(a common Aho-Corasick automaton). The fixer is
42 self.fixers.append(fixer)
43 tree = reduce_tree(fixer.pattern_tree)
47 match_node.fixers.append(fixer)
119 for fixer in current_ac_node.fixers:
120 if not fixer in results:
121 results[fixer] = []
122 results[fixer].append(current_ast_node)
    [all...]
refactor.py 80 of head node type --> fixer list. """
83 for fixer in fixer_list:
84 if fixer.pattern:
86 heads = _get_head_types(fixer.pattern)
88 every.append(fixer)
91 head_nodes[node_type].append(fixer)
93 if fixer._accept_type is not None:
94 head_nodes[fixer._accept_type].append(fixer)
96 every.append(fixer)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/
btm_matcher.py 37 def add_fixer(self, fixer):
38 """Reduces a fixer's pattern tree to a linear path and adds it
39 to the matcher(a common Aho-Corasick automaton). The fixer is
42 self.fixers.append(fixer)
43 tree = reduce_tree(fixer.pattern_tree)
47 match_node.fixers.append(fixer)
119 for fixer in current_ac_node.fixers:
120 if not fixer in results:
121 results[fixer] = []
122 results[fixer].append(current_ast_node
    [all...]
refactor.py 80 of head node type --> fixer list. """
83 for fixer in fixer_list:
84 if fixer.pattern:
86 heads = _get_head_types(fixer.pattern)
88 every.append(fixer)
91 head_nodes[node_type].append(fixer)
93 if fixer._accept_type is not None:
94 head_nodes[fixer._accept_type].append(fixer)
96 every.append(fixer)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/
btm_matcher.py 37 def add_fixer(self, fixer):
38 """Reduces a fixer's pattern tree to a linear path and adds it
39 to the matcher(a common Aho-Corasick automaton). The fixer is
42 self.fixers.append(fixer)
43 tree = reduce_tree(fixer.pattern_tree)
47 match_node.fixers.append(fixer)
119 for fixer in current_ac_node.fixers:
120 if not fixer in results:
121 results[fixer] = []
122 results[fixer].append(current_ast_node
    [all...]
refactor.py 80 of head node type --> fixer list. """
83 for fixer in fixer_list:
84 if fixer.pattern:
86 heads = _get_head_types(fixer.pattern)
88 every.append(fixer)
91 head_nodes[node_type].append(fixer)
93 if fixer._accept_type is not None:
94 head_nodes[fixer._accept_type].append(fixer)
96 every.append(fixer)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
btm_matcher.py 37 def add_fixer(self, fixer):
38 """Reduces a fixer's pattern tree to a linear path and adds it
39 to the matcher(a common Aho-Corasick automaton). The fixer is
42 self.fixers.append(fixer)
43 tree = reduce_tree(fixer.pattern_tree)
47 match_node.fixers.append(fixer)
119 for fixer in current_ac_node.fixers:
120 if not fixer in results:
121 results[fixer] = []
122 results[fixer].append(current_ast_node
    [all...]
refactor.py 80 of head node type --> fixer list. """
83 for fixer in fixer_list:
84 if fixer.pattern:
86 heads = _get_head_types(fixer.pattern)
88 every.append(fixer)
91 head_nodes[node_type].append(fixer)
93 if fixer._accept_type is not None:
94 head_nodes[fixer._accept_type].append(fixer)
96 every.append(fixer)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
btm_matcher.py 37 def add_fixer(self, fixer):
38 """Reduces a fixer's pattern tree to a linear path and adds it
39 to the matcher(a common Aho-Corasick automaton). The fixer is
42 self.fixers.append(fixer)
43 tree = reduce_tree(fixer.pattern_tree)
47 match_node.fixers.append(fixer)
119 for fixer in current_ac_node.fixers:
120 if not fixer in results:
121 results[fixer] = []
122 results[fixer].append(current_ast_node
    [all...]
refactor.py 80 of head node type --> fixer list. """
83 for fixer in fixer_list:
84 if fixer.pattern:
86 heads = _get_head_types(fixer.pattern)
88 every.append(fixer)
91 head_nodes[node_type].append(fixer)
93 if fixer._accept_type is not None:
94 head_nodes[fixer._accept_type].append(fixer)
96 every.append(fixer)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/
test_fixers.py 1 """ Test suite for the fixer modules """
20 fix_list = [self.fixer]
25 for fixer in chain(self.refactor.pre_order,
27 fixer.log = self.fixer_log
57 fixes = [self.fixer]
61 n = "fix_" + self.fixer
63 # We're the last fixer to run
68 self.fail("Fixer run order (%s) is incorrect; %s should be last."\
72 fixer = "ne" variable in class:Test_ne
99 fixer = "has_key" variable in class:Test_has_key
157 fixer = "apply" variable in class:Test_apply
286 fixer = "intern" variable in class:Test_intern
335 fixer = "reduce" variable in class:Test_reduce
370 fixer = "print" variable in class:Test_print
476 fixer = "exec" variable in class:Test_exec
527 fixer = "repr" variable in class:Test_repr
565 fixer = "except" variable in class:Test_except
840 fixer = "raise" variable in class:Test_raise
967 fixer = "throw" variable in class:Test_throw
1092 fixer = "long" variable in class:Test_long
1138 fixer = "execfile" variable in class:Test_execfile
1176 fixer = "isinstance" variable in class:Test_isinstance
1204 fixer = "dict" variable in class:Test_dict
1434 fixer = "xrange" variable in class:Test_xrange
1517 fixer = "raw_input" variable in class:Test_raw_input
1564 fixer = "funcattrs" variable in class:Test_funcattrs
1590 fixer = "xreadlines" variable in class:Test_xreadlines
1731 fixer = "imports" variable in class:Test_imports
1752 fixer = "imports2" variable in class:Test_imports2
1773 fixer = "urllib" variable in class:Test_urllib
1883 fixer = "input" variable in class:Test_input
1930 fixer = "tuple_params" variable in class:Test_tuple_params
2117 fixer = "methodattrs" variable in class:Test_methodattrs
2149 fixer = "next" variable in class:Test_next
2623 fixer = "nonzero" variable in class:Test_nonzero
2675 fixer = "numliterals" variable in class:Test_numliterals
2741 fixer = "renames" variable in class:Test_renames
2787 fixer = "unicode" variable in class:Test_unicode
2828 fixer = "callable" variable in class:Test_callable
2921 fixer = "filter" variable in class:Test_filter
3003 fixer = "map" variable in class:Test_map
3111 fixer = "zip" variable in class:Test_zip
3174 fixer = "standarderror" variable in class:Test_standarderror
3190 fixer = "types" variable in class:Test_types
3218 fixer = "idioms" variable in class:Test_idioms
3562 fixer = "basestring" variable in class:Test_basestring
3570 fixer = "buffer" variable in class:Test_buffer
3583 fixer = "future" variable in class:Test_future
3602 fixer = "itertools" variable in class:Test_itertools
3663 fixer = 'itertools_imports' variable in class:Test_itertools_imports
3737 fixer = "import" variable in class:Test_import
3902 fixer = "set_literal" variable in class:Test_set_literal
4028 fixer = "sys_exc" variable in class:Test_sys_exc
4062 fixer = "paren" variable in class:Test_paren
4121 fixer = 'metaclass' variable in class:Test_metaclass
4286 fixer = 'getcwdu' variable in class:Test_getcwdu
4347 fixer = "operator" variable in class:Test_operator
4446 fixer = "exitfunc" variable in class:Test_exitfunc
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_fixers.py 1 """ Test suite for the fixer modules """
20 fix_list = [self.fixer]
25 for fixer in chain(self.refactor.pre_order,
27 fixer.log = self.fixer_log
57 fixes = [self.fixer]
61 n = "fix_" + self.fixer
63 # We're the last fixer to run
68 self.fail("Fixer run order (%s) is incorrect; %s should be last."\
72 fixer = "ne" variable in class:Test_ne
99 fixer = "has_key variable in class:Test_has_key
157 fixer = "apply" variable in class:Test_apply
286 fixer = "intern" variable in class:Test_intern
335 fixer = "reduce" variable in class:Test_reduce
370 fixer = "print" variable in class:Test_print
476 fixer = "exec" variable in class:Test_exec
527 fixer = "repr" variable in class:Test_repr
565 fixer = "except" variable in class:Test_except
840 fixer = "raise" variable in class:Test_raise
967 fixer = "throw" variable in class:Test_throw
1092 fixer = "long" variable in class:Test_long
1138 fixer = "execfile" variable in class:Test_execfile
1176 fixer = "isinstance" variable in class:Test_isinstance
1204 fixer = "dict" variable in class:Test_dict
1434 fixer = "xrange" variable in class:Test_xrange
1517 fixer = "raw_input" variable in class:Test_raw_input
1564 fixer = "funcattrs" variable in class:Test_funcattrs
1590 fixer = "xreadlines" variable in class:Test_xreadlines
1731 fixer = "imports" variable in class:Test_imports
1752 fixer = "imports2" variable in class:Test_imports2
1773 fixer = "urllib" variable in class:Test_urllib
1883 fixer = "input" variable in class:Test_input
1930 fixer = "tuple_params" variable in class:Test_tuple_params
2117 fixer = "methodattrs" variable in class:Test_methodattrs
2149 fixer = "next" variable in class:Test_next
2623 fixer = "nonzero" variable in class:Test_nonzero
2675 fixer = "numliterals" variable in class:Test_numliterals
2741 fixer = "renames" variable in class:Test_renames
2787 fixer = "unicode" variable in class:Test_unicode
2828 fixer = "callable" variable in class:Test_callable
2921 fixer = "filter" variable in class:Test_filter
3007 fixer = "map" variable in class:Test_map
3119 fixer = "zip" variable in class:Test_zip
3186 fixer = "standarderror" variable in class:Test_standarderror
3202 fixer = "types" variable in class:Test_types
3230 fixer = "idioms" variable in class:Test_idioms
3574 fixer = "basestring" variable in class:Test_basestring
3582 fixer = "buffer" variable in class:Test_buffer
3595 fixer = "future" variable in class:Test_future
3614 fixer = "itertools" variable in class:Test_itertools
3675 fixer = 'itertools_imports' variable in class:Test_itertools_imports
3749 fixer = "import" variable in class:Test_import
3914 fixer = "set_literal" variable in class:Test_set_literal
4040 fixer = "sys_exc" variable in class:Test_sys_exc
4074 fixer = "paren" variable in class:Test_paren
4133 fixer = 'metaclass' variable in class:Test_metaclass
4298 fixer = 'getcwdu' variable in class:Test_getcwdu
4359 fixer = "operator" variable in class:Test_operator
4458 fixer = "exitfunc" variable in class:Test_exitfunc
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_fixers.py 1 """ Test suite for the fixer modules """
20 fix_list = [self.fixer]
25 for fixer in chain(self.refactor.pre_order,
27 fixer.log = self.fixer_log
57 fixes = [self.fixer]
61 n = "fix_" + self.fixer
63 # We're the last fixer to run
68 self.fail("Fixer run order (%s) is incorrect; %s should be last."\
72 fixer = "ne" variable in class:Test_ne
99 fixer = "has_key variable in class:Test_has_key
157 fixer = "apply" variable in class:Test_apply
286 fixer = "intern" variable in class:Test_intern
335 fixer = "reduce" variable in class:Test_reduce
370 fixer = "print" variable in class:Test_print
476 fixer = "exec" variable in class:Test_exec
527 fixer = "repr" variable in class:Test_repr
565 fixer = "except" variable in class:Test_except
840 fixer = "raise" variable in class:Test_raise
967 fixer = "throw" variable in class:Test_throw
1092 fixer = "long" variable in class:Test_long
1138 fixer = "execfile" variable in class:Test_execfile
1176 fixer = "isinstance" variable in class:Test_isinstance
1204 fixer = "dict" variable in class:Test_dict
1434 fixer = "xrange" variable in class:Test_xrange
1517 fixer = "raw_input" variable in class:Test_raw_input
1564 fixer = "funcattrs" variable in class:Test_funcattrs
1590 fixer = "xreadlines" variable in class:Test_xreadlines
1731 fixer = "imports" variable in class:Test_imports
1752 fixer = "imports2" variable in class:Test_imports2
1773 fixer = "urllib" variable in class:Test_urllib
1883 fixer = "input" variable in class:Test_input
1930 fixer = "tuple_params" variable in class:Test_tuple_params
2117 fixer = "methodattrs" variable in class:Test_methodattrs
2149 fixer = "next" variable in class:Test_next
2623 fixer = "nonzero" variable in class:Test_nonzero
2675 fixer = "numliterals" variable in class:Test_numliterals
2741 fixer = "renames" variable in class:Test_renames
2787 fixer = "unicode" variable in class:Test_unicode
2828 fixer = "callable" variable in class:Test_callable
2921 fixer = "filter" variable in class:Test_filter
3007 fixer = "map" variable in class:Test_map
3119 fixer = "zip" variable in class:Test_zip
3186 fixer = "standarderror" variable in class:Test_standarderror
3202 fixer = "types" variable in class:Test_types
3230 fixer = "idioms" variable in class:Test_idioms
3574 fixer = "basestring" variable in class:Test_basestring
3582 fixer = "buffer" variable in class:Test_buffer
3595 fixer = "future" variable in class:Test_future
3614 fixer = "itertools" variable in class:Test_itertools
3675 fixer = 'itertools_imports' variable in class:Test_itertools_imports
3749 fixer = "import" variable in class:Test_import
3914 fixer = "set_literal" variable in class:Test_set_literal
4040 fixer = "sys_exc" variable in class:Test_sys_exc
4074 fixer = "paren" variable in class:Test_paren
4133 fixer = 'metaclass' variable in class:Test_metaclass
4298 fixer = 'getcwdu' variable in class:Test_getcwdu
4359 fixer = "operator" variable in class:Test_operator
4458 fixer = "exitfunc" variable in class:Test_exitfunc
    [all...]
  /frameworks/base/tools/aapt2/link/
ManifestFixer_test.cpp 65 ManifestFixer fixer(options);
66 if (fixer.Consume(mContext.get(), doc.get())) {
  /prebuilts/go/darwin-x86/src/cmd/fix/
main.go 181 // output of the printer run on a mangled AST generated by a fixer.
  /prebuilts/go/linux-x86/src/cmd/fix/
main.go 181 // output of the printer run on a mangled AST generated by a fixer.

Completed in 422 milliseconds