Lines Matching refs:CondRange
2092 ArrayRef<Init *> CondRange, in ProfileCondOpInit() argument
2095 assert(CondRange.size() == ValRange.size() && in ProfileCondOpInit()
2098 ArrayRef<Init *>::iterator Case = CondRange.begin(); in ProfileCondOpInit()
2101 while (Case != CondRange.end()) { in ProfileCondOpInit()
2114 CondOpInit *CondOpInit::get(ArrayRef<Init *> CondRange, in get() argument
2116 assert(CondRange.size() == ValRange.size() && in get()
2120 ProfileCondOpInit(ID, CondRange, ValRange, Ty); in get()
2128 totalSizeToAlloc<Init *>(2 * CondRange.size()), alignof(BitsInit)); in get()
2129 CondOpInit *I = new(Mem) CondOpInit(CondRange.size(), Ty); in get()
2131 std::uninitialized_copy(CondRange.begin(), CondRange.end(), in get()
2134 I->getTrailingObjects<Init *>()+CondRange.size()); in get()