HomeSort by relevance Sort by last modified time
    Searched defs:comment (Results 226 - 250 of 383) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractStyleRefactoring.java 189 String comment = getName(); local
192 comment, //description
193 comment, //comment
514 public Descriptor(String project, String description, String comment,
517 project, description, comment, arguments);
ChangeLayoutRefactoring.java 149 String comment = getName(); local
152 comment, //description
153 comment, //comment
620 public Descriptor(String project, String description, String comment,
623 project, description, comment, arguments);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToUnknownStream.java 525 * @see ExtendedLexicalHandler#comment(String)
527 public void comment(String comment) throws SAXException method in class:ToUnknownStream
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);
    [all...]
SerializerBase.java 250 * Receive notification of a comment.
252 * @see ExtendedLexicalHandler#comment(String)
254 public void comment(String data) throws SAXException method in class:SerializerBase
264 comment(m_charsBuff, 0, length); method
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Parser.java 828 * markupdecl ::= elementdecl | AttlistDecl | EntityDecl | NotationDecl | PI | Comment
1106 public void comment(char[] ch, int start, int length) throws SAXException { } method in class:Parser
    [all...]
XMLWriter.java 1309 public void comment(char[] ch, int start, int length) throws SAXException method in class:XMLWriter
    [all...]
  /external/chromium_org/third_party/icu/source/tools/genrb/
parse.c 60 struct UString comment; member in struct:Lookahead
95 ParseResourceFunction(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status);
97 static struct SResource *parseResource(ParseState* state, char *tag, const struct UString *comment, UErrorCode *status);
130 state->lookahead[i].type = getNextToken(state->buffer, &state->lookahead[i].value, &state->lookahead[i].line, &state->lookahead[i].comment, status);
147 ustr_deinit(&state->lookahead[i].comment);
153 getToken(ParseState* state, struct UString **tokenValue, struct UString* comment, uint32_t *linenumber, UErrorCode *status)
170 if (comment != NULL)
172 ustr_cpy(comment, &(state->lookahead[state->lookaheadPosition].comment), status);
177 ustr_setlen(&state->lookahead[i].comment, 0, status)
809 struct UString comment; local
1012 struct UString comment; local
1135 struct UString comment; local
1853 struct UString comment; local
2022 struct UString comment; local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/
elf-objfmt.c 1224 yasm_section *comment; local
    [all...]
  /external/chromium_org/v8/test/cctest/
test-cpu-profiler.cc 157 profiler.CodeCreateEvent(i::Logger::BUILTIN_TAG, comment_code, "comment");
174 CodeEntry* comment = generator.code_map()->FindEntry(comment_code->address()); local
175 CHECK_NE(NULL, comment);
176 CHECK_EQ("comment", comment->name());
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
ScenarioData.java 261 String comment = currentBuildResults.getComment(); local
262 if (comment != null) {
264 stream.print(comment + "</p>\n");
  /external/icu4c/tools/genrb/
parse.cpp 58 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)
168 if (comment != NULL)
170 ustr_cpy(comment, &(state->lookahead[state->lookaheadPosition].comment), status);
175 ustr_setlen(&state->lookahead[i].comment, 0, status)
832 struct UString comment; local
1036 struct UString comment; local
1158 struct UString comment; local
1874 struct UString comment; local
2047 struct UString comment; local
    [all...]
  /external/mdnsresponder/mDNSPosix/
nss_mdns.c 2159 const char * comment; member in struct:__anon22735
    [all...]
  /external/openssh/
ssh-agent.c 107 char *comment; member in struct:identity
177 xfree(id->comment);
204 id->comment, p))
235 buffer_put_cstring(&msg, id->comment);
448 debug("expiring key '%s'", id->comment);
469 char *type_name, *comment; local
614 comment = buffer_get_string(&e->request, NULL);
616 xfree(comment);
630 xfree(comment);
646 xfree(id->comment);
    [all...]
  /external/ppp/pppd/
options.c 1117 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;
    [all...]
  /external/protobuf/gtest/include/gtest/
