Lines Matching defs:aComponent
541 explicit COMResult(const COMBase &aComponent)
542 : mRC(aComponent.lastRC()) {}
547 COMResult(const COMBaseWithEI &aComponent)
548 : mRC(aComponent.lastRC()),
549 mErrInfo(aComponent.errorInfo())
555 COMResult &operator=(const COMBase &aComponent)
557 mRC = aComponent.lastRC();
564 COMResult &operator=(const COMBaseWithEI &aComponent)
566 mRC = aComponent.lastRC();
567 mErrInfo = aComponent.errorInfo();