Home
last modified time | relevance | path

Searched defs:List (Results 1 – 8 of 8) sorted by relevance

/build/blueprint/parser/
Dmodify.go24 func AddStringToList(list *List, s string) (modified bool) {
42 func RemoveStringFromList(list *List, s string) (modified bool) {
55 func ReplaceStringsInList(list *List, replacements map[string]string) (replaced bool) {
Dsort.go130 func SortList(file *File, list *List) {
154 func ListIsSorted(list *List) bool {
Dast.go561 type List struct { struct
562 LBracePos scanner.Position
563 RBracePos scanner.Position
564 Values []Expression
567 func (x *List) Pos() scanner.Position { return x.LBracePos }
568 func (x *List) End() scanner.Position { return endPos(x.RBracePos, 1) }
570 func (x *List) Copy() Expression {
579 func (x *List) Eval(scope *Scope) (Expression, error) {
595 func (x *List) PrintfInto(value string) error {
604 func (x *List) MarkReferencedVariables(scope *Scope) {
[all …]
/build/blueprint/bpmodify/
Dbpmodify.go517 List = Type(parser.ListType) var
/build/soong/bpfix/bpfix/
Dbpfix.go1254 func filterExpressionList(patchList *parser.PatchList, items *parser.List, removals *parser.List) {
/build/make/tools/perf/
Dbenchmarks636 def List(self): member in Options
/build/make/tools/aconfig/aflags/src/
Dmain.rs170 List { enumerator
/build/soong/zip/
Dzip.go147 func (b *FileArgsBuilder) List(name string) *FileArgsBuilder { func