HomeSort by relevance Sort by last modified time
    Searched defs:ArrayType (Results 1 - 25 of 38) sorted by null

1 2

  /external/clang/test/Index/
print-type.c 9 typedef int ArrayType[5];
43 // CHECK: TypedefDecl=ArrayType:9:13 (Definition) [type=ArrayType] [typekind=Typedef] [canonicaltype=int [5]] [canonicaltypekind=ConstantArray] [isPOD=1]
print-type.cpp 26 typedef int ArrayType[5];
96 // CHECK: TypedefDecl=ArrayType:26:15 (Definition) [type=ArrayType] [typekind=Typedef] [canonicaltype=int [5]] [canonicaltypekind=ConstantArray] [isPOD=1]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayType/
NewInstanceDebuggee.java 26 package org.apache.harmony.jpda.tests.jdwp.ArrayType;
33 * exercises ArrayType.NewInstance command.
NewInstanceTest.java 26 package org.apache.harmony.jpda.tests.jdwp.ArrayType;
38 * JDWP unit test for ArrayType.NewInstance command.
48 return "org.apache.harmony.jpda.tests.jdwp.ArrayType.NewInstanceDebuggee";
52 * This testcase exercises ArrayType.NewInstance command.
54 * <BR>Creates new instance of array by ArrayType.NewInstance command,
60 "[Lorg/apache/harmony/jpda/tests/jdwp/ArrayType/checkClass;",
63 "[[Lorg/apache/harmony/jpda/tests/jdwp/ArrayType/checkClass;",
104 checkReplyPacket(reply, "ArrayType::NewInstance command");
108 assertNotNull("ArrayType::NewInstance returned null newArray", newArray);
110 logWriter.println("ArrayType.NewInstance: newArray.tag=
    [all...]
  /external/clang/lib/CodeGen/
CGVTT.cpp 48 llvm::ArrayType *ArrayType =
49 llvm::ArrayType::get(Int8PtrTy, Builder.getVTTComponents().size());
90 llvm::Constant *Init = llvm::ConstantArray::get(ArrayType, VTTComponents);
118 llvm::ArrayType *ArrayType =
119 llvm::ArrayType::get(CGM.Int8PtrTy, Builder.getVTTComponents().size());
122 CGM.CreateOrReplaceCXXRuntimeVariable(Name, ArrayType,
CGVTables.cpp 654 llvm::ArrayType *ArrayType = llvm::ArrayType::get(Int8PtrTy, NumComponents);
655 return llvm::ConstantArray::get(ArrayType, Inits);
682 llvm::ArrayType *ArrayType =
683 llvm::ArrayType::get(CGM.Int8PtrTy, VTLayout->getNumVTableComponents());
695 CGM.CreateOrReplaceCXXRuntimeVariable(Name, ArrayType, Linkage);
    [all...]
CGExprAgg.cpp 87 void EmitArrayInit(Address DestPtr, llvm::ArrayType *AType,
323 const ConstantArrayType *ArrayType =
325 assert(ArrayType && "std::initializer_list constructed from non-array");
338 ArrayType->getElementType())) {
358 llvm::Value *Size = Builder.getInt(ArrayType->getSize());
362 ArrayType->getElementType())) {
401 void AggExprEmitter::EmitArrayInit(Address DestPtr, llvm::ArrayType *AType,
    [all...]
ItaniumCXXABI.cpp     [all...]
  /system/tools/aidl/
type_cpp.h 52 const Type* ArrayType() const override { return array_type_.get(); }
90 class ArrayType : public Type {
92 ArrayType(int kind, // from ValidatableType
108 virtual ~ArrayType() = default;
  /external/clang/utils/ABITest/
TypeGen.py 116 class ArrayType(Type):
307 return ArrayType(N, True, self.typeGen.get(T), self.sizes[S])
321 return ArrayType(N, false, self.typeGen.get(T), self.sizes[S])
349 return ArrayType(N, False, self.typeGen.get(T), size)
  /external/compiler-rt/lib/ubsan/
ubsan_handlers.h 76 const TypeDescriptor &ArrayType;
  /external/llvm/include/llvm/IR/
DerivedTypes.h 146 /// CompositeType - Common super class of ArrayType, StructType, PointerType
328 /// ArrayType - Class to represent array types.
330 class ArrayType : public SequentialType {
333 ArrayType(const ArrayType &) = delete;
334 const ArrayType &operator=(const ArrayType &) = delete;
335 ArrayType(Type *ElType, uint64_t NumEl);
338 /// ArrayType::get - This static method is the primary way to construct an
339 /// ArrayType
    [all...]
  /external/llvm/unittests/DebugInfo/PDB/
PDBApiTest.cpp 315 InsertItemWithTag(PDB_SymType::ArrayType);
377 VerifyDyncast<PDBSymbolTypeArray>(PDB_SymType::ArrayType);
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixPower.h 52 typedef Array<Scalar, RowsAtCompileTime, 1, ColMajor, MaxRowsAtCompileTime> ArrayType;
  /external/llvm/lib/IR/
Type.cpp 98 if (auto *ATy = dyn_cast<ArrayType>(this)) {
156 if (auto *ATy = dyn_cast<ArrayType>(this))
202 return cast<ArrayType>(this)->getNumElements();
672 // ArrayType Implementation
675 ArrayType::ArrayType(Type *ElType, uint64_t NumEl)
680 ArrayType *ArrayType::get(Type *ElementType, uint64_t NumElements) {
684 ArrayType *&Entry =
688 Entry = new (pImpl->TypeAllocator) ArrayType(ElementType, NumElements)
    [all...]
  /external/javassist/src/main/javassist/bytecode/
SignatureAttribute.java 548 public static class ArrayType extends ObjectType {
552 public ArrayType(int d, Type comp) {
692 if (t instanceof ArrayType)
814 return new ArrayType(dim, parseType(sig, c));
  /external/v8/src/
types.h 527 class ArrayType : public TypeBase {
534 explicit ArrayType(Type* element) : TypeBase(kArray), element_(element) {}
537 return AsType(new (zone->New(sizeof(ArrayType))) ArrayType(element));
540 static ArrayType* cast(Type* type) {
542 return static_cast<ArrayType*>(FromType(type));
699 return ArrayType::New(element, zone);
799 ArrayType* AsArray() { return ArrayType::cast(this); }
  /external/clang/lib/Sema/
SemaInit.cpp 59 static StringInitFailureKind IsStringInit(Expr *Init, const ArrayType *AT,
125 const ArrayType *arrayType = Context.getAsArrayType(declType);
126 if (!arrayType)
128 return IsStringInit(init, arrayType, Context);
149 static void CheckStringInit(Expr *Str, QualType &DeclT, const ArrayType *AT,
163 ArrayType::Normal, 0);
631 if (const ArrayType *AType = SemaRef.Context.getAsArrayType(ILE->getType())) {
    [all...]
  /external/llvm/include/llvm/DebugInfo/PDB/
PDBTypes.h 287 ArrayType,
  /external/clang/include/clang/AST/
Type.h     [all...]
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdi.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
bcel.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/bcel/2.0.1/
bcel-2.0.1.jar 

Completed in 929 milliseconds

1 2