/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
WrapInContribution.java | 28 String comment, Map arguments, int flags) throws IllegalArgumentException { 29 return new WrapInRefactoring.Descriptor(project, description, comment, arguments);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/ |
ExtractStringContribution.java | 38 String comment, 42 return new ExtractStringDescriptor(project, description, comment, arguments);
|
/external/e2fsprogs/lib/uuid/ |
gen_uuid_nt.c | 12 #pragma comment(lib, "ntdll.lib")
|
/external/icu4c/samples/legacy/ |
legacy.cpp | 39 void printArray(const char* const comment, const UChar UArray[][5], int32_t arraySize) { 40 fprintf (stdout, "%s\n", comment); 49 void printKeys(const char *comment, uint8_t keys[][32], int32_t keySize) { 52 fprintf(stdout, "%s\n", comment);
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_6/Regress/ |
regress-309242.js | 39 var summary = 'E4X should be on by default while preserving comment hack'; 48 <!-- and --> should begin comment to end of line 55 <!-- comment -->; actual = false; 57 reportCompare(expect, actual, summary + ': <!-- is comment to end of line'); 66 reportCompare(expect, actual, summary + ': comment hack works inside script');
|
/external/webkit/Tools/Scripts/webkitpy/tool/bot/ |
sheriff.py | 83 comment = "%s might have broken %s" % ( 87 comment += "\nThe following tests are not passing:\n" 88 comment += "\n".join(tests) 90 comment,
|
/libcore/luni/src/main/java/org/xml/sax/ext/ |
LexicalHandler.java | 194 * Report an XML comment anywhere in the document. 202 * @param ch An array holding the characters in the comment. 207 public abstract void comment (char ch[], int start, int length) method in interface:LexicalHandler
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
ServerParser.java | 74 // mandatory token: product[/product-version] | (comment) 78 String comment = this.lexer.comment(); local 79 server.addProductToken('(' + comment + ')');
|
UserAgentParser.java | 83 * server-val = product / comment product = token [SLASH 90 String comment = this.lexer.comment(); local 91 userAgent.addProductToken('(' + comment + ')');
|
RetryAfterParser.java | 89 String comment = this.lexer.comment(); local 90 retryAfter.setComment(comment);
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/ |
regress-31255.js | 38 * SUMMARY: JS should treat --> as a single-line comment indicator. 44 * Note: <!--, --> are the HTML multi-line comment opener, closer. 45 * JS already accepted <!-- as a single-line comment indicator. 51 var summary = 'JS should treat --> as a single-line comment indicator'; 60 <!-- HTML comment start is already a single-line JS comment indicator 68 --> HTML comment end is JS comments until end-of-line
|
/frameworks/rs/ |
spec.l | 3 %x comment 51 "/*" BEGIN(comment); 52 <comment>[^*\n]* /* eat anything that's not a '*' */ 53 <comment>"*"+[^*/\n]* /* eat up '*'s not followed by '/'s */ 54 <comment>\n ++num_lines; 55 <comment>"*"+"/" BEGIN(INITIAL);
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
importNode03.java | 36 * The importedNode is of type Comment. 38 * Create a comment node with value being the string "this is a comment" in 40 * this document. Method should return a comment node whose value matches 72 Comment comment; local 80 comment = aNewDoc.createComment("this is a comment"); 81 aNode = doc.importNode(comment, false); 88 assertEquals("nodeValue", "this is a comment", value) [all...] |
importNode04.java | 39 * Create a Comment child node for the Document Fragment. 43 * comment value "descendant1". 74 Comment comment; local 82 comment = aNewDoc.createComment("descendant1"); 83 aNode = docFrag.appendChild(comment);
|
/frameworks/base/core/java/android/text/util/ |
Rfc822Tokenizer.java | 48 StringBuilder comment = new StringBuilder(); local 68 comment.toString())); 72 comment.toString())); 77 comment.setLength(0); 106 comment.append(c); 112 comment.append(c); 117 comment.append(text.charAt(i + 1)); 121 comment.append(c); 153 comment.toString())); 157 comment.toString())) [all...] |
/libcore/luni/src/main/java/java/util/zip/ |
ZipEntry.java | 43 String name, comment; field in class:ZipEntry 83 * Gets the comment for this {@code ZipEntry}. 85 * @return the comment for this {@code ZipEntry}, or {@code null} if there 86 * is no comment. If we're reading an archive with 87 * {@code ZipInputStream} the comment is not available. 90 return comment; 180 * Sets the comment for this {@code ZipEntry}. 182 * @param comment 183 * the comment for this entry. 185 public void setComment(String comment) { [all...] |
/external/icu4c/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/webkit/Source/WebCore/inspector/front-end/ |
inspectorSyntaxHighlight.css | 29 .webkit-css-comment { 53 .webkit-javascript-comment { 73 .webkit-html-comment { 74 /* Keep this in sync with view-source.css (.webkit-html-comment) */
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/ |
AttrsXmlParser.java | 607 * Parses the javadoc comment. 612 private String parseJavadoc(String comment) { 613 if (comment == null) { 618 comment = comment.replaceAll("\\s+", " "); //$NON-NLS-1$ //$NON-NLS-2$ 621 comment = comment.replaceAll("(?:\\{@deprecated[^}]*\\}|@deprecated[^@}]*)", ""); 637 comment = comment.replaceFirst("^\\s*(.*?(?:$|(?<![a-zA-Z]\\.[a-zA-Z])\\.(?=\\s))).*", "$1"); //$NON-NLS-1$ //$NON-NLS-2$ 639 return comment; [all...] |
/system/core/sh/ |
mkinit.sh | 81 comment="${def#*;}" 82 def="${def%;$comment}" 85 decles="${decles}${decnl}extern${def};${comment}${nl}"
|
/external/doclava/src/com/google/doclava/ |
DocInfo.java | 37 return comment().isHidden(); 41 return comment().isDocOnly(); 53 mComment = new Comment(mRawCommentText, parent(), mPosition); 58 public Comment comment() { method in class:DocInfo 60 mComment = new Comment(mRawCommentText, parent(), mPosition); 74 mComment = new Comment(mRawCommentText, parent(), mPosition); 106 Comment mComment;
|
/external/webkit/Tools/Scripts/ |
extract-localizable-strings | 123 my $comment; 134 # Handle continued multi-line comment. 176 } elsif (!defined $comment) { 178 $comment = $string; 214 $_ = ""; # If the comment doesn't end, discard the result of the line and set flag 236 $comment = undef; 247 HandleUIString($UIString, $key, $comment, $file, $macroLine); 300 my ($string, $key, $comment, $file, $line) = @_; 313 $comment = UnescapeHexSequence($comment); [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/ |
xml.rb | 68 | t=COMMENT 69 {say("Comment: " << quote($t.text))} 99 fragment COMMENT 149 <!-- This is a comment --> 181 Comment: "<!-- This is a comment -->"
|
/external/chromium/base/threading/ |
thread_local_storage_win.cc | 143 #pragma comment(linker, "/INCLUDE:_tls_used") 144 #pragma comment(linker, "/INCLUDE:p_thread_callback_base") 148 #pragma comment(linker, "/INCLUDE:__tls_used") 149 #pragma comment(linker, "/INCLUDE:_p_thread_callback_base")
|
/external/chromium/chrome/browser/ui/views/ |
certificate_viewer_win.cc | 9 #pragma comment(lib, "cryptui.lib")
|