/external/llvm/examples/Kaleidoscope/Chapter2/ |
D | toy.cpp | 28 static int gettok() { in gettok() function 62 return gettok(); in gettok() 141 return CurTok = gettok(); in getNextToken()
|
/external/llvm/examples/Kaleidoscope/Chapter3/ |
D | toy.cpp | 33 static int gettok() { in gettok() function 67 return gettok(); in gettok() 161 return CurTok = gettok(); in getNextToken()
|
/external/llvm/docs/tutorial/ |
D | LangImpl1.rst | 183 ``gettok``. The ``gettok`` function is called to return the next token 188 /// gettok - Return the next token from standard input. 189 static int gettok() { 196 ``gettok`` works by calling the C ``getchar()`` function to read 202 The next thing ``gettok`` needs to do is recognize identifiers and 250 return gettok();
|
D | LangImpl6.rst | 102 static int gettok() {
|
D | LangImpl2.rst | 158 return CurTok = gettok();
|
D | LangImpl5.rst | 446 ... in gettok ...
|
D | LangImpl7.rst | 650 static int gettok() {
|
/external/llvm/examples/Kaleidoscope/Chapter4/ |
D | toy.cpp | 40 static int gettok() { in gettok() function 74 return gettok(); in gettok() 168 return CurTok = gettok(); in getNextToken()
|
/external/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 44 static int gettok() { in gettok() function 83 return gettok(); in gettok() 197 return CurTok = gettok(); in getNextToken()
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 47 static int gettok() { in gettok() function 88 return gettok(); in gettok() 225 return CurTok = gettok(); in getNextToken()
|
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
D | toy-jit.cpp | 53 static int gettok() { in gettok() function 95 return gettok(); in gettok() 245 return CurTok = gettok(); in getNextToken()
|
D | toy.cpp | 53 static int gettok() { in gettok() function 95 return gettok(); in gettok() 245 return CurTok = gettok(); in getNextToken()
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
D | toy-jit.cpp | 68 static int gettok() { in gettok() function 110 return gettok(); in gettok() 260 return CurTok = gettok(); in getNextToken()
|
D | toy.cpp | 74 static int gettok() { in gettok() function 116 return gettok(); in gettok() 266 return CurTok = gettok(); in getNextToken()
|
/external/llvm/examples/Kaleidoscope/Chapter7/ |
D | toy.cpp | 50 static int gettok() { in gettok() function 92 return gettok(); in gettok() 243 return CurTok = gettok(); in getNextToken()
|
/external/dnsmasq/src/ |
D | cache.c | 730 static int gettok(FILE *f, char *token) in gettok() function 770 while ((atnl = gettok(f, token)) != EOF) in read_hostsfile() 800 atnl = gettok(f, token); in read_hostsfile() 827 if ((atnl = gettok(f, token)) == EOF) in read_hostsfile()
|
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
D | toy.cpp | 51 static int gettok() { in gettok() function 93 return gettok(); in gettok() 243 return CurTok = gettok(); in getNextToken()
|
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
D | toy.cpp | 98 static int gettok() { in gettok() function 140 return gettok(); in gettok() 290 return CurTok = gettok(); in getNextToken()
|