/external/clang/docs/tools/ |
D | dump_ast_matchers.py | 57 def extract_result_types(comment): argument 69 m = re.search(r'Usable as: Any Matcher[\s\n]*$', comment, re.S) 73 m = re.match(r'^(.*)Matcher<([^>]+)>\s*,?[\s\n]*$', comment, re.S) 75 if re.search(r'Usable as:\s*$', comment): 80 comment = m.group(1) 82 def strip_doxygen(comment): argument 85 comment = re.sub(r'^\\[^\s]+\n', r'', comment, flags=re.M) 87 comment = re.sub(r'\\[^\s]+\s+', r'', comment) 88 return comment 98 def add_matcher(result_type, name, args, comment, is_dyncast=False): argument [all …]
|
D | dump_format_style.py | 33 def __init__(self, name, type, comment): argument 36 self.comment = comment.strip() 41 doxygen2rst(indent(self.comment, 2))) 47 def __init__(self, name, comment): argument 49 self.comment = comment.strip() 56 def __init__(self, name, comment): argument 58 self.comment = comment.strip() 64 doxygen2rst(indent(self.comment, 2))) 77 comment = '' 88 comment = clean_comment_line(line) [all …]
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
D | RetryAfter.java | 63 protected String comment; field in RetryAfter 80 if (comment != null) in encodeBody() 81 s.append(SP + LPAREN + comment + RPAREN); in encodeBody() 94 return comment != null; in hasComment() 100 comment = null; in removeComment() 146 return comment; in getComment() 157 public void setComment(String comment) throws ParseException { in setComment() argument 158 if (comment == null) in setComment() 160 this.comment = comment; in setComment()
|
/external/clang/test/Preprocessor/ |
D | pragma_microsoft.c | 8 #pragma comment(linker,"foo=" FOO) // expected-error {{pragma comment requires parenthesized identi… 9 #pragma comment(linker," bar=" BAR) 11 #pragma comment( user, "Compiled on " __DATE__ " at " __TIME__ ) 13 #pragma comment(foo) // expected-error {{unknown kind of pragma comment}} 14 #pragma comment(compiler,) // expected-error {{expected string literal in pragma comment}} 16 #pragma comment(foo) // macro expand kind. 17 #pragma comment(foo) x // expected-error {{pragma comment requires}} 19 #pragma comment(user, "foo\abar\nbaz\tsome thing") 29 __pragma(comment(linker," bar=" BAR))
|
/external/openssl/crypto/bf/asm/ |
D | bf-686.pl | 33 &comment(""); 34 &comment("Load the 2 words"); 39 &comment(""); 40 &comment("P pointer, s and enc flag"); 53 &comment(""); 54 &comment("Round $i"); 57 &comment(""); 58 &comment("Round ".sprintf("%d",$i+1)); 73 &comment(""); 74 &comment("Round $i"); [all …]
|
D | bf-586.pl | 31 &comment(""); 40 &comment("Load the 2 words"); 56 &comment(""); 57 &comment("Round $i"); 60 &comment(""); 61 &comment("Round ".sprintf("%d",$i+1)); 75 &comment(""); 76 &comment("Round $i"); 78 &comment(""); 79 &comment("Round ".sprintf("%d",$i-1)); [all …]
|
/external/chromium_org/third_party/openssl/openssl/crypto/bf/asm/ |
D | bf-686.pl | 33 &comment(""); 34 &comment("Load the 2 words"); 39 &comment(""); 40 &comment("P pointer, s and enc flag"); 53 &comment(""); 54 &comment("Round $i"); 57 &comment(""); 58 &comment("Round ".sprintf("%d",$i+1)); 73 &comment(""); 74 &comment("Round $i"); [all …]
|
D | bf-586.pl | 31 &comment(""); 40 &comment("Load the 2 words"); 56 &comment(""); 57 &comment("Round $i"); 60 &comment(""); 61 &comment("Round ".sprintf("%d",$i+1)); 75 &comment(""); 76 &comment("Round $i"); 78 &comment(""); 79 &comment("Round ".sprintf("%d",$i-1)); [all …]
|
/external/libvpx/libvpx/build/make/ |
D | ads2gas.pl | 44 undef $comment; 52 $comment = ""; 53 ($line, $comment) = /(.*?)$comment_char(.*)/; 145 print "$comment_sub$comment\n" if defined $comment; 232 print "$comment_sub$comment\n" if defined $comment;
|
/external/chromium_org/third_party/libvpx/source/libvpx/build/make/ |
D | ads2gas.pl | 44 undef $comment; 52 $comment = ""; 53 ($line, $comment) = /(.*?)$comment_char(.*)/; 145 print "$comment_sub$comment\n" if defined $comment; 232 print "$comment_sub$comment\n" if defined $comment;
|
/external/chromium_org/third_party/webrtc/base/ |
D | flags.h | 77 Flag(const char* file, const char* name, const char* comment, 83 const char* comment() const { return comment_; } in comment() function 156 #define DEFINE_FLAG(type, c_type, name, default, comment) \ argument 160 static rtc::Flag Flag_##name(__FILE__, #name, (comment), \ 172 #define DEFINE_bool(name, default, comment) \ argument 173 DEFINE_FLAG(BOOL, bool, name, default, comment) 174 #define DEFINE_int(name, default, comment) \ argument 175 DEFINE_FLAG(INT, int, name, default, comment) 176 #define DEFINE_float(name, default, comment) \ argument 177 DEFINE_FLAG(FLOAT, double, name, default, comment) [all …]
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
D | flags.h | 92 Flag(const char* file, const char* name, const char* comment, 98 const char* comment() const { return comment_; } in comment() function 171 #define DEFINE_FLAG(type, c_type, name, default, comment) \ argument 175 static Flag Flag_##name(__FILE__, #name, (comment), \ 187 #define DEFINE_bool(name, default, comment) \ argument 188 DEFINE_FLAG(BOOL, bool, name, default, comment) 189 #define DEFINE_int(name, default, comment) \ argument 190 DEFINE_FLAG(INT, int, name, default, comment) 191 #define DEFINE_float(name, default, comment) \ argument 192 DEFINE_FLAG(FLOAT, double, name, default, comment) [all …]
|
/external/protobuf/gtest/test/ |
D | gtest-unittest-api_test.cc | 108 Message comment; in GetExpectedTestCaseComment() local 109 comment << "TypeParam = " << GetTypeName<int>().c_str(); in GetExpectedTestCaseComment() 110 return comment.GetString(); in GetExpectedTestCaseComment() 151 EXPECT_STREQ("", test_case->comment()); in TEST() 161 EXPECT_STREQ("", tests[0]->comment()); in TEST() 167 EXPECT_STREQ("", tests[1]->comment()); in TEST() 173 EXPECT_STREQ("", tests[2]->comment()); in TEST() 179 EXPECT_STREQ("", tests[3]->comment()); in TEST() 191 EXPECT_STREQ(GetExpectedTestCaseComment().c_str(), test_case->comment()); in TEST() 201 EXPECT_STREQ("", tests[0]->comment()); in TEST() [all …]
|
/external/openssl/crypto/bn/asm/ |
D | bn-586.pl | 138 &comment(""); 163 &comment("Round $i"); 175 &comment(""); 190 &comment("Tail Round $i"); 254 &comment(""); 275 &comment("Round $i"); 288 &comment(""); 304 &comment("Tail Round $i"); 360 &comment(""); 375 &comment("Round $i"); [all …]
|
/external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/ |
D | bn-586.pl | 138 &comment(""); 163 &comment("Round $i"); 175 &comment(""); 190 &comment("Tail Round $i"); 254 &comment(""); 275 &comment("Round $i"); 288 &comment(""); 304 &comment("Tail Round $i"); 360 &comment(""); 375 &comment("Round $i"); [all …]
|
/external/chromium_org/third_party/icu/source/tools/gensprep/ |
D | filterRFC3454.pl | 157 local ($inFH, $outFH,$comment, $table) = @_; 159 print $outFH $comment."\n"; 220 $comment = "# This table contains code points from Table A.1 from RFC 3454\n"; 221 readPrint($inFH,$outFH, $comment, "A"); 229 $comment = "# This table contains code points from Table B.1 from RFC 3454\n"; 230 readPrint($inFH,$outFH,$comment, "B.1"); 238 $comment = $warning."# This table contains code points from Table B.2 from RFC 3454\n"; 239 readPrint($inFH,$outFH,$comment, "B.2"); 247 $comment = $warning."# This table contains code points from Table B.3 from RFC 3454\n"; 248 readPrint($inFH,$outFH,$comment, "B.3"); [all …]
|
/external/icu/icu4c/source/tools/gensprep/ |
D | filterRFC3454.pl | 157 local ($inFH, $outFH,$comment, $table) = @_; 159 print $outFH $comment."\n"; 220 $comment = "# This table contains code points from Table A.1 from RFC 3454\n"; 221 readPrint($inFH,$outFH, $comment, "A"); 229 $comment = "# This table contains code points from Table B.1 from RFC 3454\n"; 230 readPrint($inFH,$outFH,$comment, "B.1"); 238 $comment = $warning."# This table contains code points from Table B.2 from RFC 3454\n"; 239 readPrint($inFH,$outFH,$comment, "B.2"); 247 $comment = $warning."# This table contains code points from Table B.3 from RFC 3454\n"; 248 readPrint($inFH,$outFH,$comment, "B.3"); [all …]
|
/external/doclava/src/com/google/doclava/ |
D | AttributeInfo.java | 45 for (AttrTagInfo comment : attrField.comment().attrTags()) { in name() 46 String n = comment.name(); in name() 59 public Comment comment() { in comment() method in AttributeInfo 61 for (AttrTagInfo attr : attrField.comment().attrTags()) { in comment() 89 TagInfo.makeHDF(data, base + ".deprecated", attrField.comment().deprecatedTags()); in makeHDF() 90 TagInfo.makeHDF(data, base + ".shortDescr", comment().briefTags()); in makeHDF() 91 TagInfo.makeHDF(data, base + ".descr", comment().tags()); in makeHDF()
|
/external/chromium_org/third_party/openssl/openssl/crypto/des/asm/ |
D | des-586.pl | 52 &comment(""); 54 &comment(""); 66 &comment("Round $i"); 68 &comment("Round ".sprintf("%d",$i+1)); 89 &comment(""); 91 &comment(""); 103 &comment("Round $i"); 105 &comment("Round ".sprintf("%d",$i-1)); 124 &comment(""); 125 &comment("Load the 2 words"); [all …]
|
D | desboth.pl | 19 &comment(""); 20 &comment("Load the data words"); 25 &comment(""); 26 &comment("IP"); 64 &comment(""); 65 &comment("FP");
|
/external/openssl/crypto/des/asm/ |
D | des-586.pl | 52 &comment(""); 54 &comment(""); 66 &comment("Round $i"); 68 &comment("Round ".sprintf("%d",$i+1)); 89 &comment(""); 91 &comment(""); 103 &comment("Round $i"); 105 &comment("Round ".sprintf("%d",$i-1)); 124 &comment(""); 125 &comment("Load the 2 words"); [all …]
|
D | desboth.pl | 19 &comment(""); 20 &comment("Load the data words"); 25 &comment(""); 26 &comment("IP"); 64 &comment(""); 65 &comment("FP");
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/ |
D | CommentMethodItem.java | 37 private final String comment; field in CommentMethodItem 40 public CommentMethodItem(String comment, int codeAddress, double sortOrder) { in CommentMethodItem() argument 42 this.comment = comment; in CommentMethodItem() 52 writer.write(comment); in writeTo()
|
/external/chromium_org/third_party/icu/source/tools/genrb/ |
D | parse.c | 60 struct UString comment; member 95 …(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *stat… 97 static struct SResource *parseResource(ParseState* state, char *tag, const struct UString *comment,… 130 …ffer, &state->lookahead[i].value, &state->lookahead[i].line, &state->lookahead[i].comment, status); in initLookahead() 147 ustr_deinit(&state->lookahead[i].comment); in cleanupLookahead() 153 getToken(ParseState* state, struct UString **tokenValue, struct UString* comment, uint32_t *linenum… in getToken() argument 170 if (comment != NULL) in getToken() 172 ustr_cpy(comment, &(state->lookahead[state->lookaheadPosition].comment), status); in getToken() 177 ustr_setlen(&state->lookahead[i].comment, 0, status); in getToken() 179 …ffer, &state->lookahead[i].value, &state->lookahead[i].line, &state->lookahead[i].comment, status); in getToken() [all …]
|
/external/chromium_org/tools/json_schema_compiler/ |
D | code.py | 88 def Comment(self, comment, comment_prefix='// '): argument 97 while len(comment) >= max_len: 98 line = comment[0:max_len] 102 comment = comment[last_space + 1:] 104 comment = comment[max_len:] 106 self.Append(comment_prefix + comment, substitute=False)
|