HomeSort by relevance Sort by last modified time
    Searched refs:ArrayType (Results 26 - 50 of 222) sorted by null

12 3 4 5 6 7 8 9

  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
MapKeys.java 38 import javax.lang.model.type.ArrayType;
117 public DeclaredType visitArray(ArrayType t, Void p) {
306 public Snippet visitArray(ArrayType t, Snippet p) {
Binding.java 35 import javax.lang.model.type.ArrayType;
185 public Void visitArray(ArrayType t, ImmutableSet.Builder<String> p) {
  /system/tools/aidl/
type_namespace.h 64 virtual bool CanBeArray() const { return ArrayType() != nullptr; }
68 virtual const ValidatableType* ArrayType() const = 0;
449 type = type->ArrayType();
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayType/
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/compiler-rt/lib/ubsan/
ubsan_handlers.h 76 const TypeDescriptor &ArrayType;
  /external/llvm/include/llvm/IR/
TypeBuilder.h 125 static ArrayType *get(LLVMContext &Context) {
126 return ArrayType::get(TypeBuilder<T, cross>::get(Context), N);
132 static ArrayType *get(LLVMContext &Context) {
133 return ArrayType::get(TypeBuilder<T, cross>::get(Context), 0);
Constants.h 33 class ArrayType;
365 ConstantArray(ArrayType *T, ArrayRef<Constant *> Val);
368 static Constant *get(ArrayType *T, ArrayRef<Constant*> V);
371 static Constant *getImpl(ArrayType *T, ArrayRef<Constant *> V);
377 /// getType - Specialize the getType() method to always return an ArrayType,
380 inline ArrayType *getType() const {
381 return cast<ArrayType>(Value::getType());
722 /// getType - Specialize the getType() method to always return an ArrayType,
725 inline ArrayType *getType() const {
726 return cast<ArrayType>(Value::getType())
    [all...]
DataLayout.h 520 ArrayType *ATy = cast<ArrayType>(Ty);
  /external/llvm/unittests/Linker/
LinkModulesTest.cpp 41 AT = ArrayType::get(Type::getInt8PtrTy(Ctx), 3);
67 ArrayType *AT;
113 ArrayType *AT = ArrayType::get(Type::getInt8PtrTy(Ctx), 3);
  /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/llvm/lib/Linker/
IRMover.cpp 169 } else if (ArrayType *DATy = dyn_cast<ArrayType>(DstTy)) {
170 if (DATy->getNumElements() != cast<ArrayType>(SrcTy)->getNumElements())
290 return *Entry = ArrayType::get(ElementTypes[0],
291 cast<ArrayType>(Ty)->getNumElements());
778 ArrayType *DAT = cast<ArrayType>(DGV->getType()->getElementType());
779 ArrayType *SAT = cast<ArrayType>(SGV.getType()->getElementType());
840 unsigned NumElements = cast<ArrayType>(C->getType())->getNumElements()
    [all...]
  /external/clang/lib/CodeGen/
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...]
CGObjCGNU.cpp 207 llvm::GlobalVariable *MakeGlobal(llvm::ArrayType *Ty,
227 llvm::ArrayType *ArrayTy = llvm::ArrayType::get(Ty, V.size());
    [all...]
CGOpenMPRuntime.h 26 class ArrayType;
261 llvm::ArrayType *KmpCriticalNameTy;
    [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp 353 if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
412 if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
477 if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
InstrProfiling.cpp 319 ArrayType *CounterTy = ArrayType::get(Type::getInt64Ty(Ctx), NumCounters);
334 auto *Int16ArrayTy = ArrayType::get(Int16Ty, IPVK_Last+1);
454 ArrayType *ATy = ArrayType::get(i8PTy, MergedVars.size());
SanitizerCoverage.cpp 241 Type *Int32ArrayNTy = ArrayType::get(Int32Ty, N + 1);
257 ArrayType::get(Int8Ty, RoundUpToAlignment(N, kCounterAlignment));
358 Type *Ty = ArrayType::get(IntptrTy, kCacheSize);
401 ArrayType *ArrayOfInt64Ty = ArrayType::get(Int64Ty, Initializers.size());
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp     [all...]
  /external/clang/include/clang/AST/
Type.h     [all...]
  /external/clang/lib/AST/
TypePrinter.cpp 332 if (isa<ArrayType>(T->getPointeeType()))
341 if (isa<ArrayType>(T->getPointeeType()))
365 if (isa<ArrayType>(T->getPointeeTypeAsWritten()))
375 if (isa<ArrayType>(T->getPointeeTypeAsWritten()))
387 if (isa<ArrayType>(T->getPointeeTypeAsWritten()))
397 if (isa<ArrayType>(T->getPointeeTypeAsWritten()))
409 if (isa<ArrayType>(T->getPointeeType()))
424 if (isa<ArrayType>(T->getPointeeType()))
443 if (T->getSizeModifier() == ArrayType::Static)
    [all...]
  /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/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/llvm/lib/DebugInfo/PDB/
PDBSymbol.cpp 82 FACTORY_SYMTAG_CASE(ArrayType, PDBSymbolTypeArray)
  /external/llvm/lib/CodeGen/
StackProtector.cpp 113 if (ArrayType *AT = dyn_cast<ArrayType>(Ty)) {
  /external/llvm/lib/Target/AMDGPU/
AMDGPUOpenCLImageTypeLoweringPass.cpp 356 ImageSizeType = ArrayType::get(Int32Type, 3);
357 ImageFormatType = ArrayType::get(Int32Type, 2);

Completed in 1278 milliseconds

12 3 4 5 6 7 8 9