Home | History | Annotate | Download | only in llvm

Lines Matching refs:ConstantArray

325 /// ConstantArray - Constant Array Declarations
327 class ConstantArray : public Constant {
328 friend struct ConstantCreator<ConstantArray, ArrayType,
330 ConstantArray(const ConstantArray &); // DO NOT IMPLEMENT
332 ConstantArray(ArrayType *T, ArrayRef<Constant *> Val);
334 // ConstantArray accessors
337 /// This method constructs a ConstantArray and initializes it with a text
382 static inline bool classof(const ConstantArray *) { return true; }
389 struct OperandTraits<ConstantArray> :
390 public VariadicOperandTraits<ConstantArray> {
393 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ConstantArray, Constant)