Home
last modified time | relevance | path

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

/build/kati/
Dstrutil.cc413 size_t FindTwoOutsideParen(StringPiece s, char c1, char c2) { in FindTwoOutsideParen() argument
414 return FindOutsideParenImpl(s, [&c1, &c2](char d){ in FindTwoOutsideParen()
415 return d == c1 || d == c2; in FindTwoOutsideParen()
419 size_t FindThreeOutsideParen(StringPiece s, char c1, char c2, char c3) { in FindThreeOutsideParen() argument
420 return FindOutsideParenImpl(s, [&c1, &c2, &c3](char d){ in FindThreeOutsideParen()
421 return d == c1 || d == c2 || d == c3; in FindThreeOutsideParen()
Dstrutil.h127 size_t FindTwoOutsideParen(StringPiece s, char c1, char c2);
128 size_t FindThreeOutsideParen(StringPiece s, char c1, char c2, char c3);
Dfind.cc85 AndCond(FindCond* c1, FindCond* c2) in AndCond() argument
86 : c1_(c1), c2_(c2) { in AndCond()
99 OrCond(FindCond* c1, FindCond* c2) in OrCond() argument
100 : c1_(c1), c2_(c2) { in OrCond()