OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LastChar
(Results
1 - 17
of
17
) sorted by null
/external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp
28
static int
LastChar
= ' ';
31
while (isspace(
LastChar
))
32
LastChar
= getchar();
34
if (isalpha(
LastChar
)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
35
IdentifierStr =
LastChar
;
36
while (isalnum((
LastChar
= getchar())))
37
IdentifierStr +=
LastChar
;
44
if (isdigit(
LastChar
) ||
LastChar
== '.') { // Number: [0-9.]+
47
NumStr +=
LastChar
;
[
all
...]
/external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp
33
static int
LastChar
= ' ';
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
;
49
if (isdigit(
LastChar
) ||
LastChar
== '.') { // Number: [0-9.]+
52
NumStr +=
LastChar
;
[
all
...]
/external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp
40
static int
LastChar
= ' ';
43
while (isspace(
LastChar
))
44
LastChar
= getchar();
46
if (isalpha(
LastChar
)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
47
IdentifierStr =
LastChar
;
48
while (isalnum((
LastChar
= getchar())))
49
IdentifierStr +=
LastChar
;
56
if (isdigit(
LastChar
) ||
LastChar
== '.') { // Number: [0-9.]+
59
NumStr +=
LastChar
;
[
all
...]
/external/llvm/lib/Support/
StreamableMemoryObject.cpp
23
FirstChar(Start),
LastChar
(End) {
24
assert(
LastChar
>= FirstChar && "Invalid start/end range");
29
return
LastChar
- FirstChar;
46
const uint8_t* const
LastChar
;
51
return static_cast<ptrdiff_t>(address) <
LastChar
- FirstChar;
54
return static_cast<ptrdiff_t>(address) ==
LastChar
- FirstChar;
/external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp
44
static int
LastChar
= ' ';
47
while (isspace(
LastChar
))
48
LastChar
= getchar();
50
if (isalpha(
LastChar
)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
51
IdentifierStr =
LastChar
;
52
while (isalnum((
LastChar
= getchar())))
53
IdentifierStr +=
LastChar
;
65
if (isdigit(
LastChar
) ||
LastChar
== '.') { // Number: [0-9.]+
68
NumStr +=
LastChar
;
[
all
...]
/external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp
47
static int
LastChar
= ' ';
50
while (isspace(
LastChar
))
51
LastChar
= getchar();
53
if (isalpha(
LastChar
)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
54
IdentifierStr =
LastChar
;
55
while (isalnum((
LastChar
= getchar())))
56
IdentifierStr +=
LastChar
;
70
if (isdigit(
LastChar
) ||
LastChar
== '.') { // Number: [0-9.]+
73
NumStr +=
LastChar
;
[
all
...]
/external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp
50
static int
LastChar
= ' ';
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
;
74
if (isdigit(
LastChar
) ||
LastChar
== '.') { // Number: [0-9.]+
77
NumStr +=
LastChar
;
[
all
...]
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp
68
static int
LastChar
= ' ';
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
...]
toy.cpp
74
static int
LastChar
= ' ';
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
;
98
if (isdigit(
LastChar
) ||
LastChar
== '.') { // Number: [0-9.]+
101
NumStr +=
LastChar
;
[
all
...]
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp
51
static int
LastChar
= ' ';
54
while (isspace(
LastChar
))
55
LastChar
= getchar();
57
if (isalpha(
LastChar
)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
58
IdentifierStr =
LastChar
;
59
while (isalnum((
LastChar
= getchar())))
60
IdentifierStr +=
LastChar
;
75
if (isdigit(
LastChar
) ||
LastChar
== '.') { // Number: [0-9.]+
78
NumStr +=
LastChar
;
[
all
...]
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp
53
static int
LastChar
= ' ';
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
...]
toy.cpp
53
static int
LastChar
= ' ';
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
...]
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp
98
static int
LastChar
= ' ';
101
while (isspace(
LastChar
))
102
LastChar
= getchar();
104
if (isalpha(
LastChar
)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
105
IdentifierStr =
LastChar
;
106
while (isalnum((
LastChar
= getchar())))
107
IdentifierStr +=
LastChar
;
122
if (isdigit(
LastChar
) ||
LastChar
== '.') { // Number: [0-9.]+
125
NumStr +=
LastChar
;
[
all
...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
importer.cc
206
static inline char
LastChar
(const string& str) {
257
if (!path.empty() &&
LastChar
(path) == '/' &&
258
!result.empty() &&
LastChar
(result) != '/') {
/external/protobuf/src/google/protobuf/compiler/
importer.cc
206
static inline char
LastChar
(const string& str) {
252
if (!path.empty() &&
LastChar
(path) == '/' &&
253
!result.empty() &&
LastChar
(result) != '/') {
/external/clang/lib/Rewrite/Frontend/
InclusionRewriter.cpp
231
char
LastChar
= FromFile.getBufferStart()[WriteTo - 1];
232
if (
LastChar
!= '\n' &&
LastChar
!= '\r')
/cts/suite/cts/deviceTests/browserbench/assets/octane/
pdfjs.js
[
all
...]
Completed in 885 milliseconds