Searched refs:c2 (Results 1 - 3 of 3) sorted by relevance

/build/kati/
H A Dstrutil.h129 size_t FindTwoOutsideParen(StringPiece s, char c1, char c2);
130 size_t FindThreeOutsideParen(StringPiece s, char c1, char c2, char c3);
H A Dstrutil.cc429 size_t FindTwoOutsideParen(StringPiece s, char c1, char c2) {
431 s, [&c1, &c2](char d) { return d == c1 || d == c2; });
434 size_t FindThreeOutsideParen(StringPiece s, char c1, char c2, char c3) {
436 s, [&c1, &c2, &c3](char d) { return d == c1 || d == c2 || d == c3; });
H A Dfind.cc104 AndCond(FindCond* c1, FindCond* c2) : c1_(c1), c2_(c2) {} argument
119 OrCond(FindCond* c1, FindCond* c2) : c1_(c1), c2_(c2) {} argument

Completed in 104 milliseconds