Home | History | Annotate | Download | only in kati

Lines Matching refs:rest

85   StringPiece rest = line.substr(index);
86 size_t term_index = rest.find_first_of("=;");
87 if ((term_index != string::npos && rest[term_index] == '=') ||
90 term_index = rest.size();
92 ParseAssignStatement(rest, term_index,
108 CHECK(rest[term_index] == ';');
111 NewLiteral(Intern(TrimLeftSpace(rest.substr(term_index + 1))).str()));
112 rest = rest.substr(0, term_index);
115 index = rest.find(':');
117 ParseInputs(rule, rest);
126 StringPiece second = rest.substr(0, index);
127 StringPiece third = rest.substr(index+1);