Home | History | Annotate | Download | only in tools

Lines Matching refs:c2

363                 c2 = self.peekChar()
364 if c2 == tokLN or not c2.isspace():
366 c += c2
386 c2 = self.nextChar()
387 c += c2
388 if c2 == '\\':
392 c2 = self.nextChar()
393 if c2 == tokEOF:
395 c += c2
396 if c2 == "'":
404 c2 = self.nextChar()
405 if c2 == tokEOF:
408 c += c2
410 if c2 == '"':
412 if c2 == "\\":
419 c2 = self.peekChar()
420 if c2 == tokLN or (not c2.isalnum() and c2 != "_"):
422 c += c2
428 c2 = self.peekChar()
429 if c2 == tokLN or (not c2.isalnum() and c2 != "_"):
431 c += c2