Searched defs:PointerType (Results 1 - 8 of 8) 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 data) : m_data(data), m_rows(RowsAtCompileTime), m_cols(ColsAtCompileTime)
132 inline MapBase(PointerType data, Index size)
143 inline MapBase(PointerType data, Index rows, Index cols)
163 PointerType m_data;
178 typedef typename Base::PointerType PointerType; typedef in class:Eigen::MapBase
227 explicit inline MapBase(PointerType data) : Base(data) {}
228 inline MapBase(PointerType data, Index size) : Base(data, size) {}
229 inline MapBase(PointerType dat
[all...]
/external/llvm/include/llvm/IR/
H A DDerivedTypes.h142 /// CompositeType - Common super class of ArrayType, StructType, PointerType
423 /// PointerType - Class to represent pointers.
425 class PointerType : public SequentialType { class in namespace:llvm
426 PointerType(const PointerType &) LLVM_DELETED_FUNCTION;
427 const PointerType &operator=(const PointerType &) LLVM_DELETED_FUNCTION;
428 explicit PointerType(Type *ElType, unsigned AddrSpace);
430 /// PointerType::get - This constructs a pointer to an object of the specified
432 static PointerType *ge
[all...]
/external/clang/lib/CodeGen/
H A DCGRTTI.cpp220 static bool TypeInfoIsInStandardLibrary(const PointerType *PointerTy) {
245 if (const PointerType *PointerTy = dyn_cast<PointerType>(Ty))
301 if (const PointerType *PointerTy = dyn_cast<PointerType>(Ty))
620 BuildPointerTypeInfo(cast<PointerType>(Ty)->getPointeeType());
957 QualType PointerType = Context.getPointerType(Type); local
960 RTTIBuilder(*this).BuildTypeInfo(PointerType, true);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashTable.h77 typedef const ValueType* PointerType; typedef in class:WTF::HashTableConstIterator
88 HashTableConstIterator(const HashTableType* table, PointerType position, PointerType endPosition)
94 HashTableConstIterator(const HashTableType* table, PointerType position, PointerType endPosition, HashItemKnownGoodTag)
104 PointerType get() const
109 PointerType operator->() const { return get(); }
140 PointerType m_position;
141 PointerType m_endPosition;
152 typedef ValueType* PointerType; typedef in class:WTF::HashTableIterator
[all...]
H A DListHashSet.h285 typedef ValueType* PointerType; typedef in class:WTF::ListHashSetIterator
296 PointerType get() const { return const_cast<PointerType>(m_iterator.get()); }
298 PointerType operator->() const { return get(); }
328 typedef const ValueType* PointerType; typedef in class:WTF::ListHashSetConstIterator
344 PointerType get() const
349 PointerType operator->() const { return get(); }
397 typedef ValueType* PointerType; typedef in class:WTF::ListHashSetReverseIterator
408 PointerType get() const { return const_cast<PointerType>(m_iterato
440 typedef const ValueType* PointerType; typedef in class:WTF::ListHashSetConstReverseIterator
[all...]
/external/llvm/lib/IR/
H A DType.cpp219 return cast<PointerType>(getScalarType())->getAddressSpace();
248 PointerType *Type::getHalfPtrTy(LLVMContext &C, unsigned AS) {
252 PointerType *Type::getFloatPtrTy(LLVMContext &C, unsigned AS) {
256 PointerType *Type::getDoublePtrTy(LLVMContext &C, unsigned AS) {
260 PointerType *Type::getX86_FP80PtrTy(LLVMContext &C, unsigned AS) {
264 PointerType *Type::getFP128PtrTy(LLVMContext &C, unsigned AS) {
268 PointerType *Type::getPPC_FP128PtrTy(LLVMContext &C, unsigned AS) {
272 PointerType *Type::getX86_MMXPtrTy(LLVMContext &C, unsigned AS) {
276 PointerType *Type::getIntNPtrTy(LLVMContext &C, unsigned N, unsigned AS) {
280 PointerType *Typ
750 PointerType::PointerType(Type *E, unsigned AddrSpace) function in class:PointerType
[all...]
/external/clang/include/clang/AST/
H A DType.h1143 /// there is a PointerType that represents 'int*', which, like 'int', is
1144 /// canonical. Finally, there is a PointerType type for 'foo*' whose canonical
1964 /// PointerType - C99 6.7.5.1 - Pointer Declarators.
1966 class PointerType : public Type, public llvm::FoldingSetNode { class in namespace:clang
1969 PointerType(QualType Pointee, QualType CanonicalPtr) : function in class:clang::PointerType
2007 assert(isa<PointerType>(DecayedPointer));
2017 return cast<PointerType>(DecayedPointer)->getPointeeType();
4736 if (const PointerType *PT = t.getAs<PointerType>()) {
4828 return isa<PointerType>(CanonicalTyp
[all...]

Completed in 224 milliseconds