HomeSort by relevance Sort by last modified time
    Searched full:arraytype (Results 1 - 25 of 640) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/tools/hidl/
ArrayType.cpp 17 #include "ArrayType.h"
26 ArrayType::ArrayType(ArrayType *srcArray, ConstantExpression *size)
32 ArrayType::ArrayType(Type *elementType, ConstantExpression *size)
37 void ArrayType::prependDimension(ConstantExpression *size) {
41 void ArrayType::appendDimension(ConstantExpression *size) {
45 size_t ArrayType::countDimensions() const {
49 void ArrayType::addNamedTypesToSet(std::set<const FQName> &set) const
    [all...]
ArrayType.h 29 struct ArrayType : public Type {
31 ArrayType(ArrayType *srcArray, ConstantExpression *size);
33 ArrayType(Type *elementType, ConstantExpression *size);
140 DISALLOW_COPY_AND_ASSIGN(ArrayType);
  /external/eigen/unsupported/test/
special_functions.cpp 27 template<typename ArrayType> void array_special_functions()
31 typedef typename ArrayType::Scalar Scalar;
42 ArrayType m1 = ArrayType::Random(rows,cols);
58 ArrayType m1 = ArrayType::Random(rows,cols);
59 ArrayType m2 = ArrayType::Random(rows,cols);
67 ArrayType a = m1.abs() + 2;
68 ArrayType x = m2.abs() + 2
    [all...]
  /external/eigen/test/
array.cpp 12 template<typename ArrayType> void array(const ArrayType& m)
14 typedef typename ArrayType::Index Index;
15 typedef typename ArrayType::Scalar Scalar;
16 typedef typename ArrayType::RealScalar RealScalar;
17 typedef Array<Scalar, ArrayType::RowsAtCompileTime, 1> ColVectorType;
18 typedef Array<Scalar, 1, ArrayType::ColsAtCompileTime> RowVectorType;
23 ArrayType m1 = ArrayType::Random(rows, cols),
24 m2 = ArrayType::Random(rows, cols)
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/tests/
array_common_test.h 20 template <template <typename...> class ArrayType>
25 ArrayType<char> array0;
32 ArrayType<char> array1(nullptr);
42 ArrayType<char> array(8);
50 // Tests that basic ArrayType<bool> operations work.
52 ArrayType<bool> array(64);
60 // Tests that ArrayType<ScopedMessagePipeHandle> supports transferring
64 ArrayType<ScopedMessagePipeHandle> handles(2);
71 ArrayType<ScopedMessagePipeHandle> handles2 = std::move(handles);
80 // Tests that ArrayType<ScopedMessagePipeHandle> supports closing handles
    [all...]
map_common_test.h 50 using ArrayType = Array<T>;
57 using ArrayType = WTFArray<T>;
66 using ArrayType = typename TypeTraits<MapType>::template ArrayType<T>;
120 MapType<StringType, ArrayType<int32_t>> map;
124 ArrayType<int32_t> array(1);
139 MapType<StringType, ArrayType<StringType>> m;
141 ArrayType<StringType> s(1);
146 MapType<StringType, ArrayType<StringType>> m2 = m.Clone();
159 using UserType = ArrayType<MapType<int32_t, int8_t>>
    [all...]
  /external/llvm/test/Transforms/GlobalOpt/
2005-09-27-Crash.ll 2 %RPyString = type { i32, %arraytype.Char }
3 %arraytype.Char = type { i32, [0 x i8] }
4 %arraytype.Signed = type { i32, [0 x i32] }
6 %structtype.test = type { i32, %arraytype.Signed }
  /external/swiftshader/third_party/LLVM/test/Transforms/GlobalOpt/
2005-09-27-Crash.ll 2 %RPyString = type { i32, %arraytype.Char }
3 %arraytype.Char = type { i32, [0 x i8] }
4 %arraytype.Signed = type { i32, [0 x i32] }
6 %structtype.test = type { i32, %arraytype.Signed }
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
ArrayData.java 42 private final Constant arrayType;
61 Constant arrayType) {
78 this.arrayType = arrayType;
80 if (arrayType == CstType.BYTE_ARRAY ||
81 arrayType == CstType.BOOLEAN_ARRAY) {
83 } else if (arrayType == CstType.SHORT_ARRAY ||
84 arrayType == CstType.CHAR_ARRAY) {
86 } else if (arrayType == CstType.INT_ARRAY ||
87 arrayType == CstType.FLOAT_ARRAY)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
ArrayData.java 44 private final Constant arrayType;
63 Constant arrayType) {
80 this.arrayType = arrayType;
82 if (arrayType == CstType.BYTE_ARRAY ||
83 arrayType == CstType.BOOLEAN_ARRAY) {
85 } else if (arrayType == CstType.SHORT_ARRAY ||
86 arrayType == CstType.CHAR_ARRAY) {
88 } else if (arrayType == CstType.INT_ARRAY ||
89 arrayType == CstType.FLOAT_ARRAY)
    [all...]
  /external/javassist/src/main/javassist/compiler/ast/
NewExpr.java 26 protected int arrayType;
31 arrayType = CLASS;
37 arrayType = type;
56 public int getArrayType() { return arrayType; }
  /prebuilts/go/darwin-x86/src/cmd/gofmt/testdata/
rewrite2.golden 9 // Slices have nil Len values in the corresponding ast.ArrayType
rewrite2.input 9 // Slices have nil Len values in the corresponding ast.ArrayType
  /prebuilts/go/linux-x86/src/cmd/gofmt/testdata/
rewrite2.golden 9 // Slices have nil Len values in the corresponding ast.ArrayType
rewrite2.input 9 // Slices have nil Len values in the corresponding ast.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.
49 return "org.apache.harmony.jpda.tests.jdwp.ArrayType.NewInstanceDebuggee";
53 * This testcase exercises ArrayType.NewInstance command.
55 * <BR>Creates new instance of array by ArrayType.NewInstance command,
61 "[Lorg/apache/harmony/jpda/tests/jdwp/ArrayType/checkClass;",
64 "[[Lorg/apache/harmony/jpda/tests/jdwp/ArrayType/checkClass;",
105 checkReplyPacket(reply, "ArrayType::NewInstance command");
109 assertNotNull("ArrayType::NewInstance returned null newArray", newArray);
111 logWriter.println("ArrayType.NewInstance: newArray.tag=
    [all...]
NewInstanceDebuggee.java 26 package org.apache.harmony.jpda.tests.jdwp.ArrayType;
33 * exercises ArrayType.NewInstance command.
  /external/llvm/include/llvm/DebugInfo/CodeView/
ByteStream.h 27 ArrayRef<uint8_t>>::type ArrayType;
31 explicit ByteStream(ArrayType Data) : Data(Data) {}
49 ArrayType Data;
  /external/proguard/src/proguard/classfile/instruction/
InstructionUtil.java 35 * @param arrayType <code>InstructionConstants.ARRAY_T_BOOLEAN</code>,
52 public static char internalTypeFromArrayType(byte arrayType)
54 switch (arrayType)
64 default: throw new IllegalArgumentException("Unknown array type ["+arrayType+"]");
  /external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
SmaliArrayTypeElement.java 61 PsiArrayType arrayType = new PsiArrayType(baseType.getType());
64 arrayType = new PsiArrayType(arrayType);
67 return arrayType;
  /external/junit/src/main/java/org/junit/runners/model/
NoGenericTypeParametersValidator.java 55 GenericArrayType arrayType, List<Throwable> errors) {
56 validateNoTypeParameterOnType(arrayType.getGenericComponentType(), errors);
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
FillArrayDataInsn.java 40 private final Constant arrayType;
62 this.arrayType = cst;
85 return arrayType;
105 initValues, arrayType);
114 sources, initValues, arrayType);
  /dalvik/dx/src/com/android/dx/rop/code/
FillArrayDataInsn.java 39 private final Constant arrayType;
61 this.arrayType = cst;
84 return arrayType;
104 initValues, arrayType);
113 sources, initValues, arrayType);
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
AnnotationTypeUtil.java 25 import javax.lang.model.type.ArrayType;
77 final ArrayType arrayType = (ArrayType) typeMirror;
78 final String componentType = getDescription(arrayType.getComponentType());
  /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,

Completed in 1802 milliseconds

1 2 3 4 5 6 7 8 91011>>