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) {
Dast.go301 type List struct { struct
302 LBracePos scanner.Position
303 RBracePos scanner.Position
304 Values []Expression
307 func (x *List) Pos() scanner.Position { return x.LBracePos }
308 func (x *List) End() scanner.Position { return endPos(x.RBracePos, 1) }
310 func (x *List) Copy() Expression {
319 func (x *List) Eval() Expression {
323 func (x *List) String() string {
332 func (x *List) Type() Type { return ListType }
Dsort.go130 func SortList(file *File, list *List) {
154 func ListIsSorted(list *List) bool {
/build/soong/bpfix/bpfix/
Dbpfix.go1125 func filterExpressionList(patchList *parser.PatchList, items *parser.List, removals *parser.List) {
/build/soong/zip/
Dzip.go131 func (b *FileArgsBuilder) List(name string) *FileArgsBuilder { func