Searched defs:LastChar (Results 1 - 20 of 20) sorted by relevance

/external/llvm/lib/Support/
H A DStreamingMemoryObject.cpp21 FirstChar(Start), LastChar(End) {
22 assert(LastChar >= FirstChar && "Invalid start/end range");
26 return LastChar - FirstChar;
37 const uint8_t* const LastChar; member in class:__anon11983::RawMemoryObject
42 return static_cast<std::ptrdiff_t>(address) < LastChar - FirstChar;
51 uint64_t BufferSize = LastChar - FirstChar;
/external/llvm/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp43 static int LastChar = ' '; local
46 while (isspace(LastChar))
47 LastChar = getchar();
49 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
50 IdentifierStr = LastChar;
51 while (isalnum((LastChar = getchar())))
52 IdentifierStr += LastChar;
61 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
64 NumStr += LastChar;
[all...]
/external/llvm/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp37 static int LastChar = ' '; local
40 while (isspace(LastChar))
41 LastChar = getchar();
43 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
44 IdentifierStr = LastChar;
45 while (isalnum((LastChar = getchar())))
46 IdentifierStr += LastChar;
55 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
58 NumStr += LastChar;
[all...]
/external/protobuf/src/google/protobuf/compiler/
H A Dimporter.cc221 static inline char LastChar(const string& str) { function in namespace:google::protobuf::compiler
272 if (!path.empty() && LastChar(path) == '/' &&
273 !result.empty() && LastChar(result) != '/') {
/external/llvm/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp43 static int LastChar = ' '; local
46 while (isspace(LastChar))
47 LastChar = getchar();
49 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
50 IdentifierStr = LastChar;
51 while (isalnum((LastChar = getchar())))
52 IdentifierStr += LastChar;
61 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
64 NumStr += LastChar;
[all...]
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp50 static int LastChar = ' '; local
53 while (isspace(LastChar))
54 LastChar = getchar();
56 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
57 IdentifierStr = LastChar;
58 while (isalnum((LastChar = getchar())))
59 IdentifierStr += LastChar;
78 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
81 NumStr += LastChar;
[all...]
/external/llvm/examples/Kaleidoscope/Chapter6/
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;
86 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
89 NumStr += LastChar;
[all...]
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp57 static int LastChar = ' '; local
60 while (isspace(LastChar))
61 LastChar = getchar();
63 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
64 IdentifierStr = LastChar;
65 while (isalnum((LastChar = getchar())))
66 IdentifierStr += LastChar;
91 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
94 NumStr += LastChar;
[all...]
/external/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp108 int LastChar = getchar(); local
110 if (LastChar == '\n' || LastChar == '\r') {
115 return LastChar;
123 static int LastChar = ' '; local
126 while (isspace(LastChar))
127 LastChar = advance();
131 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
132 IdentifierStr = LastChar;
133 while (isalnum((LastChar
[all...]
/external/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...]
/external/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...]
/external/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...]
/external/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...]
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
H A Dtoy.cpp59 static int LastChar = ' '; local
62 while (isspace(LastChar))
63 LastChar = getchar();
65 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
66 IdentifierStr = LastChar;
67 while (isalnum((LastChar = getchar())))
68 IdentifierStr += LastChar;
83 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
86 NumStr += LastChar;
[all...]
/external/llvm/examples/Kaleidoscope/Orc/initial/
H A Dtoy.cpp58 static int LastChar = ' '; local
61 while (isspace(LastChar))
62 LastChar = getchar();
64 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
65 IdentifierStr = LastChar;
66 while (isalnum((LastChar = getchar())))
67 IdentifierStr += LastChar;
82 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
85 NumStr += LastChar;
[all...]
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
H A Dtoy.cpp58 static int LastChar = ' '; local
61 while (isspace(LastChar))
62 LastChar = getchar();
64 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
65 IdentifierStr = LastChar;
66 while (isalnum((LastChar = getchar())))
67 IdentifierStr += LastChar;
82 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
85 NumStr += LastChar;
[all...]
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
H A Dtoy.cpp58 static int LastChar = ' '; local
61 while (isspace(LastChar))
62 LastChar = getchar();
64 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
65 IdentifierStr = LastChar;
66 while (isalnum((LastChar = getchar())))
67 IdentifierStr += LastChar;
82 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
85 NumStr += LastChar;
[all...]
/external/clang/lib/ARCMigrate/
H A DObjCMT.cpp537 char LastChar = TypeString[TypeString.size()-1]; local
539 if (LastChar != '*')

Completed in 234 milliseconds