HomeSort by relevance Sort by last modified time
    Searched defs:CurPtr (Results 1 - 25 of 42) sorted by null

1 2

  /external/llvm/include/llvm/MC/MCParser/
AsmLexer.h 30 const char *CurPtr;
  /external/swiftshader/third_party/LLVM/include/llvm/MC/MCParser/
AsmLexer.h 33 const char *CurPtr;
  /external/clang/include/clang/Lex/
PTHLexer.h 30 /// CurPtr - Pointer into current offset of the token buffer where
32 const unsigned char* CurPtr;
86 tok::TokenKind x = (tok::TokenKind)*CurPtr;
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Lex/
PTHLexer.h 30 /// CurPtr - Pointer into current offset of the token buffer where
32 const unsigned char* CurPtr;
86 tok::TokenKind x = (tok::TokenKind)*CurPtr;
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/MC/MCParser/
AsmLexer.h 29 const char *CurPtr = nullptr;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Lex/
PTHLexer.h 30 /// CurPtr - Pointer into current offset of the token buffer where
32 const unsigned char* CurPtr;
86 tok::TokenKind x = (tok::TokenKind)*CurPtr;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/MC/MCParser/
AsmLexer.h 29 const char *CurPtr = nullptr;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Lex/
PTHLexer.h 30 /// CurPtr - Pointer into current offset of the token buffer where
32 const unsigned char* CurPtr;
86 tok::TokenKind x = (tok::TokenKind)*CurPtr;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/MC/MCParser/
AsmLexer.h 29 const char *CurPtr = nullptr;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Lex/
PTHLexer.h 30 /// CurPtr - Pointer into current offset of the token buffer where
32 const unsigned char* CurPtr;
86 tok::TokenKind x = (tok::TokenKind)*CurPtr;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/MCParser/
AsmLexer.h 29 const char *CurPtr = nullptr;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Lex/
PTHLexer.h 30 /// CurPtr - Pointer into current offset of the token buffer where
32 const unsigned char* CurPtr;
86 tok::TokenKind x = (tok::TokenKind)*CurPtr;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/MC/MCParser/
AsmLexer.h 29 const char *CurPtr = nullptr;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Lex/
PTHLexer.h 30 /// CurPtr - Pointer into current offset of the token buffer where
32 const unsigned char* CurPtr;
86 tok::TokenKind x = (tok::TokenKind)*CurPtr;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/MC/MCParser/
AsmLexer.h 29 const char *CurPtr = nullptr;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Lex/
PTHLexer.h 30 /// CurPtr - Pointer into current offset of the token buffer where
32 const unsigned char* CurPtr;
86 tok::TokenKind x = (tok::TokenKind)*CurPtr;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/MC/MCParser/
AsmLexer.h 29 const char *CurPtr = nullptr;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Lex/
PTHLexer.h 30 /// CurPtr - Pointer into current offset of the token buffer where
32 const unsigned char* CurPtr;
86 tok::TokenKind x = (tok::TokenKind)*CurPtr;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/MCParser/
AsmLexer.h 29 const char *CurPtr = nullptr;
  /external/llvm/lib/AsmParser/
LLLexer.h 30 const char *CurPtr;
  /external/swiftshader/third_party/LLVM/lib/AsmParser/
LLLexer.h 30 const char *CurPtr;
  /external/clang/lib/AST/
CommentLexer.cpp 242 const char *CurPtr = BufferPtr;
243 while (CurPtr != BufferEnd) {
244 while (!isVerticalWhitespace(*CurPtr)) {
245 CurPtr++;
246 if (CurPtr == BufferEnd)
250 const char *EscapePtr = CurPtr - 1;
258 CurPtr = skipNewline(CurPtr, BufferEnd);
260 return CurPtr; // Not an escaped newline.
  /external/llvm/tools/llvm-mcmarkup/
llvm-mcmarkup.cpp 37 StringRef::const_iterator CurPtr;
41 : Start(Source.begin()), CurPtr(Source.begin()), End(Source.end()) {}
43 bool isEOF() { return CurPtr == End; }
45 if (CurPtr == End) return EOF;
46 return *CurPtr++;
49 if (CurPtr == End) return EOF;
50 return *CurPtr;
52 StringRef::const_iterator getPosition() const { return CurPtr; }
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
NativeFormatting.cpp 22 char *CurPtr = EndPtr;
25 *--CurPtr = '0' + char(Value % 10);
28 return EndPtr - CurPtr;
152 char *CurPtr = EndPtr;
155 *--CurPtr = hexdigit(x, !Upper);
  /external/llvm/include/llvm/Support/
Allocator.h 145 : CurPtr(nullptr), End(nullptr), BytesAllocated(0), Allocator() {}
148 : CurPtr(nullptr), End(nullptr), BytesAllocated(0),
154 : CurPtr(Old.CurPtr), End(Old.End), Slabs(std::move(Old.Slabs)),
158 Old.CurPtr = Old.End = nullptr;
173 CurPtr = RHS.CurPtr;
180 RHS.CurPtr = RHS.End = nullptr;
199 CurPtr = (char *)Slabs.front();
200 End = CurPtr + SlabSize
    [all...]

Completed in 767 milliseconds

1 2