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

  /external/chromium_org/third_party/WebKit/Source/core/css/
PointerProperties.h 14 enum PointerType {
  /external/chromium_org/third_party/WebKit/public/web/
WebSettings.h 65 enum PointerType {
81 virtual PointerType primaryPointerType() const = 0;
177 virtual void setPrimaryPointerType(PointerType) = 0;
  /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/chromium_org/mojo/public/python/mojo/bindings/
descriptor.py 147 class PointerType(SerializableType):
180 class StringType(PointerType):
189 PointerType.__init__(self, nullable)
243 class BaseArrayType(PointerType):
247 PointerType.__init__(self, nullable)
372 class StructType(PointerType):
376 PointerType.__init__(self)
  /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/chromium_org/third_party/cython/src/Cython/
Shadow.py 183 class PointerType(CythonType):
186 if isinstance(value, (ArrayType, PointerType)):
216 class ArrayType(PointerType):
273 class PointerInstance(PointerType):
  /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 334 typedef typename LinkedHashSetType::Value* PointerType;
349 PointerType get() const { return const_cast<PointerType>(m_iterator.get()); }
351 PointerType operator->() const { return get(); }
376 typedef const typename LinkedHashSetType::Value* PointerType;
391 PointerType get() const
397 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 166 milliseconds