Searched defs:ArrayType (Results 1 - 19 of 19) sorted by relevance

/external/clang/test/Index/
H A Dprint-type.c9 typedef int ArrayType[5]; typedef
41 // CHECK: TypedefDecl=ArrayType:9:13 (Definition) [type=ArrayType] [typekind=Typedef] [canonicaltype=int [5]] [canonicaltypekind=ConstantArray] [isPOD=1]
H A Dprint-type.cpp20 typedef int ArrayType[5]; typedef in struct:outer::inner::Bar
67 // CHECK: TypedefDecl=ArrayType:20:15 (Definition) [type=ArrayType] [typekind=Typedef] [canonicaltype=int [5]] [canonicaltypekind=ConstantArray] [isPOD=1]
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBKeyPath.h52 ArrayType enumerator in enum:WebCore::IDBKeyPath::Type
59 ASSERT(m_type == ArrayType);
H A DIDBKey.h100 ArrayType, enumerator in enum:WebCore::IDBKey::Type
112 ASSERT(m_type == ArrayType);
152 IDBKey(const KeyArray& keyArray, size_t arraySize) : m_type(ArrayType), m_array(keyArray), m_number(0), m_sizeEstimate(OverheadSize + arraySize) { }
/external/clang/lib/CodeGen/
H A DCGVTT.cpp47 llvm::ArrayType *ArrayType = local
48 llvm::ArrayType::get(Int8PtrTy, Builder.getVTTComponents().size());
88 llvm::Constant *Init = llvm::ConstantArray::get(ArrayType, VTTComponents);
113 llvm::ArrayType *ArrayType = local
114 llvm::ArrayType::get(CGM.Int8PtrTy, Builder.getVTTComponents().size());
117 CGM.CreateOrReplaceCXXRuntimeVariable(Name, ArrayType,
H A DCGVTables.cpp631 llvm::ArrayType *ArrayType = llvm::ArrayType::get(Int8PtrTy, NumComponents); local
632 return llvm::ConstantArray::get(ArrayType, Inits);
649 llvm::ArrayType *ArrayType = local
650 llvm::ArrayType::get(CGM.Int8PtrTy,
654 CGM.CreateOrReplaceCXXRuntimeVariable(Name, ArrayType,
705 llvm::ArrayType *ArrayType local
[all...]
H A DCGExprAgg.cpp86 void EmitArrayInit(llvm::Value *DestPtr, llvm::ArrayType *AType,
318 const ConstantArrayType *ArrayType = local
320 assert(ArrayType && "std::initializer_list constructed from non-array");
333 ArrayType->getElementType())) {
354 llvm::Value *Size = Builder.getInt(ArrayType->getSize());
358 ArrayType->getElementType())) {
374 void AggExprEmitter::EmitArrayInit(llvm::Value *DestPtr, llvm::ArrayType *AType,
1109 llvm::ArrayType *AType =
1110 cast<llvm::ArrayType>(APType->getElementType());
/external/compiler-rt/lib/ubsan/
H A Dubsan_handlers.h72 const TypeDescriptor &ArrayType; member in struct:__ubsan::OutOfBoundsData
/external/clang/utils/ABITest/
H A DTypeGen.py112 class ArrayType(Type): class in inherits:Type
303 return ArrayType(N, True, self.typeGen.get(T), self.sizes[S])
317 return ArrayType(N, false, self.typeGen.get(T), self.sizes[S])
345 return ArrayType(N, False, self.typeGen.get(T), size)
/external/llvm/include/llvm/IR/
H A DDerivedTypes.h142 /// CompositeType - Common super class of ArrayType, StructType, PointerType
330 /// ArrayType - Class to represent array types.
332 class ArrayType : public SequentialType { class in namespace:llvm
335 ArrayType(const ArrayType &) LLVM_DELETED_FUNCTION;
336 const ArrayType &operator=(const ArrayType &) LLVM_DELETED_FUNCTION;
337 ArrayType(Type *ElType, uint64_t NumEl);
339 /// ArrayType::get - This static method is the primary way to construct an
340 /// ArrayType
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DIndexedDBModel.js53 ArrayType: "array"
59 ArrayType: "array"
85 key.type = WebInspector.IndexedDBModel.KeyTypes.ArrayType;
121 case WebInspector.IndexedDBModel.KeyPathTypes.ArrayType:
/external/javassist/src/main/javassist/bytecode/
H A DSignatureAttribute.java548 public static class ArrayType extends ObjectType { class in class:SignatureAttribute
552 public ArrayType(int d, Type comp) { method in class:SignatureAttribute.ArrayType
692 if (t instanceof ArrayType)
814 return new ArrayType(dim, parseType(sig, c));
/external/llvm/lib/IR/
H A DType.cpp99 const ArrayType *ATy = dyn_cast<ArrayType>(this);
162 if (const ArrayType *ATy = dyn_cast<ArrayType>(this))
211 return cast<ArrayType>(this)->getNumElements();
675 // ArrayType Implementation
678 ArrayType::ArrayType(Type *ElType, uint64_t NumEl) function in class:ArrayType
683 ArrayType *ArrayType
[all...]
/external/clang/lib/Sema/
H A DSemaInit.cpp59 static StringInitFailureKind IsStringInit(Expr *Init, const ArrayType *AT,
125 const ArrayType *arrayType = Context.getAsArrayType(declType);
149 static void CheckStringInit(Expr *Str, QualType &DeclT, const ArrayType *AT,
163 ArrayType::Normal, 0);
484 if (const ArrayType *AType = SemaRef.Context.getAsArrayType(ILE->getType())) {
844 if (const ArrayType *arrayType = SemaRef.Context.getAsArrayType(ElemType)) {
1228 const ArrayType *arrayType = SemaRef.Context.getAsArrayType(DeclType);
1338 ArrayType::Normal, 0);
2014 const ArrayType *AT = SemaRef.Context.getAsArrayType(CurrentObjectType);
2255 if (const ArrayType *ATyp
2973 QualType ArrayType = S.Context.getConstantArrayType( local
[all...]
/external/clang/include/clang/AST/
H A DType.h1224 friend class ArrayType;
1234 /// Actually an ArrayType::ArraySizeModifier.
1674 /// NOTE: getAs*ArrayType are methods on ASTContext.
1711 const ArrayType *getAsArrayTypeUnsafe() const;
1723 const ArrayType *castAsArrayTypeUnsafe() const;
2202 /// ArrayType - C99 6.7.5.2 - Array Declarators.
2204 class ArrayType : public Type, public llvm::FoldingSetNode { class in namespace:clang
2223 ArrayType(TypeClass tc, QualType et, QualType can, function in class:clang::ArrayType
2261 class ConstantArrayType : public ArrayType {
2266 : ArrayType(ConstantArra
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
H A Djdi.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...

Completed in 652 milliseconds