HomeSort by relevance Sort by last modified time
    Searched defs:PointerType (Results 1 - 8 of 8) 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 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;
227 explicit inline MapBase(PointerType data) : Base(data) {}
228 inline MapBase(PointerType data, Index size) : Base(data, size) {}
229 inline MapBase(PointerType data, Index rows, Index cols) : Base(data, rows, cols) {
    [all...]
  /external/llvm/include/llvm/IR/
DerivedTypes.h 142 /// CompositeType - Common super class of ArrayType, StructType, PointerType
423 /// PointerType - Class to represent pointers.
425 class PointerType : public SequentialType {
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 *get(Type *ElementType, unsigned AddressSpace)
    [all...]
  /external/clang/lib/CodeGen/
CGRTTI.cpp 220 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());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
ListHashSet.h 285 typedef ValueType* PointerType;
296 PointerType get() const { return const_cast<PointerType>(m_iterator.get()); }
298 PointerType operator->() const { return get(); }
328 typedef const ValueType* PointerType;
344 PointerType get() const
349 PointerType operator->() const { return get(); }
397 typedef ValueType* PointerType;
408 PointerType get() const { return const_cast<PointerType>(m_iterator.get());
    [all...]
HashTable.h 77 typedef const ValueType* PointerType;
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;
    [all...]
  /external/llvm/lib/IR/
Type.cpp 219 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 *Type::getInt1PtrTy(LLVMContext &C, unsigned AS)
    [all...]
  /external/clang/include/clang/AST/
Type.h     [all...]

Completed in 320 milliseconds