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

/external/eigen/Eigen/src/Core/
H A DMap.h112 typedef typename Base::PointerType PointerType; typedef in class:Eigen::Map
115 inline PointerType cast_to_pointer_type(PointerArgType ptr) { return const_cast<PointerType>(ptr); }
117 typedef PointerType PointerArgType;
118 inline PointerType cast_to_pointer_type(PointerArgType ptr) { return ptr; }
H A DMapBase.h48 PointerType; typedef in class:Eigen::MapBase
126 inline MapBase(PointerType dataPtr) : m_data(dataPtr), m_rows(RowsAtCompileTime), m_cols(ColsAtCompileTime)
132 inline MapBase(PointerType dataPtr, Index vecSize)
143 inline MapBase(PointerType dataPtr, Index nbRows, Index nbCols)
163 PointerType m_data;
178 typedef typename Base::PointerType PointerType; typedef in class:Eigen::MapBase
227 explicit inline MapBase(PointerType dataPtr) : Base(dataPtr) {}
228 inline MapBase(PointerType dataPtr, Index vecSize) : Base(dataPtr, vecSize) {}
229 inline MapBase(PointerType dataPt
[all...]
/external/llvm/include/llvm/IR/
H A DDerivedTypes.h142 /// CompositeType - Common super class of ArrayType, StructType, PointerType
443 /// PointerType - Class to represent pointers.
445 class PointerType : public SequentialType { class in namespace:llvm
446 PointerType(const PointerType &) LLVM_DELETED_FUNCTION;
447 const PointerType &operator=(const PointerType &) LLVM_DELETED_FUNCTION;
448 explicit PointerType(Type *ElType, unsigned AddrSpace);
450 /// PointerType::get - This constructs a pointer to an object of the specified
452 static PointerType *ge
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DLinkedHashSet.h342 typedef typename LinkedHashSetType::Value* PointerType; typedef in class:WTF::LinkedHashSetIterator
357 PointerType get() const { return const_cast<PointerType>(m_iterator.get()); }
359 PointerType operator->() const { return get(); }
384 typedef const typename LinkedHashSetType::Value* PointerType; typedef in class:WTF::LinkedHashSetConstIterator
399 PointerType get() const
405 PointerType operator->() const { return get(); }
H A DListHashSet.h443 typedef ValueType* PointerType; typedef in class:WTF::ListHashSetIterator
452 PointerType get() const { return const_cast<PointerType>(m_iterator.get()); }
454 PointerType operator->() const { return get(); }
483 typedef const ValueType* PointerType; typedef in class:WTF::ListHashSetConstIterator
498 PointerType get() const
503 PointerType operator->() const { return get(); }
551 typedef ValueType* PointerType; typedef in class:WTF::ListHashSetReverseIterator
560 PointerType get() const { return const_cast<PointerType>(m_iterato
590 typedef const ValueType* PointerType; typedef in class:WTF::ListHashSetConstReverseIterator
[all...]
H A DHashTable.h113 typedef const ValueType* PointerType; typedef in class:WTF::HashTableConstIterator
124 HashTableConstIterator(PointerType position, PointerType endPosition, const HashTableType* container)
135 HashTableConstIterator(PointerType position, PointerType endPosition, const HashTableType* container, HashItemKnownGoodTag)
198 PointerType m_position;
199 PointerType m_endPosition;
214 typedef ValueType* PointerType; typedef in class:WTF::HashTableIterator
218 HashTableIterator(PointerType pos, PointerType en
[all...]
/external/llvm/lib/IR/
H A DType.cpp213 return cast<PointerType>(getScalarType())->getAddressSpace();
242 PointerType *Type::getHalfPtrTy(LLVMContext &C, unsigned AS) {
246 PointerType *Type::getFloatPtrTy(LLVMContext &C, unsigned AS) {
250 PointerType *Type::getDoublePtrTy(LLVMContext &C, unsigned AS) {
254 PointerType *Type::getX86_FP80PtrTy(LLVMContext &C, unsigned AS) {
258 PointerType *Type::getFP128PtrTy(LLVMContext &C, unsigned AS) {
262 PointerType *Type::getPPC_FP128PtrTy(LLVMContext &C, unsigned AS) {
266 PointerType *Type::getX86_MMXPtrTy(LLVMContext &C, unsigned AS) {
270 PointerType *Type::getIntNPtrTy(LLVMContext &C, unsigned N, unsigned AS) {
274 PointerType *Typ
743 PointerType::PointerType(Type *E, unsigned AddrSpace) function in class:PointerType
[all...]
/external/clang/lib/CodeGen/
H A DItaniumCXXABI.cpp1436 cast<llvm::PointerType>(CGF.ReturnValue->getType())->getElementType();
1565 llvm::PointerType *GuardPtrTy) {
1577 llvm::PointerType *GuardPtrTy) {
1588 llvm::PointerType *GuardPtrTy) {
1635 llvm::PointerType *guardPtrTy = guardTy->getPointerTo();
2181 static bool TypeInfoIsInStandardLibrary(const PointerType *PointerTy) {
2206 if (const PointerType *PointerTy = dyn_cast<PointerType>(Ty))
2262 if (const PointerType *PointerTy = dyn_cast<PointerType>(T
2924 QualType PointerType = getContext().getPointerType(Type); local
[all...]
/external/clang/include/clang/AST/
H A DType.h1142 /// there is a PointerType that represents 'int*', which, like 'int', is
1143 /// canonical. Finally, there is a PointerType type for 'foo*' whose canonical
1967 /// PointerType - C99 6.7.5.1 - Pointer Declarators.
1969 class PointerType : public Type, public llvm::FoldingSetNode { class in namespace:clang
1972 PointerType(QualType Pointee, QualType CanonicalPtr) : function in class:clang::PointerType
2041 assert(isa<PointerType>(getAdjustedType()));
2050 return cast<PointerType>(getDecayedType())->getPointeeType();
4785 if (const PointerType *PT = t.getAs<PointerType>()) {
4877 return isa<PointerType>(CanonicalTyp
[all...]

Completed in 318 milliseconds