gtest.h 540 // Returns the test case comment.
543 // Returns the test comment.
544 const char* comment() const;
577 const char* test_case_comment, const char* comment,
597 const char* test_case_comment, const char* comment,
622 TestCase(const char* name, const char* comment,
632 // Returns the test case comment.
633 const char* comment() const { return comment_.c_str(); } function in class:testing::TestCase
720 // Comment on the test case.
    [all...]
  /frameworks/av/media/libstagefright/
OggExtractor.cpp 777 const char *comment = mVc.user_comments[i]; local
779 parseVorbisComment(mFileMeta, comment, commentLength);
780 //ALOGI("comment #%d: '%s'", i + 1, mVc.user_comments[i]);
785 const sp<MetaData> &fileMeta, const char *comment, size_t commentLength)
810 if (!strncasecmp(kMap[j].mTag, comment, tagLen)
811 && comment[tagLen] == '=') {
815 &comment[tagLen + 1],
818 if (!strcasecmp(&comment[tagLen + 1], "true")) {
822 fileMeta->setCString(kMap[j].mKey, &comment[tagLen + 1]);
  /frameworks/base/tools/aapt/
AaptAssets.h 334 , isJavaSymbol(o.isJavaSymbol), comment(o.comment), typeComment(o.typeComment)
343 comment = o.comment;
357 String16 comment; member in class:AaptSymbolEntry
422 void appendComment(const String8& name, const String16& comment, const SourcePos& pos) {
423 if (comment.size() <= 0) {
427 if (sym.comment.size() == 0) {
428 sym.comment = comment;
    [all...]
ResourceTable.h 170 const String16& comment,
176 const String16& comment);
371 void appendComment(const String16& comment, bool onlyIfEmpty = false);
374 void appendTypeComment(const String16& comment);
409 comment(_comment), ident(_ident) { }
411 comment(o.comment), ident(o.ident) { }
416 comment = o.comment;
422 String16 comment; member in class:ResourceTable::Public
    [all...]
  /libcore/luni/src/main/native/
org_apache_harmony_xml_ExpatParser.cpp 679 * Called by Expat when it encounters a comment. Delegates to the same method
683 * @param comment 0-terminated
685 static void comment(void* data, const char* comment) { function
686 bufferAndInvoke(commentMethod, data, comment, strlen(comment));
993 XML_SetCommentHandler(parser, comment);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
zipfile.py 211 # Check to see if this is ZIP file with no archive comment (the
222 # the signature is correct and there's no comment, unpack structure
226 # Append a blank comment and record start offset
234 # comment. Search the end of the file for the "end of central directory"
235 # record signature. The comment is the last item in the ZIP file and may be
237 # number does not appear in the comment.
250 comment = data[start+sizeEndCentDir:start+sizeEndCentDir+commentSize]
251 endrec.append(comment)
270 'comment',
309 self.comment = "" # Comment for each fil
914 def comment(self): member in class:ZipFile
919 def comment(self, comment): member in class:ZipFile
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
zipfile.py 211 # Check to see if this is ZIP file with no archive comment (the
222 # the signature is correct and there's no comment, unpack structure
226 # Append a blank comment and record start offset
234 # comment. Search the end of the file for the "end of central directory"
235 # record signature. The comment is the last item in the ZIP file and may be
237 # number does not appear in the comment.
250 comment = data[start+sizeEndCentDir:start+sizeEndCentDir+commentSize]
251 endrec.append(comment)
270 'comment',
309 self.comment = "" # Comment for each fil
914 def comment(self): member in class:ZipFile
919 def comment(self, comment): member in class:ZipFile
    [all...]
  /libcore/luni/src/test/java/libcore/xml/
DomTest.java 44 import org.w3c.dom.Comment;
121 private Comment comment; field in class:DomTest
164 comment = (Comment) vitamins.getChildNodes().item(1);
181 vitaminsXmlnsA, comment, vitaminc, vitamincText));
227 assertEquals("http://usda", comment.lookupNamespaceURI("a"));
259 assertEquals("http://food", comment.lookupNamespaceURI(null));
297 assertEquals(null, comment.lookupPrefix("http://addons"));
341 assertEquals("a", comment.lookupPrefix("http://usda"))
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDocumentImpl.java 50 * <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
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM.java 156 "#comment", "#document", // Comment, Document
589 * %REVIEW-COMMENT% It should never be empty, should it?
2445 public void comment(char ch[], int start, int length) throws SAXException method in class:SAX2DTM
    [all...]
SAX2DTM2.java 281 // an element can be either an element, text, comment or
2258 public void comment(char ch[], int start, int length) throws SAXException method in class:SAX2DTM2
    [all...]

Completed in 837 milliseconds

1 2 3 4 5 6 7 8 91011>>