Searched defs:getPointer (Results 1 - 9 of 9) sorted by relevance

/external/llvm/include/llvm/Support/
H A DSMLoc.h33 const char *getPointer() const { return Ptr; } function in class:llvm::SMLoc
/external/llvm/include/llvm/ADT/
H A DOptional.h108 const T* getPointer() const { assert(hasVal); return reinterpret_cast<const T*>(storage.buffer); } function in class:llvm::Optional
109 T* getPointer() { assert(hasVal); return reinterpret_cast<T*>(storage.buffer); } function in class:llvm::Optional
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...]
H A DSmallBitVector.h89 BitVector *getPointer() const { function in class:llvm::SmallBitVector
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()
[all...]
/external/llvm/lib/Support/
H A DStreamableMemoryObject.cpp35 const uint8_t *getPointer(uint64_t address, uint64_t size) const override;
74 const uint8_t *RawMemoryObject::getPointer(uint64_t address, function in class:__anon25082::RawMemoryObject
/external/chromium_org/third_party/icu/source/common/
H A Dpropname.h194 inline const int8_t* getPointer(Offset o) const { function in class:PropertyAliases
199 return o ? getPointer(o) : NULL;
385 const char* name = (const char*) data.getPointer(n[i]);
/external/pdfium/core/src/fxcodec/jbig2/
H A DJBig2_BitStream.h65 FX_BYTE *getPointer();
304 inline FX_BYTE *CJBig2_BitStream::getPointer() function in class:CJBig2_BitStream
/external/llvm/include/llvm/Analysis/
H A DAliasSetTracker.h205 Value *getPointer() const { return CurNode->getValue(); } function
/external/clang/include/clang/AST/
H A DVTableBuilder.h127 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 { function in class:clang::VTableComponent
/external/clang/include/clang/Sema/
H A DDeclSpec.h1376 static DeclaratorChunk getPointer(unsigned TypeQuals, SourceLocation Loc, function in struct:clang::DeclaratorChunk

Completed in 253 milliseconds