Lines Matching refs:IgnoreTriple
8 struct IgnoreTriple { struct
13 IgnoreTriple(string ifun, string iobj, string ifile) : fun(ifun) { in IgnoreTriple() argument
20 struct IgnoreObj : public IgnoreTriple {
21 IgnoreObj(string obj) : IgnoreTriple("*", obj, "*") {} in IgnoreObj()
24 struct IgnoreFun : public IgnoreTriple {
25 IgnoreFun(string fun) : IgnoreTriple(fun, "*", "*") {} in IgnoreFun()
28 struct IgnoreFile : public IgnoreTriple {
29 IgnoreFile(string file) : IgnoreTriple("*", "*", file) {} in IgnoreFile()
33 vector<IgnoreTriple> ignores;
34 vector<IgnoreTriple> ignores_r;
35 vector<IgnoreTriple> ignores_hist;
46 bool TripleVectorMatchKnown(const vector<IgnoreTriple>& v,