HomeSort by relevance Sort by last modified time
    Searched refs:LastChar (Results 1 - 25 of 28) 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/examples/Kaleidoscope/Chapter4/
toy.cpp 41 static int LastChar = ' ';
44 while (isspace(LastChar))
45 LastChar = getchar();
47 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
48 IdentifierStr = LastChar;
49 while (isalnum((LastChar = getchar())))
50 IdentifierStr += LastChar;
57 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
60 NumStr += LastChar;
    [all...]
  /external/llvm/lib/Support/
StreamableMemoryObject.cpp 24 FirstChar(Start), LastChar(End) {
25 assert(LastChar >= FirstChar && "Invalid start/end range");
30 return LastChar - FirstChar;
45 const uint8_t* const LastChar;
50 return static_cast<std::ptrdiff_t>(address) < LastChar - FirstChar;
53 return static_cast<std::ptrdiff_t>(address) == LastChar - FirstChar;
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 45 static int LastChar = ' ';
48 while (isspace(LastChar))
49 LastChar = getchar();
51 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
52 IdentifierStr = LastChar;
53 while (isalnum((LastChar = getchar())))
54 IdentifierStr += LastChar;
66 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
69 NumStr += LastChar;
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 48 static int LastChar = ' ';
51 while (isspace(LastChar))
52 LastChar = getchar();
54 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
55 IdentifierStr = LastChar;
56 while (isalnum((LastChar = getchar())))
57 IdentifierStr += LastChar;
71 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
74 NumStr += LastChar;
    [all...]
  /external/chromium_org/third_party/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/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 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/cached/
toy-jit.cpp 69 static int LastChar = ' ';
72 while (isspace(LastChar))
73 LastChar = getchar();
75 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
76 IdentifierStr = LastChar;
77 while (isalnum((LastChar = getchar())))
78 IdentifierStr += LastChar;
93 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
96 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 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...]
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 99 static int LastChar = ' ';
102 while (isspace(LastChar))
103 LastChar = getchar();
105 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
106 IdentifierStr = LastChar;
107 while (isalnum((LastChar = getchar())))
108 IdentifierStr += LastChar;
123 if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
126 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 230 char LastChar = FromFile.getBufferStart()[WriteTo - 1];
231 if (LastChar != '\n' && LastChar != '\r')
  /external/chromium_org/third_party/skia/experimental/PdfViewer/
SkPdfFont.h 408 fLastChar = (unsigned int)dict->LastChar(parsed);

Completed in 182 milliseconds

1 2