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 DPointerIntPair.h69 PointerTy getPointer() const { function in class:llvm::PointerIntPair
120 assert(Value == reinterpret_cast<intptr_t>(getPointer()) &&
H A DOptional.h113 const T* getPointer() const { assert(hasVal); return reinterpret_cast<const T*>(storage.buffer); } function in class:llvm::Optional
114 T* getPointer() { assert(hasVal); return reinterpret_cast<T*>(storage.buffer); } function in class:llvm::Optional
115 const T& getValue() const LLVM_LVALUE_FUNCTION { assert(hasVal); return *getPointer(); }
116 T& getValue() LLVM_LVALUE_FUNCTION { assert(hasVal); return *getPointer(); }
120 const T* operator->() const { return getPointer(); }
121 T* operator->() { return getPointer(); }
122 const T& operator*() const LLVM_LVALUE_FUNCTION { assert(hasVal); return *getPointer(); }
123 T& operator*() LLVM_LVALUE_FUNCTION { assert(hasVal); return *getPointer(); }
126 T&& getValue() && { assert(hasVal); return std::move(*getPointer()); }
127 T&& operator*() && { assert(hasVal); return std::move(*getPointer()); }
[all...]
H A DSmallBitVector.h88 BitVector *getPointer() const { function in class:llvm::SmallBitVector
153 switchToLarge(new BitVector(*RHS.getPointer()));
164 delete getPointer();
169 return isSmall() ? getSmallSize() == 0 : getPointer()->empty();
174 return isSmall() ? getSmallSize() : getPointer()->size();
187 return getPointer()->count();
194 return getPointer()->any();
201 return getPointer()->all();
208 return getPointer()->none();
224 return getPointer()
[all...]
/external/llvm/lib/Support/
H A DStreamableMemoryObject.cpp35 virtual const uint8_t *getPointer(uint64_t address,
75 const uint8_t *RawMemoryObject::getPointer(uint64_t address, function in class:__anon21304::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/llvm/include/llvm/Analysis/
H A DAliasSetTracker.h205 Value *getPointer() const { return CurNode->getValue(); } function
/external/clang/include/clang/AST/
H A DVTableBuilder.h125 return reinterpret_cast<CXXRecordDecl *>(getPointer());
131 return reinterpret_cast<CXXMethodDecl *>(getPointer());
138 return reinterpret_cast<CXXDestructorDecl *>(getPointer());
144 return reinterpret_cast<CXXMethodDecl *>(getPointer());
178 uintptr_t getPointer() const { function in class:clang::VTableComponent
/external/clang/include/clang/Sema/
H A DDeclSpec.h1357 static DeclaratorChunk getPointer(unsigned TypeQuals, SourceLocation Loc, function in struct:clang::DeclaratorChunk

Completed in 215 milliseconds