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

1 2

  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 29 static int LastChar = ' ';
32 while (isspace(LastChar))
33 LastChar = getchar();
35 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
36 IdentifierStr = LastChar;
37 while (isalnum((LastChar = getchar())))
38 IdentifierStr += LastChar;
45 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
48 NumStr += LastChar;
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 34 static int LastChar = ' ';
37 while (isspace(LastChar))
38 LastChar = getchar();
40 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
41 IdentifierStr = LastChar;
42 while (isalnum((LastChar = getchar())))
43 IdentifierStr += LastChar;
50 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
53 NumStr += LastChar;
    [all...]
  /external/llvm/lib/Support/
StreamingMemoryObject.cpp 21 FirstChar(Start), LastChar(End) {
22 assert(LastChar >= FirstChar && "Invalid start/end range");
26 return LastChar - FirstChar;
37 const uint8_t* const LastChar;
42 return static_cast<std::ptrdiff_t>(address) < LastChar - FirstChar;
51 uint64_t BufferSize = LastChar - FirstChar;
  /external/llvm/examples/Kaleidoscope/Chapter4/
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;
62 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
65 NumStr += LastChar;
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 52 static int LastChar = ' ';
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;
80 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
83 NumStr += LastChar;
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 56 static int LastChar = ' ';
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;
88 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
91 NumStr += LastChar;
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 115 int LastChar = getchar();
117 if (LastChar == '\n' || LastChar == '\r') {
122 return LastChar;
127 static int LastChar = ' ';
130 while (isspace(LastChar))
131 LastChar = advance();
135 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
136 IdentifierStr = LastChar;
137 while (isalnum((LastChar = advance()))
    [all...]
  /external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfType1FontDictionary_autogen.h 36 int64_t LastChar(SkPdfNativeDoc* doc);
SkPdfType3FontDictionary_autogen.h 50 int64_t LastChar(SkPdfNativeDoc* doc);
SkPdfType1FontDictionary_autogen.cpp 71 int64_t SkPdfType1FontDictionary::LastChar(SkPdfNativeDoc* doc) {
72 SkPdfNativeObject* ret = get("LastChar", "");
80 return get("LastChar", "") != NULL;
SkPdfType3FontDictionary_autogen.cpp 127 int64_t SkPdfType3FontDictionary::LastChar(SkPdfNativeDoc* doc) {
128 SkPdfNativeObject* ret = get("LastChar", "");
136 return get("LastChar", "") != NULL;
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 59 static int LastChar = ' ';
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;
93 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
96 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 75 static int LastChar = ' ';
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/initial/
toy.cpp 52 static int LastChar = ' ';
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/
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 54 static int LastChar = ' ';
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/MCJIT/complete/
toy.cpp 94 static int LastChar = ' ';
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/Orc/fully_lazy/
toy.cpp 59 static int LastChar = ' ';
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/
toy.cpp 58 static int LastChar = ' ';
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/
toy.cpp 58 static int LastChar = ' ';
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/
toy.cpp 58 static int LastChar = ' ';
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/protobuf/src/google/protobuf/compiler/
importer.cc 221 static inline char LastChar(const string& str) {
272 if (!path.empty() && LastChar(path) == '/' &&
273 !result.empty() && LastChar(result) != '/') {
  /external/skia/experimental/PdfViewer/
SkPdfFont.h 408 fLastChar = (unsigned int)dict->LastChar(parsed);
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 547 char LastChar = TypeString[TypeString.size()-1];
549 if (LastChar != '*')
    [all...]

Completed in 689 milliseconds

1 2