Home
last modified time | relevance | path

Searched defs:List (Results 1 – 5 of 5) 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.go361 type List struct { struct
362 LBracePos scanner.Position
363 RBracePos scanner.Position
364 Values []Expression
367 func (x *List) Pos() scanner.Position { return x.LBracePos }
368 func (x *List) End() scanner.Position { return endPos(x.RBracePos, 1) }
370 func (x *List) Copy() Expression {
379 func (x *List) Eval() Expression {
383 func (x *List) String() string {
392 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/soong/zip/
Dzip.go142 func (b *FileArgsBuilder) List(name string) *FileArgsBuilder { func