Lines Matching refs:all
63 " Don't do anything for an empty base, would result in all the tags in the
294 " Use all the items in dictionary for the "info" entry.
404 func s:Nextitem(lead, items, depth, all) argument
419 " Also do "class foobar" when it's C++ after all (doesn't work very well
422 let res = s:StructMembers(tokens[tidx] . ':' . tokens[tidx + 1], a:items, a:all)
438 call extend(res, s:StructMembers(item['typeref'], a:items, a:all))
442 call extend(res, s:StructMembers(item['typename'], a:items, a:all))
473 call extend(res, s:StructMembers(cmdtokens[0] . ':' . name, a:items, a:all))
477 call extend(res, s:Nextitem(cmdtokens[0], a:items, a:depth + 1, a:all))
494 " When "all" is non-zero find all, otherwise just return 1 if there is any
496 func s:StructMembers(typename, items, all) argument
506 if a:all == 0
527 if a:all == 0
537 let target = '' " No further items, matching all members
584 return s:SearchMembers(matches, a:items[idx :], a:all)
592 " When "all" is non-zero find all, otherwise just return 1 if there is any
594 func s:SearchMembers(matches, items, all) argument
618 call extend(res, s:StructMembers(typename, a:items, a:all))
625 call extend(res, s:Nextitem(strpart(line, s, e - s), a:items, 0, a:all))
629 if a:all == 0 && len(res) > 0