Lines Matching full:other
32 Program::Program(Program &&other) in Program() argument
33 : allocator_(std::move(other.allocator_)), in Program()
34 binder_(other.binder_), in Program()
35 ast_(other.ast_), in Program()
36 sourceCode_(other.sourceCode_), in Program()
37 sourceFile_(other.sourceFile_), in Program()
38 recordName_(other.recordName_), in Program()
39 formatedRecordName_(other.formatedRecordName_), in Program()
40 kind_(other.kind_), in Program()
41 extension_(other.extension_), in Program()
42 lineIndex_(other.lineIndex_), in Program()
43 moduleRecord_(other.moduleRecord_), in Program()
44 hotfixHelper_(other.hotfixHelper_), in Program()
45 isDtsFile_(other.isDtsFile_) in Program()
47 other.binder_ = nullptr; in Program()
48 other.ast_ = nullptr; in Program()
51 Program &Program::operator=(Program &&other) in operator =() argument
53 allocator_ = std::move(other.allocator_); in operator =()
54 binder_ = other.binder_; in operator =()
55 ast_ = other.ast_; in operator =()
56 sourceCode_ = other.sourceCode_; in operator =()
57 sourceFile_ = other.sourceFile_; in operator =()
58 kind_ = other.kind_; in operator =()
59 extension_ = other.extension_; in operator =()
60 lineIndex_ = other.lineIndex_; in operator =()
61 isDtsFile_ = other.isDtsFile_; in operator =()
63 other.ast_ = nullptr; in operator =()