HomeSort by relevance Sort by last modified time
    Searched refs:comments (Results 1 - 25 of 66) sorted by null

1 2 3

  /external/webkit/WebKitTools/Scripts/webkitpy/steps/
closepatch.py 29 from webkitpy.comments import bug_comment_from_commit_text
closebugforlanddiff.py 29 from webkitpy.comments import bug_comment_from_commit_text
completerollout.py 29 from webkitpy.comments import bug_comment_from_commit_text
  /frameworks/base/media/libstagefright/codecs/aacdec/
s_progconfig.h 89 Char comments[(1<<LEN_PC_COMM)+1]; /* TO BE DELETED */ member in struct:__anon9259
  /external/proguard/src/proguard/
ClassSpecification.java 35 public final String comments; field in class:ClassSpecification
49 * comments or class members.
68 this(classSpecification.comments,
84 * @param comments provides optional comments on this
107 public ClassSpecification(String comments,
115 this(comments,
131 * @param comments provides optional comments on this
156 public ClassSpecification(String comments,
    [all...]
WordReader.java 30 * Comments (everything starting with '#' on a single line) are ignored.
149 // Trim off any comments.
155 // Remember the comments.
236 * Returns the comments collected before returning the last word.
237 * Starts collecting new comments.
239 * @return the collected comments, or <code>null</code> if there weren't any.
245 String comments = currentComments; local
247 return comments;
ConfigurationWriter.java 395 // Write out the comments for this option.
396 writeComments(classSpecification.comments);
474 private void writeComments(String comments)
476 if (comments != null)
479 while (index < comments.length())
481 int breakIndex = comments.indexOf('\n', index);
484 breakIndex = comments.length();
489 if (comments.charAt(index) != ' ')
494 writer.println(comments.substring(index, breakIndex));
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-31255.js 68 --> HTML comment end is JS comments until end-of-line
70 --> so in the following --> should not be treated as comments
  /external/proguard/src/proguard/gui/
ClassSpecificationsPanel.java 208 String comments = classSpecification.comments; local
210 label.setText(comments != null ? comments.trim() :
ClassSpecificationDialog.java 155 // Create the comments panel.
158 msg("comments")));
381 String comments = classSpecification.comments; local
389 // Set the comments text area.
390 commentsTextArea.setText(comments == null ? "" : comments);
436 String comments = commentsTextArea.getText(); local
443 new ClassSpecification(comments.equals("") ? null : comments,
    [all...]
  /external/tremolo/Tremolo/
ivorbiscodec.h 82 int comments; member in struct:vorbis_comment
treminfo.c 83 for(i=0;i<vc->comments;i++){
102 for(i=0;i<vc->comments;i++){
113 for(i=0;i<vc->comments;i++)
222 vc->comments=oggpack_read(opb,32);
223 if(vc->comments<0)goto err_out;
224 vc->user_comments=(char **)_ogg_calloc(vc->comments+1,sizeof(*vc->user_comments));
225 vc->comment_lengths=(int *)_ogg_calloc(vc->comments+1, sizeof(*vc->comment_lengths));
227 for(i=0;i<vc->comments;i++){
310 with bitstream comments and a third packet that holds the
353 /* um... we didn;t get the initial header or comments yet *
    [all...]
  /external/chromium/base/
file_version_info.h 56 std::wstring comments();
file_version_info_linux.cc 56 std::wstring FileVersionInfo::comments() { function in class:FileVersionInfo
57 return COMMENTS;
  /external/jdiff/src/jdiff/
Comments.java 15 * Creates a Comments from an XML file. The Comments object is the internal
16 * representation of the comments for the changes.
17 * All methods in this class for populating a Comments object are static.
22 public class Comments {
25 * All the possible comments known about, accessible by the commentID.
29 /** The old Comments object which is populated from the file read in. */
30 private static Comments oldComments_ = null;
33 public Comments() {
37 // The list of comments elements associated with this object
    [all...]
CommentsHandler.java 14 * Handle the parsing of an XML file and the generation of a Comments object.
16 * All HTML written for the comments sections in the report must
28 /** The Comments object which is populated from the XML file. */
29 public Comments comments_ = null;
44 public CommentsHandler(Comments comments) {
45 comments_ = comments;
62 if (localName.compareTo("comments") == 0) {
66 System.out.println("Error: no identifier found in the comments XML file.");
75 System.out.println("Warning: API identifier in the comments XML file (" + filename2 + ") differs from the name of the file.")
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DOMConfigurationImpl.java 76 * True to keep comments in the document; false to discard them.
78 PARAMETERS.put("comments", new BooleanParameter() {
80 return config.comments;
83 config.comments = (Boolean) value;
147 * comments = true
161 && config.comments
173 config.comments = true;
274 * comments, text, CDATA sections and processing instructions.
289 private boolean comments = true; field in class:DOMConfigurationImpl
412 if (!comments) {
    [all...]
  /external/v8/src/
disassembler.cc 160 List<const char*> comments(4);
167 // For comments just collect the text.
168 comments.Add(reinterpret_cast<const char*>(it->rinfo()->data()));
181 // Comments.
182 for (int i = 0; i < comments.length(); i++) {
183 out.AddFormatted(" %s\n", comments[i]);
186 // Write out comments, resets outp so that we can format the next line.
196 // Print all the reloc info for this instruction which are not comments.
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
picoloaddbg.lua 14 -- - initial '!' and trailing '!.*' are treated as comments, no '[]'
73 -- check if remaining part are comments only
85 -- cleanup if only comments remaining
picoloadphones.lua 13 -- - initial '!' and trailing '!.*' are treated as comments, no '[]'
71 -- check if remaining part are comments only
83 -- cleanup if only comments remaining
  /build/tools/droiddoc/src/
MethodInfo.java 437 String[] comments = new String[N]; local
444 comments[i] = "";
448 // gather our comments, and complain about misnamed @param tags
452 comments[index] = tag.parameterComment();
466 if (comments[i].equals("")) {
467 comments[i] = maternal[i].parameterComment();
476 mParamTags[i] = new ParamTagInfo("@param", "@param", names[i] + " " + comments[i],
482 if (comments[i].equals("")) {
  /cts/tools/spec-progress/src/
SpecProgressDoclet.java 207 * Holds the total number of "@cts" comments.
224 public void add(int type, int status, int comments) {
227 numberOfComments += comments;
275 * Returns the number of comments.
583 Tag[] comments = doc.tags("cts"); local
585 int status = getStatus(documented, reviewed || inherited, comments);
610 if (comments.length != 0 || errors.size() != 0) {
613 for (int i = 0; i < comments.length; i++) {
615 printer.print(comments[i].text());
633 derived.add(type, status, comments.length)
    [all...]
  /build/core/
prebuilt.mk 38 $(transform-prebuilt-to-target-strip-comments)
  /external/libpcap/packaging/
pcap.spec 18 Please send inquiries/comments/reports to tcpdump-workers@tcpdump.org
  /external/libvpx/examples/includes/geshi/contrib/
cssgen.php 313 <tr><th>Comments (//, <!-- --> etc)</th><td><input type="text" name="comments" value="color: #808080;" /></td></tr>
409 $comments = get_var('comments'); variable
411 if ( $comments != '' )
413 $stylesheet .= "\n$comment_selector {{$comments}}";

Completed in 443 milliseconds

1 2 3