HomeSort by relevance Sort by last modified time
    Searched refs:gettok (Results 1 - 25 of 28) sorted by null

1 2

  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter2/
toy.cpp 26 /// gettok - Return the next token from standard input.
27 static int gettok() { function
61 return gettok();
147 return CurTok = gettok();
  /external/libxkbcommon/xkbcommon/src/xkbcomp/
rules.c 816 gettok(struct matcher *m) function
834 switch (tok = gettok(m)) {
846 switch (tok = gettok(m)) {
859 switch (tok = gettok(m)) {
867 switch (tok = gettok(m)) {
878 switch (tok = gettok(m)) {
890 switch (tok = gettok(m)) {
904 switch (tok = gettok(m)) {
917 tok = gettok(m);
939 switch (tok = gettok(m))
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 42 /// gettok - Return the next token from standard input.
43 static int gettok() { function
80 return gettok();
173 static int getNextToken() { return CurTok = gettok(); }
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter3/
toy.cpp 31 /// gettok - Return the next token from standard input.
32 static int gettok() { function
66 return gettok();
159 return CurTok = gettok();
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 43 /// gettok - Return the next token from standard input.
44 static int gettok() { function
81 return gettok();
182 static int getNextToken() { return CurTok = gettok(); }
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 52 /// gettok - Return the next token from standard input.
53 static int gettok() { function
90 return gettok();
191 static int getNextToken() { return CurTok = gettok(); }
  /external/one-true-awk/
lex.c 101 int gettok(char **pbuf, int *psz) /* get next input token */ function
120 if (!adjbuf(&buf, &sz, bp-buf+2, 100, &bp, "gettok"))
137 if (!adjbuf(&buf, &sz, bp-buf+2, 100, &bp, "gettok"))
187 c = gettok(&buf, &bufsize);
304 c = gettok(&buf, &bufsize);
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter4/
toy.cpp 38 /// gettok - Return the next token from standard input.
39 static int gettok() { function
73 return gettok();
166 return CurTok = gettok();
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 60 /// gettok - Return the next token from standard input.
61 static int gettok() { function
108 return gettok();
234 static int getNextToken() { return CurTok = gettok(); }
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/
toy.cpp 42 /// gettok - Return the next token from standard input.
43 static int gettok() { function
82 return gettok();
195 return CurTok = gettok();
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
toy.cpp 45 /// gettok - Return the next token from standard input.
46 static int gettok() { function
87 return gettok();
223 return CurTok = gettok();
  /external/dnsmasq/src/
cache.c 730 static int gettok(FILE *f, char *token) function
770 while ((atnl = gettok(f, token)) != EOF)
800 atnl = gettok(f, token);
827 if ((atnl = gettok(f, token)) == EOF)
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 68 /// gettok - Return the next token from standard input.
69 static int gettok() { function
122 return gettok();
287 static int getNextToken() { return CurTok = gettok(); }
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 68 /// gettok - Return the next token from standard input.
69 static int gettok() { function
122 return gettok();
287 static int getNextToken() { return CurTok = gettok(); }
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 68 /// gettok - Return the next token from standard input.
69 static int gettok() { function
122 return gettok();
287 static int getNextToken() { return CurTok = gettok(); }
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 69 /// gettok - Return the next token from standard input.
70 static int gettok() { function
123 return gettok();
275 static int getNextToken() { return CurTok = gettok(); }
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
toy.cpp 84 /// gettok - Return the next token from standard input.
85 static int gettok() { function
138 return gettok();
290 static int getNextToken() { return CurTok = gettok(); }
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 64 /// gettok - Return the next token from standard input.
65 static int gettok() { function
116 return gettok();
267 static int getNextToken() { return CurTok = gettok(); }
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 68 /// gettok - Return the next token from standard input.
69 static int gettok() { function
122 return gettok();
287 static int getNextToken() { return CurTok = gettok(); }
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 65 /// gettok - Return the next token from standard input.
66 static int gettok() { function
119 return gettok();
284 static int getNextToken() { return CurTok = gettok(); }
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 66 /// gettok - Return the next token from standard input.
67 static int gettok() { function
109 return gettok();
259 return CurTok = gettok();
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 50 /// gettok - Return the next token from standard input.
51 static int gettok() { function
93 return gettok();
243 return CurTok = gettok();
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 51 /// gettok - Return the next token from standard input.
52 static int gettok() { function
94 return gettok();
244 return CurTok = gettok();
    [all...]
toy.cpp 52 /// gettok - Return the next token from standard input.
53 static int gettok() { function
95 return gettok();
245 return CurTok = gettok();
    [all...]
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter7/
toy.cpp 48 /// gettok - Return the next token from standard input.
49 static int gettok() { function
91 return gettok();
241 return CurTok = gettok();
    [all...]

Completed in 417 milliseconds

1 2