/aosp12/packages/modules/GeoTZ/validation/geonames/known_diffs/ |
H A D | known_diffs500.prototxt | 12 comment: "Add a comment here" 27 comment: "Add a comment here" 42 comment: "Add a comment here" 57 comment: "Add a comment here" 72 comment: "Add a comment here" 87 comment: "Add a comment here" 102 comment: "Add a comment here" 117 comment: "Add a comment here" 132 comment: "Add a comment here" 147 comment: "Add a comment here" [all …]
|
H A D | known_diffs1000.prototxt | 12 comment: "Add a comment here" 27 comment: "Add a comment here" 42 comment: "Add a comment here" 57 comment: "Add a comment here" 72 comment: "Add a comment here" 87 comment: "Add a comment here" 102 comment: "Add a comment here" 117 comment: "Add a comment here" 132 comment: "Add a comment here" 147 comment: "Add a comment here" [all …]
|
H A D | known_diffs15000.prototxt | 12 comment: "Add a comment here" 27 comment: "Add a comment here" 42 comment: "Add a comment here" 57 comment: "Add a comment here" 72 comment: "Add a comment here" 87 comment: "Add a comment here" 102 comment: "Add a comment here" 117 comment: "Add a comment here" 132 comment: "Add a comment here" 147 comment: "Add a comment here" [all …]
|
H A D | known_diffs5000.prototxt | 12 comment: "Add a comment here" 27 comment: "Add a comment here" 42 comment: "Add a comment here" 57 comment: "Add a comment here" 72 comment: "Add a comment here" 87 comment: "Add a comment here" 102 comment: "Add a comment here" 119 comment: "Add a comment here" 134 comment: "Add a comment here" 149 comment: "Add a comment here" [all …]
|
/aosp12/frameworks/base/tools/aapt2/java/ |
H A D | AnnotationProcessor.cpp | 34 Utf8Iterator iter(comment); in ExtractFirstSentence() 40 return comment.substr(0, current_position); in ExtractFirstSentence() 44 return comment; in ExtractFirstSentence() 68 if (comment.find(sDeprecated) != std::string::npos) { in AppendCommentLine() 83 comment.erase(comment.begin() + match_result.position(), in AppendCommentLine() 87 comment.erase(comment.begin() + idx, comment.begin() + idx + rule.doc_str.size()); in AppendCommentLine() 93 const StringPiece trimmed = util::TrimWhitespace(comment); in AppendCommentLine() 99 if (trimmed.size() != comment.size()) { in AppendCommentLine() 100 comment = trimmed.to_string(); in AppendCommentLine() 107 comment_ << "\n * " << std::move(comment); in AppendCommentLine() [all …]
|
/aosp12/frameworks/base/cmds/idmap2/libidmap2/ |
H A D | RawPrintVisitor.cpp | 149 std::string comment; in print() local 150 base::StringAppendV(&comment, fmt, ap); in print() 153 stream_ << base::StringPrintf("%08zx: %02x", offset_, value) << " " << comment in print() 162 std::string comment; in print() local 163 base::StringAppendV(&comment, fmt, ap); in print() 174 std::string comment; in print() local 175 base::StringAppendV(&comment, fmt, ap); in print() 178 stream_ << base::StringPrintf("%08zx: %08x", offset_, value) << " " << comment << std::endl; in print() 186 std::string comment; in print() local 187 base::StringAppendV(&comment, fmt, ap); in print() [all …]
|
/aosp12/frameworks/base/core/java/android/text/util/ |
H A D | Rfc822Tokenizer.java | 48 StringBuilder comment = new StringBuilder(); in tokenize() local 68 comment.toString())); in tokenize() 72 comment.toString())); in tokenize() 77 comment.setLength(0); in tokenize() 106 comment.append(c); in tokenize() 112 comment.append(c); in tokenize() 117 comment.append(text.charAt(i + 1)); in tokenize() 121 comment.append(c); in tokenize() 153 comment.toString())); in tokenize() 157 comment.toString())); in tokenize()
|
H A D | Rfc822Token.java | 33 public Rfc822Token(@Nullable String name, @Nullable String address, @Nullable String comment) { in Rfc822Token() argument 36 mComment = comment; in Rfc822Token() 80 public void setComment(@Nullable String comment) { in setComment() argument 81 mComment = comment; in setComment() 161 public static String quoteComment(String comment) { in quoteComment() argument 162 int len = comment.length(); in quoteComment() 166 char c = comment.charAt(i); in quoteComment()
|
/aosp12/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
H A D | NotificationListenerServiceTest.java | 424 assertEquals(comment, a.getKey(), b.getKey()); in detailedAssertEquals() 425 assertEquals(comment, a.getRank(), b.getRank()); in detailedAssertEquals() 429 assertEquals(comment, a.getImportance(), b.getImportance()); in detailedAssertEquals() 432 assertEquals(comment, a.getChannel(), b.getChannel()); in detailedAssertEquals() 435 assertEquals(comment, a.canShowBadge(), b.canShowBadge()); in detailedAssertEquals() 437 assertEquals(comment, a.isSuspended(), b.isSuspended()); in detailedAssertEquals() 439 assertEquals(comment, a.isNoisy(), b.isNoisy()); in detailedAssertEquals() 440 assertEquals(comment, a.getSmartReplies(), b.getSmartReplies()); in detailedAssertEquals() 441 assertEquals(comment, a.canBubble(), b.canBubble()); in detailedAssertEquals() 442 assertEquals(comment, a.isConversation(), b.isConversation()); in detailedAssertEquals() [all …]
|
/aosp12/build/blueprint/parser/ |
H A D | ast.go | 429 for _, comment := range c.Comment { 430 pos.Offset += len(comment) + 1 431 pos.Column = len(comment) + 1 439 for _, comment := range c.Comment { 440 l += len(comment) + 1 444 buf = append(buf, comment...) 455 l += len(comment) + 1 467 comment = strings.TrimPrefix(comment, "/*") 470 comment = strings.TrimSuffix(comment, "*/") 473 comment = strings.TrimPrefix(comment, "//") [all …]
|
/aosp12/system/tools/hidl/ |
H A D | DocComment.cpp | 30 DocComment::DocComment(const std::string& comment, const Location& location, CommentType type) in DocComment() argument 32 std::vector<std::string> lines = base::Split(base::Trim(comment), "\n"); in DocComment() 66 void DocComment::merge(const DocComment* comment) { in merge() argument 68 mLines.insert(mLines.end(), comment->mLines.begin(), comment->mLines.end()); in merge() 69 mLocation.setLocation(mLocation.begin(), comment->mLocation.end()); in merge()
|
/aosp12/frameworks/base/tools/aapt/ |
H A D | AaptAssets.h | 321 , isJavaSymbol(o.isJavaSymbol), comment(o.comment), typeComment(o.typeComment) in AaptSymbolEntry() 330 comment = o.comment; 344 String16 comment; variable 410 if (comment.size() <= 0) { in appendComment() 414 if (sym.comment.size() == 0) { in appendComment() 415 sym.comment = comment; in appendComment() 418 sym.comment.append(comment); in appendComment() 423 if (comment.size() <= 0) { in appendTypeComment() 428 sym.typeComment = comment; in appendTypeComment() 431 sym.typeComment.append(comment); in appendTypeComment() [all …]
|
H A D | ResourceTable.h | 191 const String16& comment, 197 const String16& comment); 418 void appendComment(const String16& comment, bool onlyIfEmpty = false); 421 void appendTypeComment(const String16& comment); 460 comment(_comment), ident(_ident) { } in Public() 462 comment(o.comment), ident(o.ident) { } in Public() 467 comment = o.comment; 473 String16 comment; variable 590 const String16& comment,
|
/aosp12/frameworks/base/tools/aapt2/ |
H A D | ResourceTable_test.cpp | 201 if (visibility.comment != comment) { in VisibilityOfResource() 216 visibility.comment = "private"; in TEST() 222 visibility.comment = "undefined"; in TEST() 228 visibility.comment = "public"; in TEST() 234 visibility.comment = "private"; in TEST() 247 allow_new.comment = "first"; in TEST() 253 ASSERT_THAT(result.value().entry->allow_new.value().comment, StrEq("first")); in TEST() 255 allow_new.comment = "second"; in TEST() 261 ASSERT_THAT(result.value().entry->allow_new.value().comment, StrEq("second")); in TEST() 271 overlayable_item.comment = "comment"; in TEST() [all …]
|
H A D | ResourceParser.cpp | 134 visibility.comment = res->comment; in AddResourcesToTable() 145 allow_new.comment = res->comment; in AddResourcesToTable() 435 comment = parser->comment(); in ParseResources() 457 comment = ""; in ParseResources() 465 parsed_resource.comment = std::move(comment); in ParseResources() 1044 .comment = std::move(comment), in ParseGroupImpl() 1178 comment = parser->comment(); in ParseOverlayable() 1224 overlayable_item.comment = comment; in ParseOverlayable() 1435 comment = {}; in ParseAttrImpl() 1796 child_resource.comment = std::move(comment); in ParseDeclareStyleable() [all …]
|
/aosp12/frameworks/rs/ |
H A D | 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);
|
/aosp12/build/blueprint/ |
H A D | ninja_writer.go | 48 func (n *ninjaWriter) Comment(comment string) error { 55 for i, r := range comment { 67 line = strings.TrimRightFunc(comment[lineStart:i], unicode.IsSpace) 73 line = strings.TrimSpace(comment[lineStart:lastSplitPoint]) 87 if lineStart != len(comment) { 88 line := strings.TrimSpace(comment[lineStart:]) 116 func (n *ninjaWriter) Build(comment string, rule string, outputs, implicitOuts, 130 if comment != "" { 131 err := wrapper.Comment(comment)
|
/aosp12/packages/modules/NeuralNetworks/tools/test_generator/ |
H A D | example_generator.py | 78 comment = var.get(COMMENT_KEY) 79 comment = "" if comment is None else " // %s" % comment 81 agg_init = "{%s\n%s\n}" % (comment,
|
/aosp12/frameworks/av/media/libstagefright/ |
H A D | MetaDataUtils.cpp | 309 AMediaFormat *fileMeta, const char *comment, size_t commentLength) { in parseVorbisComment() argument 336 if (!strncasecmp(kMap[j].mTag, comment, tagLen) in parseVorbisComment() 337 && comment[tagLen] == '=') { in parseVorbisComment() 341 &comment[tagLen + 1], in parseVorbisComment() 344 if (!strcasecmp(&comment[tagLen + 1], "true")) { in parseVorbisComment() 350 const int hapticChannelCount = strtol(&comment[tagLen + 1], &end, 10); in parseVorbisComment() 357 AMediaFormat_setString(fileMeta, kMap[j].mKey, &comment[tagLen + 1]); in parseVorbisComment()
|
/aosp12/system/tools/hidl/test/format_test/1.0/ |
H A D | IFoo.hal | 20 * This is a doc comment. 34 * This doc comment should show up 51 * Some doc comment which will be emitted 75 * This is a doc comment.
|
/aosp12/packages/services/Car/tools/ |
H A D | update-obd2-sensors.py | 186 def __init__(self, name, comment=None, id=None): argument 188 self.comment = comment if comment else "" 193 if self.comment: 194 s = s + self.comment + "\n"
|
/aosp12/build/make/tools/ |
H A D | post_process_props.py | 160 def __init__(self, name, value, optional=False, comment=None): argument 163 if comment != None: 164 self.comments = [comment] 173 return Prop("", "", comment=line) 183 return Prop("", "", comment=line) 239 comment="# Auto-added by post_process_props.py"))
|
/aosp12/system/tools/hidl/test/error_test/line_number_doc_comments/1.0/ |
H A D | IFoo.hal | 19 * This is a doc comment 22 * Different type of comment 24 // Unhandled comment
|
/aosp12/system/core/toolbox/ |
H A D | modprobe.cpp | 67 auto comment = rv.find('#'); in stripComments() local 68 if (comment == std::string::npos) return rv; in stripComments() 69 auto end = rv.find('\n', comment); in stripComments() 70 if (end != std::string::npos) end = end - comment; in stripComments() 71 rv.erase(comment, end); in stripComments()
|
/aosp12/frameworks/base/tools/stringslint/ |
H A D | stringslint.py | 129 comment = last_comment 137 if comment is None: 141 if "do not translate" in comment.text.lower(): 153 limit = re.search("CHAR[ _-]LIMIT=(\d+|NONE|none)", comment.text) 156 repr(comment), "<!-- Description of string [CHAR LIMIT=32] -->")
|