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

  /external/eigen/Eigen/src/Core/
Map.h 112 typedef typename Base::PointerType PointerType;
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; }
MapBase.h 48 PointerType;
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;
227 explicit inline MapBase(PointerType dataPtr) : Base(dataPtr) {}
228 inline MapBase(PointerType dataPtr, Index vecSize) : Base(dataPtr, vecSize) {}
229 inline MapBase(PointerType dataPtr, Index nbRows, Index nbCols) : Base(dataPtr, nbRows, nbCols) {
    [all...]
  /external/llvm/include/llvm/IR/
DerivedTypes.h 142 /// CompositeType - Common super class of ArrayType, StructType, PointerType
443 /// PointerType - Class to represent pointers.
445 class PointerType : public SequentialType {
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 *get(Type *ElementType, unsigned AddressSpace)
    [all...]
  /external/llvm/lib/IR/
Type.cpp 213 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 *Type::getInt1PtrTy(LLVMContext &C, unsigned AS)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
HashTable.h 113 typedef const ValueType* PointerType;
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;
218 HashTableIterator(PointerType pos, PointerType end, const HashTableType* container) : m_iterator(pos, end, container) {
    [all...]
LinkedHashSet.h 342 typedef typename LinkedHashSetType::Value* PointerType;
357 PointerType get() const { return const_cast<PointerType>(m_iterator.get()); }
359 PointerType operator->() const { return get(); }
384 typedef const typename LinkedHashSetType::Value* PointerType;
399 PointerType get() const
405 PointerType operator->() const { return get(); }
ListHashSet.h 443 typedef ValueType* PointerType;
452 PointerType get() const { return const_cast<PointerType>(m_iterator.get()); }
454 PointerType operator->() const { return get(); }
483 typedef const ValueType* PointerType;
498 PointerType get() const
503 PointerType operator->() const { return get(); }
551 typedef ValueType* PointerType;
560 PointerType get() const { return const_cast<PointerType>(m_iterator.get());
    [all...]
  /external/clang/lib/CodeGen/
ItaniumCXXABI.cpp     [all...]
  /external/clang/include/clang/AST/
Type.h     [all...]

Completed in 750 milliseconds