Home
last modified time | relevance | path

Searched refs:c1 (Results 1 – 4 of 4) sorted by relevance

/build/tools/droiddoc/templates-pdk/assets/
Dsearch_autocomplete.js11 var c1 = row.cells[0];
14 c1.className = "jd-autocomplete jd-selected";
17 c1.className = "jd-autocomplete";
48 var c1 = r.insertCell(-1);
50 c1.className = "jd-autocomplete";
53 c1.onmousedown = function() {
56 c1.onmouseover = function() {
59 c1.onmouseout = function() {
62 c1.appendChild(link);
/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()