Lines Matching full:other
31 Program::Program(Program &&other) in Program() argument
32 : allocator_(std::move(other.allocator_)), in Program()
33 binder_(other.binder_), in Program()
34 ast_(other.ast_), in Program()
35 sourceCode_(other.sourceCode_), in Program()
36 sourceFile_(other.sourceFile_), in Program()
37 recordName_(other.recordName_), in Program()
38 formatedRecordName_(other.formatedRecordName_), in Program()
39 kind_(other.kind_), in Program()
40 extension_(other.extension_), in Program()
41 lineIndex_(std::move(other.lineIndex_)), in Program()
42 moduleRecord_(other.moduleRecord_), in Program()
43 typeModuleRecord_(other.typeModuleRecord_), in Program()
44 patchFixHelper_(other.patchFixHelper_), in Program()
45 isDtsFile_(other.isDtsFile_), in Program()
46 hasTLA_(other.hasTLA_), in Program()
47 isDebug_(other.isDebug_), in Program()
48 targetApiVersion_(other.targetApiVersion_), in Program()
49 useDefineSemantic_(other.useDefineSemantic_), in Program()
50 isShared_(other.isShared_), in Program()
51 enableAnnotations_(other.enableAnnotations_), in Program()
52 enableEtsImplements_(other.enableEtsImplements_), in Program()
53 targetApiSubVersion_(other.targetApiSubVersion_), in Program()
54 moduleRecordFieldName_(other.moduleRecordFieldName_), in Program()
55 sourceLang_(other.sourceLang_) in Program()
57 other.binder_ = nullptr; in Program()
58 other.ast_ = nullptr; in Program()
59 other.moduleRecord_ = nullptr; in Program()
60 other.patchFixHelper_ = nullptr; in Program()
61 other.typeModuleRecord_ = nullptr; in Program()
64 Program &Program::operator=(Program &&other) in operator =() argument
66 if (this == &other) { in operator =()
69 allocator_ = std::move(other.allocator_); in operator =()
70 binder_ = other.binder_; in operator =()
71 ast_ = other.ast_; in operator =()
72 sourceCode_ = other.sourceCode_; in operator =()
73 sourceFile_ = other.sourceFile_; in operator =()
74 kind_ = other.kind_; in operator =()
75 extension_ = other.extension_; in operator =()
76 lineIndex_ = other.lineIndex_; in operator =()
77 isDtsFile_ = other.isDtsFile_; in operator =()
78 hasTLA_ = other.hasTLA_; in operator =()
79 isDebug_ = other.isDebug_; in operator =()
80 targetApiVersion_ = other.targetApiVersion_; in operator =()
81 useDefineSemantic_ = other.useDefineSemantic_; in operator =()
82 isShared_ = other.isShared_; in operator =()
83 enableAnnotations_ = other.enableAnnotations_; in operator =()
84 enableEtsImplements_ = other.enableEtsImplements_; in operator =()
85 targetApiSubVersion_ = other.targetApiSubVersion_; in operator =()
86 moduleRecordFieldName_ = other.moduleRecordFieldName_; in operator =()
87 sourceLang_ = other.sourceLang_; in operator =()
89 other.ast_ = nullptr; in operator =()
90 other.binder_ = nullptr; in operator =()
91 other.moduleRecord_ = nullptr; in operator =()
92 other.patchFixHelper_ = nullptr; in operator =()
93 other.typeModuleRecord_ = nullptr; in operator =()