HomeSort by relevance Sort by last modified time
    Searched defs:getPointer (Results 1 - 7 of 7) sorted by null

  /external/llvm/include/llvm/Support/
SMLoc.h 33 const char *getPointer() const { return Ptr; }
  /external/llvm/include/llvm/ADT/
Optional.h 108 const T* getPointer() const { assert(hasVal); return reinterpret_cast<const T*>(storage.buffer); }
109 T* getPointer() { assert(hasVal); return reinterpret_cast<T*>(storage.buffer); }
110 const T& getValue() const LLVM_LVALUE_FUNCTION { assert(hasVal); return *getPointer(); }
111 T& getValue() LLVM_LVALUE_FUNCTION { assert(hasVal); return *getPointer(); }
115 const T* operator->() const { return getPointer(); }
116 T* operator->() { return getPointer(); }
117 const T& operator*() const LLVM_LVALUE_FUNCTION { assert(hasVal); return *getPointer(); }
118 T& operator*() LLVM_LVALUE_FUNCTION { assert(hasVal); return *getPointer(); }
121 T&& getValue() && { assert(hasVal); return std::move(*getPointer()); }
122 T&& operator*() && { assert(hasVal); return std::move(*getPointer()); }
    [all...]
SmallBitVector.h 89 BitVector *getPointer() const {
154 switchToLarge(new BitVector(*RHS.getPointer()));
163 delete getPointer();
168 return isSmall() ? getSmallSize() == 0 : getPointer()->empty();
173 return isSmall() ? getSmallSize() : getPointer()->size();
186 return getPointer()->count();
193 return getPointer()->any();
200 return getPointer()->all();
207 return getPointer()->none();
223 return getPointer()->find_first()
    [all...]
  /external/llvm/lib/Support/
StreamableMemoryObject.cpp 35 const uint8_t *getPointer(uint64_t address, uint64_t size) const override;
74 const uint8_t *RawMemoryObject::getPointer(uint64_t address,
  /external/llvm/include/llvm/Analysis/
AliasSetTracker.h 205 Value *getPointer() const { return CurNode->getValue(); }
  /external/clang/include/clang/AST/
VTableBuilder.h 127 return reinterpret_cast<CXXRecordDecl *>(getPointer());
133 return reinterpret_cast<CXXMethodDecl *>(getPointer());
140 return reinterpret_cast<CXXDestructorDecl *>(getPointer());
146 return reinterpret_cast<CXXMethodDecl *>(getPointer());
180 uintptr_t getPointer() const {
  /external/clang/include/clang/Sema/
DeclSpec.h     [all...]

Completed in 509 milliseconds