HomeSort by relevance Sort by last modified time
    Searched refs:comment (Results 151 - 175 of 2645) sorted by null

1 2 3 4 5 67 8 91011>>

  /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/chromium_org/third_party/npapi/npspy/extern/nspr/
prvrsion.h 81 char * comment; /* free form field for misc usage */ member in struct:__anon18287
  /external/chromium_org/tools/grit/grit/node/
empty.py 24 'comment' : '',
  /external/doclava/src/com/google/doclava/
DocInfo.java 40 return comment().isHidden();
47 return comment().isRemoved();
60 return comment().isDocOnly();
72 mComment = new Comment(mRawCommentText, parent(), mPosition);
77 public Comment comment() { method in class:DocInfo
79 mComment = new Comment(mRawCommentText, parent(), mPosition);
93 mComment = new Comment(mRawCommentText, parent(), mPosition);
137 Comment mComment;
  /external/e2fsprogs/lib/uuid/
gen_uuid_nt.c 12 #pragma comment(lib, "ntdll.lib")
  /external/icu/icu4c/source/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/icu/icu4c/source/tools/genrb/
read.h 49 struct UString *comment,
parse.cpp 80 struct UString comment; member in struct:Lookahead
115 ParseResourceFunction(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status);
117 static struct SResource *parseResource(ParseState* state, char *tag, const struct UString *comment, UErrorCode *status);
150 state->lookahead[i].type = getNextToken(state->buffer, &state->lookahead[i].value, &state->lookahead[i].line, &state->lookahead[i].comment, status);
167 ustr_deinit(&state->lookahead[i].comment);
173 getToken(ParseState* state, struct UString **tokenValue, struct UString* comment, uint32_t *linenumber, UErrorCode *status)
190 if (comment != NULL)
192 ustr_cpy(comment, &(state->lookahead[state->lookaheadPosition].comment), status);
197 ustr_setlen(&state->lookahead[i].comment, 0, status)
874 struct UString comment; local
1088 struct UString comment; local
1215 struct UString comment; local
1929 struct UString comment; local
2102 struct UString comment; local
    [all...]
  /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
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
test_pass1.py 41 "comment": "// /* <!-- --",
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
test_pass1.py 41 "comment": "// /* <!-- --",
  /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 + ')');
  /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);
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/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);
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/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);
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/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);
  /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...]
  /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/tcmalloc/vendor/src/windows/
port.cc 106 #pragma comment(linker, "/INCLUDE:__tls_used")
107 #pragma comment(linker, "/INCLUDE:_p_thread_callback_tcmalloc")
108 #pragma comment(linker, "/INCLUDE:_p_process_term_tcmalloc")
110 #pragma comment(linker, "/INCLUDE:_tls_used")
111 #pragma comment(linker, "/INCLUDE:p_thread_callback_tcmalloc")
112 #pragma comment(linker, "/INCLUDE:p_process_term_tcmalloc")
  /external/clang/include/clang/AST/
Makefile 51 $(Echo) "Building Clang comment node tables with tblgen"
52 $(Verb) $(ClangTableGen) -gen-clang-comment-nodes -o $(call SYSPATH, $@) $<
56 $(Echo) "Building Clang comment HTML tag matchers with tblgen"
57 $(Verb) $(ClangTableGen) -gen-clang-comment-html-tags -o $(call SYSPATH, $@) $<
61 $(Echo) "Building Clang comment HTML tag properties with tblgen"
62 $(Verb) $(ClangTableGen) -gen-clang-comment-html-tags-properties -o $(call SYSPATH, $@) $<
68 $(Verb) $(ClangTableGen) -gen-clang-comment-html-named-character-references -o $(call SYSPATH, $@) $<
72 $(Echo) "Building Clang comment command info with tblgen"
73 $(Verb) $(ClangTableGen) -gen-clang-comment-command-info -o $(call SYSPATH, $@) $<
77 $(Echo) "Building Clang list of comment commands with tblgen
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
AttrsXmlParser.java 630 * Parses the javadoc comment.
635 private String parseJavadoc(String comment) {
636 if (comment == null) {
641 comment = comment.replaceAll("\\s+", " "); //$NON-NLS-1$ //$NON-NLS-2$
644 comment = comment.replaceAll("(?:\\{@deprecated[^}]*\\}|@deprecated[^@}]*)", "");
660 comment = comment.replaceFirst("^\\s*(.*?(?:$|(?<![a-zA-Z]\\.[a-zA-Z])\\.(?=\\s))).*", "$1"); //$NON-NLS-1$ //$NON-NLS-2$
662 return comment;
    [all...]
  /external/chromium_org/third_party/webrtc/video_engine/
vie_defines.h 132 #pragma comment(lib, "winmm.lib")
135 #pragma comment(lib, "ws2_32.lib")
136 #pragma comment(lib, "Iphlpapi.lib") // _GetAdaptersAddresses

Completed in 687 milliseconds

1 2 3 4 5 67 8 91011>>