HomeSort by relevance Sort by last modified time
    Searched refs:comments (Results 26 - 50 of 222) sorted by null

12 3 4 5 6 7 8 9

  /external/chromium_org/chrome/tools/convert_dict/
aff_reader.h 46 const std::string& comments() const { return intro_comment_; } function in class:convert_dict::AffReader
76 // Comments from the beginning of the file. This is everything before the
convert_dict.cc 120 writer.SetComment(aff_reader.comments());
  /external/chromium_org/ui/gfx/codec/
png_codec.h 72 // comments: comments to be written in the png's metadata.
78 const std::vector<Comment>& comments,
  /external/clang/include/clang/AST/
CommentCommandTraits.h 27 namespace comments { namespace in namespace:clang
123 /// in comments.
181 } // end namespace comments
CommentVisitor.h 17 namespace comments { namespace in namespace:clang
67 } // end namespace comments
CommentParser.h 26 namespace comments { namespace in namespace:clang
123 } // end namespace comments
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-netrexx.jar 
  /external/flac/libFLAC/
metadata_object.c 201 object->length += object->data.vorbis_comment.comments[i].length;
304 if(FLAC__metadata_object_vorbiscomment_entry_matches(object->data.vorbis_comment.comments[i], field_name, field_name_length))
572 FLAC__ASSERT(0 == object->data.vorbis_comment.comments);
573 to->data.vorbis_comment.comments = 0;
576 FLAC__ASSERT(0 != object->data.vorbis_comment.comments);
577 to->data.vorbis_comment.comments = vorbiscomment_entry_array_copy_(object->data.vorbis_comment.comments, object->data.vorbis_comment.num_comments);
578 if(0 == to->data.vorbis_comment.comments) {
656 if(0 != object->data.vorbis_comment.comments) {
658 vorbiscomment_entry_array_delete_(object->data.vorbis_comment.comments, object->data.vorbis_comment.num_comments)
    [all...]
  /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 75 * True to keep comments in the document; false to discard them.
77 PARAMETERS.put("comments", new BooleanParameter() {
79 return config.comments;
82 config.comments = (Boolean) value;
146 * comments = true
160 && config.comments
172 config.comments = true;
273 * comments, text, CDATA sections and processing instructions.
288 private boolean comments = true; field in class:DOMConfigurationImpl
411 if (!comments) {
    [all...]
  /external/chromium_org/ppapi/generators/
idl_lint.py 41 comments = node.GetListOf('Comment')
42 if not comments and not node.GetProperty('wcomment'):
idl_gen_wrapper.py 282 def GenerateWrapperForMethods(self, iface_releases, comments=True):
289 if comments:
293 if comments:
304 if comments:
  /external/proguard/src/proguard/
ConfigurationWriter.java 386 // Write out the comments for this option.
387 writeComments(classSpecification.comments);
465 private void writeComments(String comments)
467 if (comments != null)
470 while (index < comments.length())
472 int breakIndex = comments.indexOf('\n', index);
475 breakIndex = comments.length();
480 if (comments.charAt(index) != ' ')
485 writer.println(comments.substring(index, breakIndex));
WordReader.java 30 * Comments (everything starting with '#' on a single line) are ignored.
134 // Skip any whitespace and comments left on the current line.
144 // Skip any comments.
171 // Remember any leading comments.
175 // Remember the comments.
181 // Skip the comments.
275 * Returns the comments collected before returning the last word.
276 * Starts collecting new comments.
278 * @return the collected comments, or <code>null</code> if there weren't any.
284 String comments = currentComments local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3dcompiler.h 100 UINT flags, const char *comments, ID3DBlob **disassembly);
102 UINT flags, const char *comments, ID3DBlob **disassembly);
  /external/chromium_org/tools/gyp/tools/
pretty_gyp.py 13 # Regex to remove comments when we're counting braces.
63 """Masks out the quotes and comments, and then splits appropriate
  /external/llvm/test/MC/ARM/
comment.s 42 @ comments correctly by excluding the @ in normal symbols
  /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
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
inspect.py 586 """Get lines of comments immediately preceding an object's source code.
602 comments = []
605 comments.append(string.expandtabs(lines[end]))
607 return string.join(comments, '')
609 # Look for a preceding block of comments at the same indentation.
615 comments = [string.lstrip(string.expandtabs(lines[end]))]
620 comments[:0] = [comment]
624 while comments and string.strip(comments[0]) == '#':
625 comments[:1] = [
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
inspect.py 586 """Get lines of comments immediately preceding an object's source code.
602 comments = []
605 comments.append(string.expandtabs(lines[end]))
607 return string.join(comments, '')
609 # Look for a preceding block of comments at the same indentation.
615 comments = [string.lstrip(string.expandtabs(lines[end]))]
620 comments[:0] = [comment]
624 while comments and string.strip(comments[0]) == '#':
625 comments[:1] = [
    [all...]
  /external/proguard/src/proguard/gui/
ClassSpecificationDialog.java 156 // Create the comments panel.
159 msg("comments")));
383 String comments = classSpecification.comments; local
391 // Set the comments text area.
392 commentsTextArea.setText(comments == null ? "" : comments);
439 String comments = commentsTextArea.getText(); local
446 new ClassSpecification(comments.equals("") ? null : comments,
    [all...]
  /external/clang/test/CodeGen/
ms-inline-asm.c 53 int 0x2c ; } asm comments are fun! }{
57 int 0x2c ; } asm comments are fun! }{
67 __asm int 4 ; } comments for single-line asm
  /external/chromium_org/chrome/common/extensions/docs/server2/
PRESUBMIT.py 62 Q: Is this a spelling correction? New test? Better comments?

Completed in 1170 milliseconds

12 3 4 5 6 7 8 9