/build/blueprint/parser/ |
D | modify.go | 79 Start, End int member 91 if patch.Start > patch.End { 92 return fmt.Errorf("invalid patch, start %d is after end %d", patch.Start, patch.End) 95 if (patch.Start >= p.Start && patch.Start < p.End) || 96 (patch.End >= p.Start && patch.End < p.End) || 97 (p.Start >= patch.Start && p.Start < patch.End) || 98 (p.Start == patch.Start && p.End == patch.End) { 100 patch.Start, patch.End, p.Start, p.End)) 134 offset += int64(patch.End - patch.Start)
|
D | ast.go | 27 End() scanner.Position methodSpec 54 func (a *Assignment) End() scanner.Position { return a.Value.End() } func 89 func (m *Module) End() scanner.Position { return m.Map.End() } func 132 func (p *Property) End() scanner.Position { return p.Value.End() } func 239 func (x *Operator) End() scanner.Position { return x.Args[1].End() } func 253 func (x *Variable) End() scanner.Position { return endPos(x.NamePos, len(x.Name)) } func 277 func (x *Map) End() scanner.Position { return endPos(x.RBracePos, 1) } func 371 func (x *List) End() scanner.Position { return endPos(x.RBracePos, 1) } func 403 func (x *String) End() scanner.Position { return endPos(x.LiteralPos, len(x.Value)+2) } func 429 func (x *Int64) End() scanner.Position { return endPos(x.LiteralPos, len(x.Token)) } func [all …]
|
D | printer.go | 230 p.printToken(",", c.Value.End()) 289 if operator.Args[0].End().Line == operator.Args[1].Pos().Line { 449 if p.pos.Offset < comment.End().Offset { 450 p.pos = comment.End()
|
D | parser_test.go | 1298 if mod.End() != modEnd { 1299 t.Errorf("expected mod.End() %s, got %s", modEnd, mod.End()) 1313 if cur.End() != endPos { 1314 … property %s End() %s@%d, got %s@%d", cur.Name, endPos, endPos.Offset, cur.End(), cur.End().Offset)
|
D | parser.go | 57 func (f *File) End() scanner.Position { func 59 return f.Defs[len(f.Defs)-1].End() 172 if len(comments) > 0 && p.scanner.Position.Line > comments[len(comments)-1].End().Line+1 {
|
D | sort.go | 145 nextPos := list.End()
|
/build/soong/androidmk/parser/ |
D | ast.go | 24 End() Pos methodSpec 49 func (x *Assignment) End() Pos { return x.Value.End() } func 61 func (x *Comment) End() Pos { return Pos(int(x.CommentPos) + len(x.Comment)) } func 75 func (x *Directive) End() Pos { func 79 return x.Args.End() 98 func (x *Rule) End() Pos { return Pos(int(x.RecipePos) + len(x.Recipe)) } func 105 func (x *Variable) End() Pos { return x.Name.End() } func
|
D | make_strings.go | 67 func (ms *MakeString) End() Pos { func 70 pos = ms.Variables[len(ms.Variables)-1].End()
|
/build/blueprint/metrics/ |
D | event_handler_test.go | 47 eh.End("b") 49 eh.End("c") 50 eh.End("a") 70 eh.End("a") 77 eh.End("b") 79 eh.End("b") 80 eh.End("a")
|
D | event_handler.go | 69 defer h.End(name) 75 func (h *EventHandler) End(name string) { func
|
/build/soong/ui/tracer/ |
D | microfactory.go | 28 End uint64 member 42 cpus[cpu] = entry.End 48 cpus = append(cpus, entry.End) 55 Dur: entry.End - entry.Begin, 94 End: timestamp,
|
D | tracer.go | 46 End(thread Thread) methodSpec 231 func (t *tracerImpl) End(thread Thread) { func
|
/build/soong/ui/metrics/ |
D | event_test.go | 36 perf := et.End() 59 perf := et.End()
|
D | event.go | 157 func (t *EventTracer) End() soong_metrics_proto.PerfInfo { func
|
/build/soong/ui/build/ |
D | context.go | 60 c.Tracer.End(c.Thread) 63 c.Metrics.SetTimeMetrics(c.Metrics.EventTracer.End())
|
/build/soong/cmd/soong_build/ |
D | main.go | 120 defer ctx.EventHandler.End("queryview") 201 defer ctx.EventHandler.End("globs_ninja_file") 215 defer eventHandler.End("ninja_deps") 224 defer ctx.EventHandler.End("soong_build")
|
/build/soong/bpfix/bpfix/ |
D | bpfix.go | 857 patchList.Add(item.Pos().Offset, item.End().Offset+2, "") 870 patchList.Add(prop.Pos().Offset, prop.End().Offset+2, "") 1008 pos = mod.Properties[0].End().Offset + 1 1016 stage += string(buf[prop.Pos().Offset : prop.End().Offset+1]) 1018 err := patchlist.Add(prop.Pos().Offset, prop.End().Offset+2, "") 1106 return patchlist.Add(prop.Pos().Offset, prop.End().Offset+2, replaceStr) 1138 if err := patchList.Add(propToRemove.Pos().Offset, propToRemove.End().Offset+2, ""); err != nil { 1245 err = patchlist.Add(b.NamePos.Offset, b.End().Offset+2, "") 1272 patchList.Add(item.Pos().Offset, item.End().Offset+2, "") 1297 patchList.Add(legacyProp.Pos().Offset, legacyProp.End().Offset+2, "") [all …]
|
/build/soong/bazel/ |
D | aquery.go | 316 defer eventHandler.End("init_handler") 328 defer eventHandler.End("build_statements") 365 defer eventHandler.End("depsets")
|
/build/soong/androidmk/androidmk/ |
D | androidmk.go | 152 file.setMkPos(p.Unpack(node.Pos()), p.Unpack(node.End()))
|
/build/make/tools/droiddoc/templates-pdk/assets/ |
D | android-developer-docs.css | 1050 /* End sidebox sidebar element styles */ 1127 /* End developer training bar */ 1186 /* End training nav bar */
|
/build/blueprint/ |
D | context.go | 4674 c.EventHandler.End(name)
|