Lines Matching refs:tail
46 string tail; in ReadIgnoreLine() local
47 if (CutStringPrefixIfPresent(input_line, "obj:", &tail)) { in ReadIgnoreLine()
48 ignore_lists->ignores.push_back(IgnoreObj(tail)); in ReadIgnoreLine()
49 } else if (CutStringPrefixIfPresent(input_line, "src:", &tail)) { in ReadIgnoreLine()
50 ignore_lists->ignores.push_back(IgnoreFile(tail)); in ReadIgnoreLine()
51 } else if (CutStringPrefixIfPresent(input_line, "fun:", &tail)) { in ReadIgnoreLine()
52 ignore_lists->ignores.push_back(IgnoreFun(tail)); in ReadIgnoreLine()
53 } else if (CutStringPrefixIfPresent(input_line, "fun_r:", &tail)) { in ReadIgnoreLine()
54 ignore_lists->ignores_r.push_back(IgnoreFun(tail)); in ReadIgnoreLine()
55 } else if (CutStringPrefixIfPresent(input_line, "fun_hist:", &tail)) { in ReadIgnoreLine()
56 ignore_lists->ignores_hist.push_back(IgnoreFun(tail)); in ReadIgnoreLine()