Searched defs:comment (Results 101 - 125 of 195) sorted by relevance

12345678

/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DToUnknownStream.java525 * @see ExtendedLexicalHandler#comment(String)
527 public void comment(String comment) throws SAXException argument
539 m_handler.comment(comment);
886 * @see org.xml.sax.ext.LexicalHandler#comment(char[], int, int)
888 public void comment(char[] ch, int start, int length) throws SAXException method in class:ToUnknownStream
895 m_handler.comment(ch, start, length);
H A DToStream.java2383 * Receive notification of an XML comment anywhere in the document. This
2386 * @param ch An array holding the characters in the comment.
2391 public void comment(char ch[], int start, int length) method in class:ToStream
2433 // if we have some chars in the comment
2440 // Protect comment end from a single trailing dash
2461 // time to generate comment event
/external/chromium_org/third_party/icu/source/tools/genrb/
H A Dparse.cpp58 struct UString comment; member in struct:Lookahead
93 ParseResourceFunction(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status);
95 static struct SResource *parseResource(ParseState* state, char *tag, const struct UString *comment, UErrorCode *status);
128 state->lookahead[i].type = getNextToken(state->buffer, &state->lookahead[i].value, &state->lookahead[i].line, &state->lookahead[i].comment, status);
145 ustr_deinit(&state->lookahead[i].comment);
151 getToken(ParseState* state, struct UString **tokenValue, struct UString* comment, uint32_t *linenumber, UErrorCode *status) argument
168 if (comment != NULL)
170 ustr_cpy(comment, &(state->lookahead[state->lookaheadPosition].comment), status);
175 ustr_setlen(&state->lookahead[i].comment,
185 peekToken(ParseState* state, uint32_t lookaheadCount, struct UString **tokenValue, uint32_t *linenumber, struct UString *comment, UErrorCode *status) argument
218 expect(ParseState* state, enum ETokenType expectedToken, struct UString **tokenValue, struct UString *comment, uint32_t *linenumber, UErrorCode *status) argument
245 getInvariantString(ParseState* state, uint32_t *line, struct UString *comment, UErrorCode *status) argument
500 parseDependency(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status) argument
562 parseString(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status) argument
597 parseAlias(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status) argument
832 struct UString comment; local
1035 struct UString comment; local
1157 struct UString comment; local
1237 parseTable(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status) argument
1263 parseArray(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status) argument
1357 parseIntVector(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status) argument
1445 parseBinary(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status) argument
1527 parseInteger(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status) argument
1577 parseImport(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status) argument
1693 parseInclude(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status) argument
1873 struct UString comment; local
1913 parseResource(ParseState* state, char *tag, const struct UString *comment, UErrorCode *status) argument
2046 struct UString comment; local
[all...]
H A Dreslist.c835 const struct UString* comment, UErrorCode* status);
838 const struct UString* comment, UErrorCode* status){
855 if(comment != NULL){
856 ustr_cpy(&res->fComment, comment, status);
869 struct SResource* table_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status) { argument
870 struct SResource *res = res_open(bundle, tag, comment, status);
879 struct SResource* array_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status) { argument
880 struct SResource *res = res_open(bundle, tag, comment, status);
903 struct SResource *string_open(struct SRBRoot *bundle, const char *tag, const UChar *value, int32_t len, const struct UString* comment, UErrorCode *status) { argument
904 struct SResource *res = res_open(bundle, tag, comment, statu
837 res_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode* status) argument
971 alias_open(struct SRBRoot *bundle, const char *tag, UChar *value, int32_t len, const struct UString* comment, UErrorCode *status) argument
996 intvector_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status) argument
1013 int_open(struct SRBRoot *bundle, const char *tag, int32_t value, const struct UString* comment, UErrorCode *status) argument
1025 bin_open(struct SRBRoot *bundle, const char *tag, uint32_t length, uint8_t *data, const char* fileName, const struct UString* comment, UErrorCode *status) argument
1060 bundle_open(const struct UString* comment, UBool isPoolBundle, UErrorCode *status) argument
[all...]
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dpackage.cpp688 Package::writePackage(const char *filename, char outType, const char *comment) { argument
702 // if there is an explicit comment, then use it, else use what's in the current header
703 if(comment!=NULL) {
704 /* get the header size minus the current comment */
710 length=(int32_t)strlen(comment);
712 fprintf(stderr, "icupkg: comment too long\n");
715 memcpy(header+headerLength, comment, length+1);
/external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
H A Djson_value.cpp504 for ( int comment =0; comment < numberOfCommentPlacement; ++comment )
506 const CommentInfo &otherComment = other.comments_[comment];
508 comments_[comment].setComment( otherComment.comment_ );
1534 Value::setComment( const char *comment, argument
1539 comments_[placement].setComment( comment );
1544 Value::setComment( const std::string &comment, argument
1547 setComment( comment.c_str(), placement );
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/
H A Delf-objfmt.c1067 } else if (strcmp(sectname, ".comment") == 0) {
1224 yasm_section *comment; local
1235 /* Put ident data into .comment section */
1237 vp2 = yasm_vp_create_string(NULL, yasm__xstrdup(".comment"));
1239 comment = elf_objfmt_section_switch(object, &sect_vps, NULL, line);
1242 /* To match GAS output, if the comment section is empty, put an
1245 if (yasm_section_bcs_first(comment) == yasm_section_bcs_last(comment)) {
1250 yasm_section_bcs_append(comment,
1259 N_(".comment require
[all...]
/external/chromium_org/ui/gfx/codec/
H A Dpng_codec.cc538 void AddComment(size_t pos, const PNGCodec::Comment& comment) { argument
540 // A PNG comment's key can only be 79 characters long.
541 DCHECK(comment.key.length() < 79);
542 png_text_[pos].key = base::strdup(comment.key.substr(0, 78).c_str());
543 png_text_[pos].text = base::strdup(comment.text.c_str());
544 png_text_[pos].text_length = comment.text.length();
/external/chromium_org/v8/src/ia32/
H A Ddisasm-ia32.cc336 int JumpConditional(byte* data, const char* comment);
337 int JumpConditionalShort(byte* data, const char* comment);
634 int DisassemblerIA32::JumpConditional(byte* data, const char* comment) { argument
640 if (comment != NULL) {
641 AppendToBuffer(", %s", comment);
648 int DisassemblerIA32::JumpConditionalShort(byte* data, const char* comment) { argument
654 if (comment != NULL) {
655 AppendToBuffer(", %s", comment);
/external/chromium_org/v8/src/x87/
H A Ddisasm-x87.cc336 int JumpConditional(byte* data, const char* comment);
337 int JumpConditionalShort(byte* data, const char* comment);
634 int DisassemblerX87::JumpConditional(byte* data, const char* comment) { argument
640 if (comment != NULL) {
641 AppendToBuffer(", %s", comment);
648 int DisassemblerX87::JumpConditionalShort(byte* data, const char* comment) { argument
654 if (comment != NULL) {
655 AppendToBuffer(", %s", comment);
/external/chromium_org/v8/test/cctest/
H A Dtest-cpu-profiler.cc153 profiler.CodeCreateEvent(i::Logger::BUILTIN_TAG, comment_code, "comment");
170 CodeEntry* comment = generator.code_map()->FindEntry(comment_code->address()); local
171 CHECK_NE(NULL, comment);
172 CHECK_EQ("comment", comment->name());
/external/icu/icu4c/source/tools/toolutil/
H A Dpackage.cpp689 Package::writePackage(const char *filename, char outType, const char *comment) { argument
703 // if there is an explicit comment, then use it, else use what's in the current header
704 if(comment!=NULL) {
705 /* get the header size minus the current comment */
711 length=(int32_t)strlen(comment);
713 fprintf(stderr, "icupkg: comment too long\n");
716 memcpy(header+headerLength, comment, length+1);
/external/jsoncpp/chromium-overrides/src/lib_json/
H A Djson_value.cpp498 for ( int comment =0; comment < numberOfCommentPlacement; ++comment )
500 const CommentInfo &otherComment = other.comments_[comment];
502 comments_[comment].setComment( otherComment.comment_ );
1528 Value::setComment( const char *comment, argument
1533 comments_[placement].setComment( comment );
1538 Value::setComment( const std::string &comment, argument
1541 setComment( comment.c_str(), placement );
/external/jsoncpp/src/lib_json/
H A Djson_value.cpp494 for ( int comment =0; comment < numberOfCommentPlacement; ++comment )
496 const CommentInfo &otherComment = other.comments_[comment];
498 comments_[comment].setComment( otherComment.comment_ );
1524 Value::setComment( const char *comment, argument
1529 comments_[placement].setComment( comment );
1534 Value::setComment( const std::string &comment, argument
1537 setComment( comment.c_str(), placement );
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dannotate.c139 static int comment__symbol(char *raw, char *comment, u64 *addrp, char **namep) argument
146 *addrp = strtoull(comment, &endptr, 16);
221 char *s = strchr(ops->raw, ','), *target, *comment, prev; local
246 comment = strchr(s, '#');
247 if (comment == NULL)
250 while (comment[0] != '\0' && isspace(comment[0]))
251 ++comment;
253 comment__symbol(ops->source.raw, comment, &ops->source.addr, &ops->source.name);
254 comment__symbol(ops->target.raw, comment,
279 char *target, *comment, *s, prev; local
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DHeaderFactoryImpl.java1122 * agent, code and comment values.
1126 * @param comment - the new string value of the comment.
1128 * unexpectedly while parsing the agent or comment values.
1136 String comment)
1143 warning.setText(comment);
1133 createWarningHeader( String agent, int code, String comment) argument
/external/pdfium/core/include/thirdparties/zlib/
H A Dzlib.h182 Bytef *comment; /* pointer to zero-terminated comment or Z_NULL */ member in struct:gz_header_s
183 uInt comm_max; /* space at comment (only when reading header) */
614 file name, no extra data, no comment, no modification time (set to zero), no
811 deflate(). The text, time, os, extra field, name, and comment information
814 caller must assure that, if not Z_NULL, name and comment are terminated with
822 the time set to zero, and os set to 255, with no extra, name, or comment
1044 comment is not Z_NULL, then up to comm_max characters are written there,
1046 of extra, name, or comment are not Z_NULL and the respective field is not
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dzlib.h186 Bytef *comment; /* pointer to zero-terminated comment or Z_NULL */ member in struct:gz_header_s
187 uInt comm_max; /* space at comment (only when reading header) */
618 file name, no extra data, no comment, no modification time (set to zero), no
815 deflate(). The text, time, os, extra field, name, and comment information
818 caller must assure that, if not Z_NULL, name and comment are terminated with
826 the time set to zero, and os set to 255, with no extra, name, or comment
1048 comment is not Z_NULL, then up to comm_max characters are written there,
1050 of extra, name, or comment are not Z_NULL and the respective field is not
/external/ppp/pppd/
H A Doptions.c1117 int quoted, comment; local
1125 comment = 0;
1136 * A newline means the end of a comment; backslash-newline
1137 * is ignored. Note that we cannot have escape && comment.
1142 comment = 0;
1149 * Ignore characters other than newline in a comment.
1151 if (comment)
1169 * If this is the start of a comment, ignore the rest of the line.
1172 comment = 1;
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DParser.java1034 theLexicalHandler.comment(buff, offset, length);
1106 public void comment(char[] ch, int start, int length) throws SAXException { } method in class:Parser
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDocumentImpl.java50 * <li>createnodes (element, comment, text, attribute, ....)</li>
123 // text/comment table: string buffer to hold the text string values of the document,
567 public void comment(char[] ch, int start, int length) method in class:DTMDocumentImpl
910 // m_char.append(ch, start, length); // store the chunk to the text/comment string table
951 // * @param ch An array holding the characters in the comment.
959 // m_char.append(ch, start, length); // store the comment string to the text/comment string table
979 // // to the text/comment string table: charStringStart should point to the starting
1592 "#comment","#document", // Comment, Document
2107 /** Append a comment chil
[all...]
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_media_task.c371 static void log_tstamps_us(char *comment) argument
375 APPL_TRACE_DEBUG("[%s] ts %08llu, diff : %08llu, queue sz %d", comment, now_us, now_us - prev_us,
/external/chromium_org/third_party/WebKit/Source/core/xml/parser/
H A DXMLDocumentParser.cpp243 parser->comment(m_text);
1194 void XMLDocumentParser::comment(const String& text) function in class:blink::XMLDocumentParser
1285 getParser(closure)->comment(toString(text));
1440 sax.comment = commentHandler;
/external/chromium_org/third_party/zlib/contrib/minizip/
H A Dzip.c476 the global comment)
485 ZPOS64_T uMaxBack=0xffff; /* maximum size of global comment */
538 the global comment)
547 ZPOS64_T uMaxBack=0xffff; /* maximum size of global comment */
731 // read the comment from the standard central header.
784 /* zipfile global comment length */
1058 const char* comment, int method, int level, int raw,
1097 if (comment==NULL)
1100 size_comment = (uInt)strlen(comment);
1177 size_extrafield_global+i) = *(comment
1055 zipOpenNewFileInZip4_64(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw, int windowBits,int memLevel, int strategy, const char* password, uLong crcForCrypting, uLong versionMadeBy, uLong flagBase, int zip64) argument
1264 zipOpenNewFileInZip4(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw, int windowBits,int memLevel, int strategy, const char* password, uLong crcForCrypting, uLong versionMadeBy, uLong flagBase) argument
1280 zipOpenNewFileInZip3(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw, int windowBits,int memLevel, int strategy, const char* password, uLong crcForCrypting) argument
1295 zipOpenNewFileInZip3_64(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw, int windowBits,int memLevel, int strategy, const char* password, uLong crcForCrypting, int zip64) argument
1310 zipOpenNewFileInZip2(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw) argument
1323 zipOpenNewFileInZip2_64(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw, int zip64) argument
1336 zipOpenNewFileInZip64(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void*extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int zip64) argument
1349 zipOpenNewFileInZip(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void*extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level) argument
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dcollationtest.cpp953 const UChar *comment = u_memchr(line, 0x23, lineLength); // '#' local
954 if(comment != NULL) {
955 lineLength = (int32_t)(comment - line);

Completed in 4539 milliseconds

12345678