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());
233 // A hack to exclude out phony target in Android. If this exists,
257 StringPiece TranslateCommand(const char* in, string* cmd_buf) {
264 for (; *in; in++) {
265 switch (*in) {
268 while (in[1] && *in != '\n')
269 in++;
271 *cmd_buf += *in;
279 if (quote == *in)
282 quote = *in;
284 *cmd_buf += *in;
304 *cmd_buf += *in;
307 if (*in == '\\') {
313 prev_char = *in;
358 for (StringPiece::iterator in = cmd.begin(); in != cmd.end(); in++) {
361 out_buf += *in;
362 } else if (*in == '\\') {
364 out_buf += *in;
366 if (*in == quote) {
369 out_buf += *in;
372 switch (*in) {
376 quote = *in;
387 out_buf += *in;
401 // --goma_dir or --remote_num_jobs which are not used in AOSP
418 const char* in = c->cmd.c_str();
419 while (isspace(*in))
420 in++;
428 StringPiece translated = TranslateCommand(in, cmd_buf);