Home | History | Annotate | Download | only in abi-compliance-checker

Lines Matching refs:ctags

23 #    - Ctags
28 # - Ctags
36 # - Ctags (Exuberant or Universal)
8164 my $CTags = undef;
8168 $CTags = get_CmdPath("ectags");
8169 if(not $CTags) {
8173 if(not $CTags) {
8174 $CTags = get_CmdPath("ctags");
8176 if(not $CTags)
8178 printMsg("WARNING", "can't find \'ctags\' program");
8184 my $Info = `$CTags --version 2>\"$TMP_DIR/null\"`;
8187 printMsg("WARNING", "incompatible version of \'ctags\' program");
8192 my $Out = $TMP_DIR."/ctags.txt";
8193 system("$CTags --c-kinds=pxn -f \"$Out\" \"$Path\" 2>\"$TMP_DIR/null\"");
8195 copy($Out, $DEBUG_PATH{$Version}."/ctags.txt");
8197 open(CTAGS, "<", $Out);
8198 while(my $Line = <CTAGS>)
8235 close(CTAGS);