OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
284
typedef ValueType*
PointerType
;
295
PointerType
get() const { return const_cast<
PointerType
>(m_iterator.get()); }
297
PointerType
operator->() const { return get(); }
327
typedef const ValueType*
PointerType
;
343
PointerType
get() const
348
PointerType
operator->() const { return get(); }
396
typedef ValueType*
PointerType
;
407
PointerType
get() const { return const_cast<
PointerType
>(m_iterator.get());
[
all
...]
HashTable.h
78
typedef const ValueType*
PointerType
;
89
HashTableConstIterator(const HashTableType* table,
PointerType
position,
PointerType
endPosition)
95
HashTableConstIterator(const HashTableType* table,
PointerType
position,
PointerType
endPosition, HashItemKnownGoodTag)
105
PointerType
get() const
110
PointerType
operator->() const { return get(); }
141
PointerType
m_position;
142
PointerType
m_endPosition;
153
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 1058 milliseconds