Home | History | Annotate | Download | only in Object

Lines Matching refs:EC

95                       std::error_code *EC)
104 if ((*EC = MemberSize.getError()))
125 if (std::error_code EC = Size.getError())
126 return EC;
134 if (std::error_code EC = Size.getError())
135 return EC;
147 if (std::error_code EC = NameOrErr.getError())
148 return EC;
162 if (std::error_code EC = Size.getError())
163 return EC;
167 if (std::error_code EC = FullNameOrEr.getError())
168 return EC;
171 if (std::error_code EC = Buf.getError())
172 return EC;
193 std::error_code EC;
194 Child Ret(Parent, NextLoc, &EC);
195 if (EC)
196 return EC;
251 if (std::error_code EC = NameOrErr.getError())
252 return EC;
255 if (std::error_code EC = Buf.getError())
256 return EC;
263 if (std::error_code EC = BuffOrErr.getError())
264 return errorCodeToError(EC);
366 if (auto ec = NameOrErr.getError()) {
367 Err = errorCodeToError(ec);
475 std::error_code EC;
476 Child C(this, Loc, &EC);
477 if (EC) {
479 Err = errorCodeToError(EC);
546 std::error_code EC;
547 Child C(Parent, Loc, &EC);
548 if (EC)
549 return EC;