Searched refs:comment (Results 51 - 75 of 690) sorted by relevance

1234567891011>>

/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/doctools/
H A Dcvs.tcl58 # read the comment lines following date
59 set comment ""
64 append comment $line "\n"
69 # Store this date/author/comment
71 lappend comments($date,$author) $comment
72 lappend files($date,$author,$comment) $filename
117 # Print all files for a given comment
122 # Format and print the comment
H A Dchangelog.tcl46 set comment ""
76 # Next comment section
81 # Line is not empty. Split into file and comment parts,
111 append comment $line\n
120 upvar 1 clist clist comment comment files files
123 ([string length $comment] > 0) ||
126 lappend clist [list $files [string trim $comment]]
128 set comment ""
134 upvar 1 clist clist comment commen
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/xotcl/xotcl/win/
H A DdllEntryPoint.c19 # pragma comment(linker, "-nodefaultlib:msvcrt.lib")
/macosx-10.10.1/OpenSSL098-52/src/crypto/perlasm/
H A Dx86asm.pl58 &comment("Don't even think of reading this code");
59 &comment("It was automatically generated by $filename");
60 &comment("Which is a perl program used to generate the x86 assember for");
61 &comment("any of ELF, a.out, COFF, Win32, ...");
62 &comment("eric <eay\@cryptsoft.com>");
63 &comment("");
122 SOL - solaris systems, which are elf with strange comment lines
/macosx-10.10.1/ruby-106/ruby/lib/rdoc/
H A Dtom_doc.rb30 # This parser allows a space between the comment and the method body.
48 # comment's status.
53 RDoc::Markup::PreProcess.post_process do |comment, code_object|
55 RDoc::Comment === comment and comment.format == 'tomdoc'
57 comment.text.gsub!(/(\A\s*# )(Public|Internal|Deprecated):\s+/) do
94 # comment - An RDoc::Comment that will be parsed and have the signature
99 def self.signature comment
100 return unless comment.tomdoc?
102 document = comment
[all...]
H A Dclass_module.rb52 mod.comment_location.each do |comment, location|
53 klass.add_comment comment, location
116 @comment_location = [] # [[comment, location]]
122 # Adds +comment+ to this ClassModule's list of comments at +location+. This
123 # method is preferred over #comment= since it allows ri data to be updated
126 def add_comment comment, location
129 original = comment
131 comment = case comment
133 comment
[all...]
H A Dconstant.rb29 # Creates a new constant with +name+, +value+ and +comment+
31 def initialize(name, value, comment)
40 self.comment = comment
62 # A constant is documented if it has a comment, or is an alias
111 parse(@comment),
150 unless comment.empty? then
152 q.text "comment:"
154 q.pp @comment
/macosx-10.10.1/ruby-106/ruby/test/rdoc/
H A Dtest_rdoc_context_section.rb13 @s = @S.new @klass, 'section', comment('# comment', @top_level)
58 assert_equal '', @s.extract_comment(comment('')).text
59 assert_equal '', @s.extract_comment(comment("# :section: b\n")).text
60 assert_equal '# c', @s.extract_comment(comment("# :section: b\n# c")).text
62 @s.extract_comment(comment("# a\n# :section: b\n# c")).text
68 expected = RDoc::Comment.new('comment', @top_level).parse
77 s = @S.new @klass, 'section', comment('')
95 expected = doc RDoc::Comment.new('comment', @top_level).parse
105 other_comment = comment('bogu
[all...]
H A Dtest_rdoc_parser_simple.rb46 assert_equal expected, @top_level.comment.text
49 # RDoc stops processing comments if it finds a comment line CONTAINING
51 # comments, or to stop a comment being associated with a method,
55 # I've seen guys that comment their code like this:
67 # # this is a comment
81 assert_equal expected, @top_level.comment.text
91 assert_equal expected, @top_level.comment.text
99 assert_equal "* foo\n* bar", @top_level.comment.text
107 assert_equal 'it *really* works', @top_level.comment.text
H A Dtest_rdoc_constant.rb18 c = RDoc::Constant.new 'CONST', nil, 'comment'
35 c = RDoc::Constant.new 'CONST', nil, 'this is a comment'
49 comment = doc(para('this is a comment'))
54 assert_equal comment, loaded.comment
66 c = RDoc::Constant.new 'CONST', nil, 'this is a comment'
77 comment = doc(para('this is a comment'))
82 assert_equal comment, loade
[all...]
H A Dtest_rdoc_attr.rb48 @a.comment = 'this is a comment'
61 comment = RDoc::Markup::Document.new(
62 RDoc::Markup::Paragraph.new('this is a comment'))
64 assert_equal comment, loaded.comment
79 @a.comment = 'this is a comment'
96 comment = RDoc::Markup::Document.new(
97 RDoc::Markup::Paragraph.new('this is a comment'))
[all...]
/macosx-10.10.1/OpenSSH-189/openssh/
H A Dssh-add.c117 char *certpath = NULL, *comment = NULL; local
122 public = key_load_public(filename, &comment);
128 fprintf(stderr, "Identity removed: %s (%s)\n", filename, comment);
137 free(comment);
138 comment = NULL;
140 if ((cert = key_load_public(certpath, &comment)) == NULL)
148 comment);
159 free(comment);
187 char *comment = NULL; local
220 private = key_parse_private(&keyblob, filename, "", &comment);
344 char *comment, *fp; local
[all...]
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Doc/sphinx_build/html/_static/
H A Dwebsupport.js53 $('a.comment-close').live("click", function(event) {
89 $('a.accept-comment').live("click", function(event) {
93 $('a.delete-comment').live("click", function(event) {
97 $('a.comment-markup').live("click", function(event) {
145 * Show a comment div.
166 * Hide a comment div.
214 * Add a comment via ajax and insert the comment into the comment tree.
219 var text = form.find('textarea[name="comment"]')
[all...]
/macosx-10.10.1/ruby-106/ruby/tool/
H A Denc-emoji4unicode.rb40 comment = "[%s] U+%X -> %s" % [name, from.hex, tos.map{|c| "U+%X"%c.hex}.join(' ')]
43 :comment => comment,
48 comment = "[%s] U+%X -> U+3013 (GETA)" % [name, from.hex]
51 :comment => comment, # geta
56 comment = %([%s] U+%X -> "%s") % [name, from.hex, text_fallback]
59 :comment => comment,
78 io.puts %{ ["#{from}", #{to}], # #{params[:comment]}}
[all...]
/macosx-10.10.1/vim-55/runtime/ftplugin/
H A Dmrxvtrc.vim13 " Really any line that does not match an option is a comment. But use '!' for
19 " comment leaders makes Vim think that every comment line is a new sentence.
/macosx-10.10.1/JavaScriptCore-7600.1.17/offlineasm/
H A Dasm.rb42 @comment = nil
71 # Concatenates all the various components of the comment to dump.
75 result = "#{@comment}" if @comment
94 @comment = nil
107 def formatDump(dumpStr, comment, commentColumns=$preferredCommentStartColumn)
108 if comment.length > 0
109 "%-#{commentColumns}s %s" % [dumpStr, comment]
134 comment = lastComment
135 unless comment
271 def comment(text) method in class:Assembler
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/tools/genrb/
H A Dreslist.h66 struct SRBRoot *bundle_open(const struct UString* comment, UBool isPoolBundle, UErrorCode *status);
111 struct SResource* table_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status);
120 struct SResource* array_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status);
131 struct SResource *string_open(struct SRBRoot *bundle, const char *tag, const UChar *value, int32_t len, const struct UString* comment, UErrorCode *status);
133 struct SResource *alias_open(struct SRBRoot *bundle, const char *tag, UChar *value, int32_t len, const struct UString* comment, UErrorCode *status);
140 struct SResource* intvector_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status);
147 struct SResource *int_open(struct SRBRoot *bundle, const char *tag, int32_t value, const struct UString* comment, UErrorCode *status);
155 struct SResource *bin_open(struct SRBRoot *bundle, const char *tag, uint32_t length, uint8_t *data, const char* fileName, const struct UString* comment, UErrorCode *status);
/macosx-10.10.1/OpenSSL098-52/src/crypto/bn/asm/
H A Dbn-586.pl29 &comment("");
133 &comment("Round $i");
146 &comment("");
162 &comment("Tail Round $i");
189 &comment("");
210 &comment("Round $i");
223 &comment("");
239 &comment("Tail Round $i");
262 &comment("");
277 &comment("Roun
[all...]
/macosx-10.10.1/Security-57031.1.35/SecurityTool/
H A Dkeychain_find.h42 const char *comment,
52 const char *comment,
/macosx-10.10.1/emacs-93/emacs/lisp/progmodes/
H A Dasm-mode.el38 ;; comment char place or move comment
39 ;; asm-comment-char specifies which character this is;
47 ;; 1) An asm-mode-set-comment-hook before the part of the initialization
48 ;; depending on asm-comment-char, and
58 (defcustom asm-comment-char ?\;
59 "*The comment-start character assumed by Asm mode."
77 ;; Note that the comment character isn't set up until asm-mode is called.
79 (define-key map "\C-c;" 'comment-region)
110 \\[asm-comment]\tsmar
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/url/
H A Dvc-dav.el73 (defun vc-dav-register (url &optional rev comment)
78 (defun vc-dav-checkin (url rev comment)
81 COMMENT is used as a check-in comment."
/macosx-10.10.1/ruby-106/ruby/lib/rexml/
H A Dsax2listener.rb21 # comment
90 # Called when a comment is encountered.
91 # @p comment The content of the comment
92 def comment comment method in class:REXML.SAX2Listener
/macosx-10.10.1/ruby-106/ruby/test/rexml/
H A Dlistener.rb22 def comment comment method in class:Listener
23 #puts "comment #{comment[0..10]}..."
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dart.vim30 syn match comment ";.*$"
32 syn match comment "#+:\=ignore" nextgroup=artignore skipwhite skipnl
34 syn region artignore start="(" end=")" contained contains=artignore,comment
40 hi def link artignore comment
/macosx-10.10.1/zlib-55/zlib/contrib/minizip/
H A Dzip.h154 const char* comment,
165 const char* comment,
178 if comment != NULL, comment contain the comment string
194 const char* comment,
207 const char* comment,
223 const char* comment,
240 const char* comment,
266 const char* comment,
[all...]

Completed in 515 milliseconds

1234567891011>>