Searched defs:List (Results 1 – 8 of 8) sorted by relevance
24 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) {
130 func SortList(file *File, list *List) {154 func ListIsSorted(list *List) bool {
561 type List struct { struct562 LBracePos scanner.Position563 RBracePos scanner.Position564 Values []Expression567 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 …]
517 List = Type(parser.ListType) var
1254 func filterExpressionList(patchList *parser.PatchList, items *parser.List, removals *parser.List) {
636 def List(self): member in Options
170 List { enumerator
147 func (b *FileArgsBuilder) List(name string) *FileArgsBuilder { func