Home
last modified time | relevance | path

Searched refs:comment (Results 1 – 25 of 26) sorted by relevance

12

/build/blueprint/parser/
Dast.go469 for _, comment := range c.Comment {
470 pos.Offset += len(comment) + 1
471 pos.Column = len(comment) + 1
479 for _, comment := range c.Comment {
480 l += len(comment) + 1
483 for _, comment := range c.Comment {
484 buf = append(buf, comment...)
494 for _, comment := range c.Comment {
495 l += len(comment) + 1
504 for i, comment := range c.Comment {
[all …]
Dprinter.go328 for _, comment := range cg.Comments {
329 if !p.requestNewlinesForPos(comment.Pos()) {
332 for i, line := range comment.Comment {
341 if i < len(comment.Comment)-1 {
345 p.pos = comment.End()
/build/blueprint/
Dninja_writer.go48 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)
Dninja_defs.go281 comment := params.Comment
285 Comment: comment,
393 comment = b.Comment
408 …err := nw.Build(comment, rule, outputs, implicitOuts, explicitDeps, implicitDeps, orderOnlyDeps, v…
Dninja_writer_test.go122 # r comment
DAndroid.bp16 // to attach the license to, and including a comment whether the files may be
DLICENSE185 comment syntax for the file format. We also recommend that a
/build/make/tools/
Dpost_process_props.py155 def __init__(self, name, value, optional=False, comment=None): argument
158 if comment != None:
159 self.comments = [comment]
168 return Prop("", "", comment=line)
178 return Prop("", "", comment=line)
234 comment="# Auto-added by post_process_props.py"))
Dgenerate-self-extracting-archive.py128 comment = argv[3]
144 comment_line = '# %s\n' % comment
/build/bazel/rules_cc/
DREADME.md9 from `rules_cc`, add a comment containing `Divergence from rules_cc` which
/build/blueprint/microfactory/
Dmicrofactory.go237 func parseBuildComment(comment string) (matches, ok bool) {
238 if !strings.HasPrefix(comment, "//") {
241 for i, c := range comment {
245 f := strings.Fields(comment[i:])
298 for _, comment := range commentGroup.List {
299 if matches, ok := parseBuildComment(comment.Text); ok && !matches {
/build/make/tools/zipalign/
DZipEntry.cpp114 void ZipEntry::initNew(const char* fileName, const char* comment) in initNew() argument
123 if (comment != NULL) in initNew()
124 mCDE.mFileCommentLength = strlen(comment); in initNew()
134 assert(comment != NULL); in initNew()
135 strcpy((char*) mCDE.mFileComment, comment); in initNew()
DZipEntry.h165 void initNew(const char* fileName, const char* comment);
/build/make/tools/releasetools/
Dtest_utils.py186 def Comment(self, comment): argument
189 self.lines.append('# {}'.format(comment))
Dedify_generator.py246 def Comment(self, comment): argument
249 for i in comment.split("\n"):
Dcommon.py3820 def comment(line): function
3824 comment('Remove all existing dynamic partitions and groups before '
3834 comment('Move partition %s from %s to default' % (p, u.src_group))
3839 comment('Shrink partition %s from %d to %d' %
3848 comment('Shrink group %s from %d to %d' % (g, u.src_size, u.tgt_size))
3853 comment('Add group %s with maximum size %d' % (g, u.tgt_size))
3857 comment('Grow group %s from %d to %d' % (g, u.src_size, u.tgt_size))
3862 comment('Add partition %s to group %s' % (p, u.tgt_group))
3867 comment('Grow partition %s from %d to %d' %
3873 comment('Move partition %s from default to %s' %
Dpylintrc90 # Add a comment according to your evaluation note. This is used by the global
92 comment=no
/build/soong/scripts/
Dstrip.sh77 …"${CLANG_BIN}/llvm-strip" --strip-all --keep-section=.ARM.attributes --remove-section=.comment "${…
98 …"${CLANG_BIN}/llvm-strip" --strip-all --keep-section=.ARM.attributes --remove-section=.comment "${…
/build/soong/androidmk/parser/
Dparser.go492 comment := ""
498 comment += "\\" + p.scanner.TokenText()
506 comment += p.scanner.TokenText()
513 Comment: comment,
Dparser_test.go66 in: `ifeq (a,b) # comment
/build/soong/third_party/zip/
Dreader.go88 z.Comment = end.comment
426 d.comment = string(b[:l])
Dstruct.go144 comment string member
/build/soong/androidmk/androidmk/
Dandroidmk_test.go42 # Source comment
44 # Second source comment
/build/soong/licenses/
DLICENSE185 comment syntax for the file format. We also recommend that a
/build/soong/cmd/pom2bp/
Dpom2bp.go837 Whether to write the command line arguments used to generate the build file as a comment at

12