HomeSort by relevance Sort by last modified time
    Searched refs:StructType (Results 1 - 25 of 175) sorted by null

1 2 3 4 5 6 7

  /external/llvm/unittests/IR/
TypesTest.cpp 17 TEST(TypesTest, StructType) {
21 StructType *Struct = StructType::create(C, "FooBar");
TypeBuilderTest.cpp 186 static StructType *get(LLVMContext &Context) {
193 static StructType *const result = StructType::get(Context, st);
209 static StructType *get(LLVMContext &Context) {
216 static StructType *const result = StructType::get(Context, st);
233 EXPECT_EQ(PointerType::getUnqual(StructType::get(
239 EXPECT_EQ(PointerType::getUnqual(StructType::get(
245 EXPECT_EQ(PointerType::getUnqual(StructType::get(
  /external/deqp/modules/gles31/functional/
es31fUniformLocationTests.hpp 31 class StructType;
41 typedef std::vector<glu::StructType*> StructList;
es31fSSBOLayoutCase.hpp 123 glu::StructType& allocStruct (const char* name);
124 const glu::StructType* findStruct (const char* name) const;
125 void getNamedStructs (std::vector<const glu::StructType*>& structs) const;
136 std::vector<glu::StructType*> m_structs;
  /external/clang/lib/CodeGen/
CGOpenCLRuntime.cpp 44 return llvm::PointerType::get(llvm::StructType::create(
47 return llvm::PointerType::get(llvm::StructType::create(
50 return llvm::PointerType::get(llvm::StructType::create(
53 return llvm::PointerType::get(llvm::StructType::create(
56 return llvm::PointerType::get(llvm::StructType::create(
59 return llvm::PointerType::get(llvm::StructType::create(
64 return llvm::PointerType::get(llvm::StructType::create(
CGRecordLayout.h 20 class StructType;
118 llvm::StructType *CompleteObjectType;
122 llvm::StructType *BaseSubobjectType;
150 CGRecordLayout(llvm::StructType *CompleteObjectType,
151 llvm::StructType *BaseSubobjectType,
161 llvm::StructType *getLLVMType() const {
167 llvm::StructType *getBaseSubobjectLLVMType() const {
183 /// \brief Return llvm::StructType element number that corresponds to the
SanitizerBlacklist.cpp 26 if (llvm::StructType *SGType = dyn_cast<llvm::StructType>(GType)) {
CodeGenTypes.h 30 class StructType;
86 llvm::DenseMap<const Type*, llvm::StructType *> RecordDeclTypes;
230 llvm::StructType *Ty);
234 void addRecordTypeName(const RecordDecl *RD, llvm::StructType *Ty,
240 llvm::StructType *ConvertRecordDeclType(const RecordDecl *TD);
CGOpenMPRuntime.h 31 class StructType;
123 llvm::StructType *IdentTy;
  /external/chromium_org/base/json/
json_value_converter.h 88 template <typename StructType>
93 template<typename StructType>
98 virtual bool ConvertField(const base::Value& value, StructType* obj)
114 template <typename StructType, typename FieldType>
115 class FieldConverter : public FieldConverterBase<StructType> {
118 FieldType StructType::* field,
120 : FieldConverterBase<StructType>(path),
126 const base::Value& value, StructType* dst) const OVERRIDE {
131 FieldType StructType::* field_pointer_;
370 template <class StructType>
    [all...]
  /external/clang/test/Sema/
invalid-decl.c 28 } StructType;
29 void f(StructType *buf) {
  /external/llvm/include/llvm/IR/
TypeFinder.h 24 class StructType;
36 std::vector<StructType*> StructTypes;
45 typedef std::vector<StructType*>::iterator iterator;
46 typedef std::vector<StructType*>::const_iterator const_iterator;
58 StructType *&operator[](unsigned Idx) { return StructTypes[Idx]; }
DerivedTypes.h 142 /// CompositeType - Common super class of ArrayType, StructType, PointerType
167 /// StructType - Class to represent struct types. There are two different kinds
172 /// the StructType::get() forms.
179 /// StructType::create() forms.
187 class StructType : public CompositeType {
188 StructType(const StructType &) LLVM_DELETED_FUNCTION;
189 const StructType &operator=(const StructType &) LLVM_DELETED_FUNCTION;
190 StructType(LLVMContext &C
    [all...]
  /external/llvm/include/llvm/Linker/
Linker.h 22 class StructType;
56 SmallPtrSet<StructType*, 32> IdentifiedStructTypes;
  /art/compiler/llvm/
ir_builder.cc 57 ::llvm::Type* jenv_struct_type = ::llvm::StructType::create(context, "JEnv");
110 ::llvm::StructType* IRBuilder::getShadowFrameTy(uint32_t vreg_size) {
115 CHECK(::llvm::isa< ::llvm::StructType>(type));
116 return static_cast< ::llvm::StructType*>(type);
125 return ::llvm::StructType::create(elem_types, name);
compiler_llvm.h 47 class StructType;
  /external/deqp/framework/opengl/
gluVarType.hpp 36 class StructType;
55 explicit VarType (const StructType* structPtr); //!< Struct type constructor.
68 const StructType* getStructPtr (void) const { DE_ASSERT(isStructType()); return m_data.structPtr; }
110 const StructType* structPtr;
140 class StructType
146 StructType (const char* typeName) : m_typeName(typeName) {}
147 ~StructType (void) {}
162 bool operator== (const StructType& other) const;
163 bool operator!= (const StructType& other) const;
294 DeclareStructTypePtr (const StructType* structPtr_, int indentLevel_) : structPtr(structPtr_), indentLevel(indentLevel_) {
    [all...]
gluVarType.cpp 56 VarType::VarType (const StructType* structPtr)
100 for (StructType::ConstIterator iter = m_data.structPtr->begin(); iter != m_data.structPtr->end(); iter++)
152 // StructType implementation.
154 void StructType::addMember (const char* name, const VarType& type)
159 bool StructType::operator== (const StructType& other) const
164 bool StructType::operator!= (const StructType& other) const
377 const StructType* structPtr = curType->getStructPtr();
412 for (StructType::ConstIterator memberIter = decl.structPtr->begin(); memberIter != decl.structPtr->end(); memberIt (…)
    [all...]
  /external/llvm/lib/IR/
Type.cpp 105 const StructType *STy = dyn_cast<StructType>(this);
165 return cast<StructType>(this)->isSized(Visited);
189 return cast<StructType>(this)->getName();
193 return cast<StructType>(this)->getNumElements();
197 return cast<StructType>(this)->getElementType(N);
394 // StructType Implementation
399 StructType *StructType::get(LLVMContext &Context, ArrayRef<Type*> ETypes,
405 StructType *ST
    [all...]
LLVMContextImpl.h 106 KeyTy(const StructType* ST) :
120 static inline StructType* getEmptyKey() {
121 return DenseMapInfo<StructType*>::getEmptyKey();
123 static inline StructType* getTombstoneKey() {
124 return DenseMapInfo<StructType*>::getTombstoneKey();
131 static unsigned getHashValue(const StructType *ST) {
134 static bool isEqual(const KeyTy& LHS, const StructType *RHS) {
139 static bool isEqual(const StructType *LHS, const StructType *RHS) {
278 typedef ConstantAggrUniqueMap<StructType, ConstantStruct> StructConstantsTy
    [all...]
AsmWriter.h 52 DenseMap<StructType*, unsigned> NumberedTypes;
62 void printStructBody(StructType *Ty, raw_ostream &OS);
  /external/deqp/modules/glshared/
glsUniformBlockCase.hpp 69 class StructType;
78 explicit VarType (const StructType* structPtr);
91 const StructType& getStruct (void) const { return *m_data.structPtr; }
115 const StructType* structPtr;
141 class StructType
147 StructType (const char* typeName) : m_typeName(typeName) {}
148 ~StructType (void) {}
217 StructType& allocStruct (const char* name);
218 const StructType* findStruct (const char* name) const;
219 void getNamedStructs (std::vector<const StructType*>& structs) const
    [all...]
  /frameworks/compile/slang/
slang_rs_export_func.h 33 class StructType;
102 bool checkParameterPacketType(llvm::StructType *ParamTy) const;
  /external/llvm/lib/Transforms/Utils/
ModuleUtils.cpp 31 StructType *EltTy;
36 EltTy = cast<StructType>(ATy->getElementType());
46 EltTy = StructType::get(IRB.getInt32Ty(), PointerType::getUnqual(FnTy),
  /external/llvm/lib/Target/
Target.cpp 124 StructType *STy = unwrap<StructType>(StructTy);
130 StructType *STy = unwrap<StructType>(StructTy);

Completed in 1124 milliseconds

1 2 3 4 5 6 7