Home | History | Annotate | Download | only in Sema

Lines Matching refs:Array

1360   assert(BasePathArray.empty() && "Base path array must be empty!");
2836 // When the field we are copying is an array, create index variables for
2837 // each dimension of the array. We use these index variables to subscript
2838 // the source array, and other clients (e.g., CodeGen) will perform the
2844 while (const ConstantArrayType *Array
2847 // Create the iteration variable for this array index.
2871 // Subscript the array with this iteration variable.
2878 BaseType = Array->getElementType();
2881 // The array subscript expression is an lvalue, which is wrong for moving.
2885 // Construct the entity that we will be initializing. For an array, this
2886 // will be first element in the array, which may require several levels
2887 // of array-subscript entities.
3069 /// array type.
3279 "Incomplete array type is not valid");
4607 // brace-or-equal-initializer, has class type M (or array thereof) and
4661 // const-qualified type (or array thereof) with no
4694 // -- a non-static data member of const non-class type (or array thereof)
4845 // -- for a virtual destructor, lookup of the non-array deallocation function
5246 // -- for each non-static data member of X that is of class type (or array
5253 // type (or array thereof), each such class has a trivial [default
5927 // an array type.
8234 // If we built a call to a trivial 'operator=' while copying an array,
8255 // - if the subobject is an array, each element is assigned, in the
8258 // Construct a loop over the array bounds, e.g.,
8260 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
8262 // that will copy each of the array elements.
8303 // Build the copy/move for an individual element of the array.
8312 // Create the comparison against the array bound.
8326 // Construct the loop that copies all elements of this array.
8346 // If we ended up picking a trivial assignment operator for an array of a
8627 "Incomplete array type is not valid");
9081 "Incomplete array type is not valid");
11312 // The declarator shall not specify a function or an array.