HomeSort by relevance Sort by last modified time
    Searched defs:ArrayType (Results 1 - 25 of 28) 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];
87 // 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/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKeyPath.h 52 ArrayType
59 ASSERT(m_type == ArrayType);
IDBKey.h 101 ArrayType,
114 ASSERT(m_type == ArrayType);
151 explicit IDBKey(const KeyArray& keyArray) : m_type(ArrayType), m_array(keyArray), m_number(0) { }
  /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);
116 llvm::ArrayType *ArrayType =
117 llvm::ArrayType::get(CGM.Int8PtrTy, Builder.getVTTComponents().size());
120 CGM.CreateOrReplaceCXXRuntimeVariable(Name, ArrayType,
CGVTables.cpp 544 llvm::ArrayType *ArrayType = llvm::ArrayType::get(Int8PtrTy, NumComponents);
545 return llvm::ConstantArray::get(ArrayType, Inits);
573 llvm::ArrayType *ArrayType =
574 llvm::ArrayType::get(CGM.Int8PtrTy, VTLayout->getNumVTableComponents());
586 CGM.CreateOrReplaceCXXRuntimeVariable(Name, ArrayType, Linkage);
CGExprAgg.cpp 86 void EmitArrayInit(llvm::Value *DestPtr, llvm::ArrayType *AType,
318 const ConstantArrayType *ArrayType =
320 assert(ArrayType && "std::initializer_list constructed from non-array");
333 ArrayType->getElementType())) {
354 llvm::Value *Size = Builder.getInt(ArrayType->getSize());
358 ArrayType->getElementType())) {
397 void AggExprEmitter::EmitArrayInit(llvm::Value *DestPtr, llvm::ArrayType *AType,
    [all...]
ItaniumCXXABI.cpp     [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_handlers.h 72 const TypeDescriptor &ArrayType;
  /external/clang/utils/ABITest/
TypeGen.py 112 class ArrayType(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/
DerivedTypes.h 142 /// CompositeType - Common super class of ArrayType, StructType, PointerType
330 /// ArrayType - Class to represent array types.
332 class ArrayType : public SequentialType {
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/sdk/
IndexedDBModel.js 55 ArrayType: "array"
61 ArrayType: "array"
91 key.type = WebInspector.IndexedDBModel.KeyTypes.ArrayType;
131 case WebInspector.IndexedDBModel.KeyPathTypes.ArrayType:
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixPower.h 52 typedef Array<Scalar, RowsAtCompileTime, 1, ColMajor, MaxRowsAtCompileTime> ArrayType;
113 ArrayType logTdiag = m_A.diagonal().array().log();
  /external/llvm/lib/IR/
Type.cpp 99 const ArrayType *ATy = dyn_cast<ArrayType>(this);
159 if (const ArrayType *ATy = dyn_cast<ArrayType>(this))
205 return cast<ArrayType>(this)->getNumElements();
668 // ArrayType Implementation
671 ArrayType::ArrayType(Type *ElType, uint64_t NumEl)
676 ArrayType *ArrayType::get(Type *elementType, uint64_t NumElements)
    [all...]
  /external/chromium_org/v8/src/
types.h 257 class ArrayType;
264 typedef typename Config::template Handle<ArrayType>::type ArrayHandle;
289 return ArrayType::New(element, region);
390 ArrayType* AsArray() { return ArrayType::cast(this); }
693 class TypeImpl<Config>::ArrayType : public StructuralType {
700 ArrayHandle type = Config::template cast<ArrayType>(
712 static ArrayType* cast(TypeImpl* type) {
714 return static_cast<ArrayType*>(type);
    [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/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);
570 if (const ArrayType *AType = SemaRef.Context.getAsArrayType(ILE->getType())) {
    [all...]
  /external/clang/include/clang/AST/
Type.h     [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 
  /external/robolectric/lib/main/
javassist-3.14.0-GA.jar 

Completed in 1093 milliseconds

1 2