HomeSort by relevance Sort by last modified time
    Searched full:fixer (Results 1 - 25 of 125) sorted by null

1 2 3 4 5

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/fixers/
no_fixer_cls.py 1 # This is empty so trying to fetch the fixer class gives an AttributeError
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/fixers/
no_fixer_cls.py 1 # This is empty so trying to fetch the fixer class gives an AttributeError
  /external/clang/test/CodeGenCXX/
reference-in-block-args.cpp 11 void OUTER_BLOCK(void (^fixer)(ST& ref)) {
13 fixer(ref);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_buffer.py 4 """Fixer that changes buffer(...) into memoryview(...)."""
14 explicit = True # The user must ask for this fixer
fix_basestring.py 0 """Fixer for basestring -> str."""
fix_standarderror.py 4 """Fixer for StandardError -> Exception."""
fix_getcwdu.py 2 Fixer that changes os.getcwdu() to os.getcwd().
fix_long.py 4 """Fixer that turns 'long' into 'int' everywhere.
fix_nonzero.py 0 """Fixer for __nonzero__ -> __bool__ methods."""
fix_raw_input.py 0 """Fixer that changes raw_input(...) into input(...)."""
fix_ne.py 4 """Fixer that turns <> into !=."""
fix_reduce.py 4 """Fixer for reduce().
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_buffer.py 4 """Fixer that changes buffer(...) into memoryview(...)."""
14 explicit = True # The user must ask for this fixer
fix_basestring.py 0 """Fixer for basestring -> str."""
fix_standarderror.py 4 """Fixer for StandardError -> Exception."""
fix_getcwdu.py 2 Fixer that changes os.getcwdu() to os.getcwd().
fix_long.py 4 """Fixer that turns 'long' into 'int' everywhere.
fix_nonzero.py 0 """Fixer for __nonzero__ -> __bool__ methods."""
fix_raw_input.py 0 """Fixer that changes raw_input(...) into input(...)."""
  /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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_all_fixers.py 1 """Tests that run all fixer modules over an input stream.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_all_fixers.py 1 """Tests that run all fixer modules over an input stream.

Completed in 153 milliseconds

1 2 3 4 5