Home | History | Annotate | Download | only in Scripts

Lines Matching defs:FUNCTION

48 #   Work around diff stupidity where deleting a function that starts
49 # with a comment makes diff think that the following function
50 # has been changed (if the following function starts with a comment
52 # Work around diff stupidity where deleting an entire function and
54 # previous function.
206 # For each source file, convert line range to function list.
208 print STDERR " Extracting affected function names from source files.\n";
210 # Only look for function names in certain source files.
223 FUNCTION: foreach my $function_range_ref (@function_ranges) {
228 last FUNCTION unless @change_range;
230 # If past this function, move on to the next one.
231 next FUNCTION if $change_range[0] > $function_range[1];
233 # If an overlap with this function range, record the function name.
240 next FUNCTION;
536 # A function name is the last word before an open parenthesis before the outer
537 # level open brace. A function starts at the first character after the last close
538 # brace or semicolon before the function name and ends at the close brace.
683 # Find function, interface and method names.
719 # Promote potential name to real function name at the
720 # start of the outer level set of braces (function body?).
747 # This could be a function body.
815 # or interface block, but not inside a function block
818 # brace or after the function name and ends at the close brace.
820 # A function name is the last word before an open parenthesis before
822 # inside a class or interface block, but not inside a function block.
824 # A function starts at the first character after the first close
825 # brace or after the function name and ends at the close brace.
893 # Find function names.
913 # Promote potential name to real function name at the
914 # start of the outer level set of braces (function/class/interface body?).
946 # This could be a function body.
1016 # A function name is the word that immediately follows `function' when
1020 # An anonymous function name is the identifier chain immediately before
1022 # value starting with `function' followed by an open curly brace.
1088 # Find function names.
1136 # Function.
1137 if ($1 eq 'function') {