HomeSort by relevance Sort by last modified time
    Searched refs:tok0 (Results 1 - 5 of 5) sorted by null

  /external/toybox/toys/pending/
diff.c 353 int tok0 = 0, tok1 = 0; local
356 tok0 = read_tok(file[0].fp, NULL, tok0);
358 if (((tok0 ^ tok1) & empty) || ((tok0 & 0xff) != (tok1 & 0xff)))
360 } while (!(tok0 & tok1 & empty));
  /prebuilts/go/darwin-x86/src/go/scanner/
scanner.go 532 // respectively. Otherwise, the result is tok0 if there was no other
535 func (s *Scanner) switch2(tok0, tok1 token.Token) token.Token {
540 return tok0
543 func (s *Scanner) switch3(tok0, tok1 token.Token, ch2 rune, tok2 token.Token) token.Token {
552 return tok0
555 func (s *Scanner) switch4(tok0, tok1 token.Token, ch2 rune, tok2, tok3 token.Token) token.Token {
568 return tok0
scanner_test.go 643 _, tok0, lit0 := s.Scan()
644 if tok0 != tok {
645 t.Errorf("%q: got %s, expected %s", src, tok0, tok)
647 if tok0 != token.ILLEGAL && lit0 != lit {
  /prebuilts/go/linux-x86/src/go/scanner/
scanner.go 532 // respectively. Otherwise, the result is tok0 if there was no other
535 func (s *Scanner) switch2(tok0, tok1 token.Token) token.Token {
540 return tok0
543 func (s *Scanner) switch3(tok0, tok1 token.Token, ch2 rune, tok2 token.Token) token.Token {
552 return tok0
555 func (s *Scanner) switch4(tok0, tok1 token.Token, ch2 rune, tok2, tok3 token.Token) token.Token {
568 return tok0
scanner_test.go 643 _, tok0, lit0 := s.Scan()
644 if tok0 != tok {
645 t.Errorf("%q: got %s, expected %s", src, tok0, tok)
647 if tok0 != token.ILLEGAL && lit0 != lit {

Completed in 3228 milliseconds