Home | History | Annotate | Download | only in cgo

Lines Matching full:tabindex

207 		tabIndex := strings.Index(line, "\t")
209 if spaceIndex == -1 && tabIndex == -1 {
211 } else if tabIndex == -1 || (spaceIndex != -1 && spaceIndex < tabIndex) {
215 key = line[0:tabIndex]
216 val = strings.TrimSpace(line[tabIndex:])