Home
last modified time | relevance | path

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

/build/blueprint/parser/
Dmodify.go24 func AddStringToList(list *List, s string) (modified bool) {
44 func RemoveStringFromList(list *List, s string) (modified bool) {
59 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.go364 type List struct { struct
365 LBracePos scanner.Position
366 RBracePos scanner.Position
367 Values []Expression
370 func (x *List) Pos() scanner.Position { return x.LBracePos }
371 func (x *List) End() scanner.Position { return endPos(x.RBracePos, 1) }
373 func (x *List) Copy() Expression {
382 func (x *List) Eval() Expression {
386 func (x *List) String() string {
395 func (x *List) Type() Type { return ListType }
/build/soong/bpfix/bpfix/
Dbpfix.go1254 func filterExpressionList(patchList *parser.PatchList, items *parser.List, removals *parser.List) {
/build/make/tools/aconfig/aflags/src/
Dmain.rs164 List { enumerator
/build/soong/zip/
Dzip.go147 func (b *FileArgsBuilder) List(name string) *FileArgsBuilder { func