Home | History | Annotate | Download | only in kati

Lines Matching defs:in

4 // you may not use this file except in compliance with the License.
9 // Unless required by applicable law or agreed to in writing, software
118 ERROR("Cannot find the depfile in %s", cmd.as_string().c_str());
236 // A hack to exclude out phony target in Android. If this exists,
260 StringPiece TranslateCommand(const char* in, string* cmd_buf) {
267 for (; *in; in++) {
268 switch (*in) {
271 while (in[1] && *in != '\n')
272 in++;
274 *cmd_buf += *in;
282 if (quote == *in)
285 quote = *in;
287 *cmd_buf += *in;
307 *cmd_buf += *in;
310 if (*in == '\\') {
316 prev_char = *in;
361 for (StringPiece::iterator in = cmd.begin(); in != cmd.end(); in++) {
364 out_buf += *in;
365 } else if (*in == '\\') {
367 out_buf += *in;
369 if (*in == quote) {
372 out_buf += *in;
375 switch (*in) {
379 quote = *in;
390 out_buf += *in;
413 const char* in = c->cmd.c_str();
414 while (isspace(*in))
415 in++;
423 StringPiece translated = TranslateCommand(in, cmd_buf);