Home
last modified time | relevance | path

Searched refs:gettok (Results 1 – 25 of 25) sorted by relevance

/openbsd/src/gnu/llvm/llvm/docs/tutorial/MyFirstLanguageFrontend/
DLangImpl01.rst96 ``gettok``. The ``gettok`` function is called to return the next token
101 /// gettok - Return the next token from standard input.
102 static int gettok() {
109 ``gettok`` works by calling the C ``getchar()`` function to read
115 The next thing ``gettok`` needs to do is recognize identifiers and
166 return gettok();
DLangImpl06.rst103 static int gettok() {
DLangImpl02.rst170 return CurTok = gettok();
DLangImpl05.rst468 ... in gettok ...
DLangImpl07.rst657 static int gettok() {
/openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter2/
Dtoy.cpp32 static int gettok() { in gettok() function
69 return gettok(); in gettok()
167 static int getNextToken() { return CurTok = gettok(); } in getNextToken()
/openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter3/
Dtoy.cpp45 static int gettok() { in gettok() function
82 return gettok(); in gettok()
193 static int getNextToken() { return CurTok = gettok(); } in getNextToken()
/openbsd/src/usr.bin/awk/
Dlex.c112 static int gettok(char **pbuf, int *psz) /* get next input token */ in gettok() function
198 c = gettok(&buf, &bufsize); in yylex()
324 c = gettok(&buf, &bufsize); in yylex()
DFIXES.1e742 fixed an appalling bug in gettok: any sequence of digits, +,-, E, e,
803 added *bp in gettok in lex.c; appears possible to exit function
/openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter4/
Dtoy.cpp55 static int gettok() { in gettok() function
92 return gettok(); in gettok()
203 static int getNextToken() { return CurTok = gettok(); } in getNextToken()
/openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter5/
Dtoy.cpp63 static int gettok() { in gettok() function
110 return gettok(); in gettok()
248 static int getNextToken() { return CurTok = gettok(); } in getNextToken()
/openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter6/
Dtoy.cpp67 static int gettok() { in gettok() function
118 return gettok(); in gettok()
282 static int getNextToken() { return CurTok = gettok(); } in getNextToken()
/openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/lazy/
Dtoy-jit.cpp52 static int gettok() { in gettok() function
94 return gettok(); in gettok()
244 return CurTok = gettok(); in getNextToken()
Dtoy.cpp53 static int gettok() { in gettok() function
95 return gettok(); in gettok()
245 return CurTok = gettok(); in getNextToken()
/openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/cached/
Dtoy-jit.cpp67 static int gettok() { in gettok() function
109 return gettok(); in gettok()
259 return CurTok = gettok(); in getNextToken()
Dtoy.cpp74 static int gettok() { in gettok() function
116 return gettok(); in gettok()
266 return CurTok = gettok(); in getNextToken()
/openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
Dtoy.cpp67 static int gettok() { in gettok() function
120 return gettok(); in gettok()
299 static int getNextToken() { return CurTok = gettok(); } in getNextToken()
/openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
Dtoy.cpp67 static int gettok() { in gettok() function
120 return gettok(); in gettok()
299 static int getNextToken() { return CurTok = gettok(); } in getNextToken()
/openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter8/
Dtoy.cpp72 static int gettok() { in gettok() function
125 return gettok(); in gettok()
304 static int getNextToken() { return CurTok = gettok(); } in getNextToken()
/openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter7/
Dtoy.cpp72 static int gettok() { in gettok() function
125 return gettok(); in gettok()
304 static int getNextToken() { return CurTok = gettok(); } in getNextToken()
/openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
Dtoy.cpp67 static int gettok() { in gettok() function
120 return gettok(); in gettok()
282 static int getNextToken() { return CurTok = gettok(); } in getNextToken()
/openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
Dtoy.cpp67 static int gettok() { in gettok() function
120 return gettok(); in gettok()
299 static int getNextToken() { return CurTok = gettok(); } in getNextToken()
/openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/initial/
Dtoy.cpp51 static int gettok() { in gettok() function
93 return gettok(); in gettok()
243 return CurTok = gettok(); in getNextToken()
/openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter9/
Dtoy.cpp123 static int gettok() { in gettok() function
178 return gettok(); in gettok()
412 static int getNextToken() { return CurTok = gettok(); } in getNextToken()
/openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/complete/
Dtoy.cpp93 static int gettok() { in gettok() function
135 return gettok(); in gettok()
285 return CurTok = gettok(); in getNextToken()