Lines Matching refs:IsArray
192 uint64_t &ArraySize, QualType &Type, bool &IsArray, in findMostDerivedSubobject() argument
206 IsArray = true; in findMostDerivedSubobject()
220 IsArray = true; in findMostDerivedSubobject()
225 IsArray = false; in findMostDerivedSubobject()
229 IsArray = false; in findMostDerivedSubobject()
290 bool IsArray = false; in SubobjectDesignator() local
294 MostDerivedType, IsArray, FirstIsUnsizedArray); in SubobjectDesignator()
295 MostDerivedIsArrayElement = IsArray; in SubobjectDesignator()
313 bool IsArray = false; in truncate() local
316 Ctx, Base, Entries, MostDerivedArraySize, MostDerivedType, IsArray, in truncate()
318 MostDerivedIsArrayElement = IsArray; in truncate()
363 bool IsArray = MostDerivedPathLength == Entries.size() && in validIndexAdjustments() local
365 uint64_t ArrayIndex = IsArray ? Entries.back().getAsArrayIndex() in validIndexAdjustments()
368 IsArray ? getMostDerivedArraySize() : (uint64_t)1; in validIndexAdjustments()
457 bool IsArray = MostDerivedPathLength == Entries.size() && in adjustIndex() local
459 uint64_t ArrayIndex = IsArray ? Entries.back().getAsArrayIndex() in adjustIndex()
462 IsArray ? getMostDerivedArraySize() : (uint64_t)1; in adjustIndex()
479 if (IsArray) in adjustIndex()
3929 bool IsArray = A.MostDerivedIsArrayElement; in AreElementsOfSameArray() local
3930 if (IsArray && A.MostDerivedPathLength != A.Entries.size()) in AreElementsOfSameArray()
3939 return CommonLength >= A.Entries.size() - IsArray; in AreElementsOfSameArray()