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

/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfType1FontDictionary_autogen.cpp71 int64_t SkPdfType1FontDictionary::LastChar(SkPdfNativeDoc* doc) { function in class:SkPdfType1FontDictionary
72 SkPdfNativeObject* ret = get("LastChar", "");
80 return get("LastChar", "") != NULL;
H A DSkPdfType3FontDictionary_autogen.cpp127 int64_t SkPdfType3FontDictionary::LastChar(SkPdfNativeDoc* doc) { function in class:SkPdfType3FontDictionary
128 SkPdfNativeObject* ret = get("LastChar", "");
136 return get("LastChar", "") != NULL;
/external/llvm/lib/Support/
H A DStreamableMemoryObject.cpp24 FirstChar(Start), LastChar(End) {
25 assert(LastChar >= FirstChar && "Invalid start/end range");
30 return LastChar - FirstChar;
45 const uint8_t* const LastChar; member in class:__anon25918::RawMemoryObject
50 return static_cast<std::ptrdiff_t>(address) < LastChar - FirstChar;
53 return static_cast<std::ptrdiff_t>(address) == LastChar - FirstChar;
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfType1FontDictionary_autogen.cpp71 int64_t SkPdfType1FontDictionary::LastChar(SkPdfNativeDoc* doc) { function in class:SkPdfType1FontDictionary
72 SkPdfNativeObject* ret = get("LastChar", "");
80 return get("LastChar", "") != NULL;
H A DSkPdfType3FontDictionary_autogen.cpp127 int64_t SkPdfType3FontDictionary::LastChar(SkPdfNativeDoc* doc) { function in class:SkPdfType3FontDictionary
128 SkPdfNativeObject* ret = get("LastChar", "");
136 return get("LastChar", "") != NULL;
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dimporter.cc206 static inline char LastChar(const string& str) { function in namespace:google::protobuf::compiler
257 if (!path.empty() && LastChar(path) == '/' &&
258 !result.empty() && LastChar(result) != '/') {
/external/clang/lib/Rewrite/Frontend/
H A DInclusionRewriter.cpp230 char LastChar = FromFile.getBufferStart()[WriteTo - 1]; local
231 if (LastChar != '\n' && LastChar != '\r')
/external/llvm/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp29 static int LastChar = ' '; local
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/protobuf/src/google/protobuf/compiler/
H A Dimporter.cc206 static inline char LastChar(const string& str) { function in namespace:google::protobuf::compiler
252 if (!path.empty() && LastChar(path) == '/' &&
253 !result.empty() && LastChar(result) != '/') {
/external/llvm/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp34 static int LastChar = ' '; local
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/
H A Dtoy.cpp41 static int LastChar = ' '; local
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/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp45 static int LastChar = ' '; local
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/
H A Dtoy.cpp48 static int LastChar = ' '; local
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/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp51 static int LastChar = ' '; local
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/
H A Dtoy-jit.cpp69 static int LastChar = ' '; local
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...]
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.cpp99 static int LastChar = ' '; local
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/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.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...]
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/clang/lib/ARCMigrate/
H A DObjCMT.cpp435 char LastChar = TypeString[TypeString.size()-1]; local
437 if (LastChar != '*')

Completed in 351 milliseconds