search for: ctag

Displaying 20 results from an estimated 47 matches for "ctag".

Did you mean: ctags
2004 May 03
4
ctags(1) command execution vulnerability
Hello, ctags(1) uses external application sort(1) for sorting the tags file. It calls it via system(3) function. Look at the /usr/src/usr.bin/ctags/ctags.c file, there are such lines here: if (uflag) { (void)asprintf(&cmd, "sort -o %s %s", outfile, outfile); if (cmd == NULL) err(1, &...
2008 Feb 11
1
ctags support for puppet
This is a quick and dirty .ctags file that makes basic navigation possible with vim and ctags, great if you have multiple files: --langdef=puppet --langmap=puppet:.pp --regex-puppet=/^class[ \t]*([a-zA-Z0-9_\-]+)[ \t]*/\1/d,definition/ --regex-puppet=/^site[ \t]*([a-zA-Z0-9_\-]+)[ \t]*/\1/d,definition/ --regex-puppet=/^node[ \...
2008 Dec 04
3
rssync source code as a windows project
Hi Friends, I have started learning rsync source code but I am finding very difficult to go back and forth to find the execution flow. I could see that rsync code is written in UNIX and the compilation is difficult. Does anybody converted it into Windows Project so that we can open in using Visual Studio IDE and it will be very simple to search for some function and find the complete work flow.
2011 Jan 11
0
[LLVMdev] clang+LLVM fails to compile ctags
On 11.01.2011, at 12:02, Csaba Raduly wrote: > clang version 2.9 (trunk 123166) > Target: x86_64-unknown-linux-gnu > Thread model: posix > > Fails to compile ctags 5.8 (also 5.6), specifically eiffel.c: > > $ clang -v -c e.c -O2 -Wno-unused-value > clang version 2.9 (trunk 123166) […] > bool<unnamed>::LoopRotate::rotateLoop(llvm::Loop*): Assertion `DidIt > && "Block merge failed??"' failed. This looks very simila...
2011 Jan 11
2
[LLVMdev] clang+LLVM fails to compile ctags
clang version 2.9 (trunk 123166) Target: x86_64-unknown-linux-gnu Thread model: posix Fails to compile ctags 5.8 (also 5.6), specifically eiffel.c: $ clang -v -c e.c -O2 -Wno-unused-value clang version 2.9 (trunk 123166) Target: x86_64-unknown-linux-gnu Thread model: posix "/home/csaba/bin/clang" -cc1 -triple x86_64-unknown-linux-gnu -emit-obj -disable-free -main-file-name e.c -mrelocation-m...
2012 Feb 22
5
[PATCH] Add gtags target for xen/Makefile. Also update .hgignore.
...an - rm -f tags TAGS cscope.files cscope.in.out cscope.out cscope.po.out + rm -f tags TAGS cscope.files cscope.in.out cscope.out cscope.po.out gtags.files GTAGS GPATH GRTAGS GSYMS $(TARGET).gz: $(TARGET) gzip -f -9 < $< > $@.new @@ -159,6 +159,12 @@ _tags: $(call set_exuberant_flags,ctags); \ $(all_sources) | xargs ctags $$exuberant_flags -a +.PHONY: _gtags +_gtags: + set -e; rm -f GTAGS GSYMS GPATH GRTAGS + $(all_sources) > gtags.files + gtags -f gtags.files + .PHONY: _cscope _cscope: $(all_sources) > cscope.files
2006 Sep 21
0
[PATCH] Clean up and enhance "make tags"
...ffis@vino.americas.hpqcorp.net # Date 1158803249 14400 # Node ID 010ae57673c7103737b84044eaa57a43347a0f0e # Parent 596b0e4fbef4069bfb3ee9807f2ccfdd65052c46 Clean up and enhance "make tags" - delete correct file in _tags rule - don''t prune nonexistent files/dirs - call exuberant-ctags with additional flags from Linux: -I to ignore some misleading hits --extra=+f to include an entry for the basename of every file --c-kinds=+px to add prototypes and external variable declarations Signed-off-by: Aron Griffis <aron@hp.com> diff -r 596b0e4fbef4 -r 010ae57673c7 xe...
2009 Sep 29
1
Error (IMHO) with --with-doc option
...fixes this - hope it doesn't introduce any mess: diff -Nur 2/Makefile.in 1/Makefile.in --- 2/Makefile.in 2009-09-29 00:17:22.000000000 +0200 +++ 1/Makefile.in 2009-09-29 00:17:38.000000000 +0200 @@ -75,7 +75,7 @@ distclean-recursive maintainer-clean-recursive ETAGS = etags CTAGS = ctags -DIST_SUBDIRS = src doc +DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) Best regards, -- Jacek Osiecki joshua at ceti.pl GG:3828944 I don't want something I need. I want som...
2008 Mar 07
6
where is the location of definition of "do_xen_version"?
hi, my friends: Currently, i am studying the way of hypercall's implementation. i have already known the flow of hypercall's execuation, and i decided to add a new hypercall into the Xen. first, i want to know the detail of one hypercall function, for example, "do_xen_version", but i can not find the location of definition of "do_xen_version". who can help me? i have
2011 Jan 27
0
[LLVMdev] Newbie question on Clang
..., This is my first post here. I'd like to ask for directions in regards to Clang. This is what I'd like to do: I'd like to extract function prototypes from a large C++ code base. I dont need to generate code for any target platform; I just need function prototypes. I know I can use ctags, like this: find ~/sources/cpp-library -name '*.*pp' > files.lst ctags -x --c++-kinds=pf --language-force=c++ -h .hpp -L files.lst ... but the output is not very convenient, because ctags only does a textual extraction. Ideally, I'd like to extract information from the...
2005 Apr 15
0
[PATCH] add cscope support to xen Makefile
Add cscope support to xen Makefile. While at it, refactor a bit so etags, ctags, and cscope use same method to generate file list. Signed-off-by: Chris Wright <chrisw@osdl.org> --- xen/Makefile | 19 +++++++++++-------- 1 files changed, 11 insertions(+), 8 deletions(-) ===== xen/Makefile 1.78 vs edited ===== --- 1.78/xen/Makefile 2005-03-28 13:51:31 -08:00 +++ edi...
2003 Oct 25
3
[LLVMdev] version 1.0, compiling under cygwin
...:100: reloc refers to symbol `.text$_ZNSt22_Rb_tree_base_iteratorC2Ev' which is not being output ...skipped... ------------------------------------- and the last issue was "etags: Unknown option: -l" Remark: --------------------------------- bash-2.05b$ etags.exe --version Exuberant Ctags 5.5, Copyright (C) 1996-2003 Darren Hiebert Compiled: Jun 5 2003, 10:00:19 Addresses: <dhiebert at users.sourceforge.net>, http://ctags.sourceforge.net Optional compiled features: +wildcards, +regex, +internal-sort --------------------------------- That's it. -- Best regards, V...
2003 Nov 28
0
For those of you that uses syn Text Editor to edit .R files
...inside Wine, I didn't try it. Improved means: - More commands to send source in the Editor to a running Process (e.g. R), like: * Send Selection, * Send Word under Caret, * Send Line, * Send Line and jump to next line, * Send all to Cursor, * Send from Cursor to next Breakpoint - A Version of Ctags with R Parser and enhanced BibTeX Parser. Note: Ctags is released under the GPL. - Support for Sweave files, a combination of LaTeX and S code (BUT syn isn't a good editor for editing LaTeX file, due to the lack of automatic linebreak, and a very rudimentary LaTeX Highlighter) - Highlights abo...
2012 Mar 09
1
rtags for VI(M)
Hi, according to the help file rtags does not support VI(M) yet. Is there any known hack to ctags to get tags for R in VI(M)? BW F -- Federico C. F. Calboli Neuroepidemiology and Ageing Research Imperial College, St. Mary's Campus Norfolk Place, London W2 1PG Tel +44 (0)20 75941602 Fax +44 (0)20 75943193 f.calboli [.a.t] imperial.ac.uk f.calboli [.a.t] gmail.com
2003 Oct 25
0
[LLVMdev] version 1.0, compiling under cygwin
...read: http://sources.redhat.com/ml/binutils/2003-08/msg00218.html If you upgrade to the latest and greatest, this may be fixed. > and the last issue was "etags: Unknown option: -l" > Remark: > --------------------------------- > bash-2.05b$ etags.exe --version > Exuberant Ctags 5.5, Copyright (C) 1996-2003 Darren Hiebert > Compiled: Jun 5 2003, 10:00:19 > Addresses: <dhiebert at users.sourceforge.net>, http://ctags.sourceforge.net > Optional compiled features: +wildcards, +regex, +internal-sort > --------------------------------- Interesting. T...
2006 Jun 01
1
[LLVMdev] about the namespace
Hi,I apologize if it is a stupid question. It seems that the style of using namespace in LLVM confuses my "source insight" and my ctags for correctly finding the implementation of a class member. For example, the implementation of members of Instruction class is written like this. ---------------- ... ... using namespace llvm; Instruction::Instruction(...); ... ... ---------------- It seems that both sourceInsight and ctags tr...
2007 Jan 18
5
Docs moved to Trac
Hi all, Peter Abrahamsen has duplicated all of the documentation and cookbook pages in Puppet''s Trac page: https://reductivelabs.com/trac/puppet/wiki/DocumentationStart Please let me or Peter know if there are any problems. -- A motion to adjourn is always in order. --Robert Heinlein --------------------------------------------------------------------- Luke
2006 Mar 06
3
call manager integration
...from call manager... What might be the problem with my setup? THanks, JErry ---------------- <Date>03/06/2006 13:58:36.374</Date> <Cluster>CO-CCMPUB-01-Cluster</Cluster> <CMHost>10.101.66.10</CMHost> <TraceType>Trace</TraceType> <CTag>2,100,114,1.347</CTag> <SrcDev>10.66.101.10</SrcDev> <SrcIp>INVITE</SrcIp> <CTMapKey /> <CTMapVal /> <info>Cisco CallManagerDigit analysis: wait_DaReq - cepn=[] BlockFlag=[1]</info> </trace> - <trace> <Date&...
2017 Feb 09
3
samba-tool domain classicupgrade smb_krb5_context_init_basic failed (Invalid argument)
On Thu, 2017-02-09 at 10:53 +1100, Tom Robinson via samba wrote: > On 07/02/17 21:45, Tom Robinson via samba wrote: > > On 07/02/17 17:01, Andrew Bartlett via samba wrote: > > > On Tue, 2017-02-07 at 15:58 +1100, Tom Robinson via samba wrote: > > > > Hi, > > > > \ > > > > Next rid = 13001 > > > > krb5_init_context failed (Invalid
2020 Jun 16
2
RFC: Adding support for the z/OS platform to LLVM and clang
...opened files.. The auto-conversion service supports round-trip conversion > between EBCDIC and Enhanced ASCII. With it, boot strapping with EBCDIC > source files is possible. > Of course, more complete UTF-8 support is a valid implementation alternative. Other good references: - The 'ctag' utility https://www.ibm.com/support/knowledgecenter/SSLTBW_2.3.0/com.ibm.zos.v2r3.bpxa500/chtag.htm - File tagging overview https://www.ibm.com/support/knowledgecenter/en/SSLTBW_2.3.0/com.ibm.zos.v2r3.cbcpx01/cbc1p273.htm Kai, would use of auto conversion require that users set the _BPXK_...