Home | History | Annotate | Download | only in Scripts

Lines Matching full:word

497         $_ = (join ':', map {s/.*[^[:word:]]//; scalar $_;} @components) . ':';
500 s/.*[^[:word:]]//;
509 # A function name is the last word before an open parenthesis before the outer
531 my $word = "";
657 while (m&((?:[[:word:]]+::)*operator(?:[ \t]*\(\)|[^()]*)|[[:word:]:~]+|[(){}:;])|\@(?:implementation|interface|protocol)\s+(\w+)[^{]*&g) {
666 $potential_name = $word unless $in_parentheses || $skip_til_brace_or_semicolon;
750 # Word.
751 $word = $1;
754 $potential_namespace = $word;
785 # A class or interface name is the word that immediately follows
793 # A function name is the last word before an open parenthesis before
819 my $word = "";
871 $potential_name = $word;
959 # Word.
960 $word = $1;
963 $potential_name = $word;
989 # A function name is the word that immediately follows `function' when
997 # A getter or setter name is the word that immediately follows `get' or
1026 my $word = "";
1145 # Word.
1146 $word = $1;
1147 $word = "get $word" if $getterJustSeen;
1148 $word = "set $word" if $setterJustSeen;
1151 push(@currentIdentifiers, $word);
1159 } elsif ($word ne 'if' and $word ne 'for' and $word ne 'do' and $word ne 'while' and $word ne 'which' and $word ne 'var') {
1160 push(@currentIdentifiers, $word);
1536 my $word = $operations{$operation};
1538 $description .= " $word $list.";