Searched refs:LastChar (Results 1 - 21 of 21) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp33 static int LastChar = ' '; local
36 while (isspace(LastChar))
37 LastChar = getchar();
39 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
40 IdentifierStr = LastChar;
41 while (isalnum((LastChar = getchar())))
42 IdentifierStr += LastChar;
51 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
54 NumStr += LastChar;
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp56 static int LastChar = ' '; local
59 while (isspace(LastChar))
60 LastChar = getchar();
62 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
63 IdentifierStr = LastChar;
64 while (isalnum((LastChar = getchar())))
65 IdentifierStr += LastChar;
74 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
77 NumStr += LastChar;
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp46 static int LastChar = ' '; local
49 while (isspace(LastChar))
50 LastChar = getchar();
52 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
53 IdentifierStr = LastChar;
54 while (isalnum((LastChar = getchar())))
55 IdentifierStr += LastChar;
64 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
67 NumStr += LastChar;
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp68 static int LastChar = ' '; local
71 while (isspace(LastChar))
72 LastChar = getchar();
74 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
75 IdentifierStr = LastChar;
76 while (isalnum((LastChar = getchar())))
77 IdentifierStr += LastChar;
92 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
95 NumStr += LastChar;
[all...]
H A Dtoy.cpp75 static int LastChar = ' '; local
78 while (isspace(LastChar))
79 LastChar = getchar();
81 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
82 IdentifierStr = LastChar;
83 while (isalnum((LastChar = getchar())))
84 IdentifierStr += LastChar;
99 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
102 NumStr += LastChar;
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp52 static int LastChar = ' '; local
55 while (isspace(LastChar))
56 LastChar = getchar();
58 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
59 IdentifierStr = LastChar;
60 while (isalnum((LastChar = getchar())))
61 IdentifierStr += LastChar;
76 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
79 NumStr += LastChar;
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp53 static int LastChar = ' '; local
56 while (isspace(LastChar))
57 LastChar = getchar();
59 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
60 IdentifierStr = LastChar;
61 while (isalnum((LastChar = getchar())))
62 IdentifierStr += LastChar;
77 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
80 NumStr += LastChar;
[all...]
H A Dtoy.cpp54 static int LastChar = ' '; local
57 while (isspace(LastChar))
58 LastChar = getchar();
60 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
61 IdentifierStr = LastChar;
62 while (isalnum((LastChar = getchar())))
63 IdentifierStr += LastChar;
78 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
81 NumStr += LastChar;
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
H A Dtoy.cpp68 static int LastChar = ' '; local
71 while (isspace(LastChar))
72 LastChar = getchar();
74 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
75 IdentifierStr = LastChar;
76 while (isalnum((LastChar = getchar())))
77 IdentifierStr += LastChar;
102 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
105 NumStr += LastChar;
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
H A Dtoy.cpp68 static int LastChar = ' '; local
71 while (isspace(LastChar))
72 LastChar = getchar();
74 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
75 IdentifierStr = LastChar;
76 while (isalnum((LastChar = getchar())))
77 IdentifierStr += LastChar;
102 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
105 NumStr += LastChar;
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
H A Dtoy.cpp68 static int LastChar = ' '; local
71 while (isspace(LastChar))
72 LastChar = getchar();
74 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
75 IdentifierStr = LastChar;
76 while (isalnum((LastChar = getchar())))
77 IdentifierStr += LastChar;
102 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
105 NumStr += LastChar;
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp73 static int LastChar = ' '; local
76 while (isspace(LastChar))
77 LastChar = getchar();
79 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
80 IdentifierStr = LastChar;
81 while (isalnum((LastChar = getchar())))
82 IdentifierStr += LastChar;
107 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
110 NumStr += LastChar;
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp74 static int LastChar = ' '; local
77 while (isspace(LastChar))
78 LastChar = getchar();
80 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
81 IdentifierStr = LastChar;
82 while (isalnum((LastChar = getchar())))
83 IdentifierStr += LastChar;
108 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
111 NumStr += LastChar;
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
H A Dtoy.cpp68 static int LastChar = ' '; local
71 while (isspace(LastChar))
72 LastChar = getchar();
74 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
75 IdentifierStr = LastChar;
76 while (isalnum((LastChar = getchar())))
77 IdentifierStr += LastChar;
102 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
105 NumStr += LastChar;
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp68 static int LastChar = ' '; local
71 while (isspace(LastChar))
72 LastChar = getchar();
74 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
75 IdentifierStr = LastChar;
76 while (isalnum((LastChar = getchar())))
77 IdentifierStr += LastChar;
100 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
103 NumStr += LastChar;
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp64 static int LastChar = ' '; local
67 while (isspace(LastChar))
68 LastChar = getchar();
70 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
71 IdentifierStr = LastChar;
72 while (isalnum((LastChar = getchar())))
73 IdentifierStr += LastChar;
92 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
95 NumStr += LastChar;
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter9/
H A Dtoy.cpp109 int LastChar = getchar(); local
111 if (LastChar == '\n' || LastChar == '\r') {
116 return LastChar;
124 static int LastChar = ' '; local
127 while (isspace(LastChar))
128 LastChar = advance();
132 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
133 IdentifierStr = LastChar;
134 while (isalnum((LastChar
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/
H A DSuffixTree.cpp144 unsigned LastChar = Str[EndIdx]; local
147 if (Str[NextNode->StartIdx + Active.Len] == LastChar) {
180 insertLeaf(*SplitNode, EndIdx, LastChar);
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp94 static int LastChar = ' '; local
97 while (isspace(LastChar))
98 LastChar = getchar();
100 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
101 IdentifierStr = LastChar;
102 while (isalnum((LastChar = getchar())))
103 IdentifierStr += LastChar;
118 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
121 NumStr += LastChar;
[all...]
/netbsd-current/sys/external/bsd/acpica/dist/compiler/
H A Dasllistsup.c117 UINT8 LastChar; local
124 LastChar = BufChar;
131 if (((LastChar == '*') && (BufChar == '/')) ||
132 ((LastChar == '/') && (BufChar == '*')))
/netbsd-current/external/apache2/llvm/dist/clang/lib/ARCMigrate/
H A DObjCMT.cpp540 char LastChar = TypeString[TypeString.size()-1]; local
542 if (LastChar != '*')

Completed in 278 milliseconds