• Home
  • Raw
  • Download

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 typeModuleRecord_(other.typeModuleRecord_), in Program()
45 patchFixHelper_(other.patchFixHelper_), in Program()
46 isDtsFile_(other.isDtsFile_), in Program()
47 hasTLA_(other.hasTLA_), in Program()
48 isDebug_(other.isDebug_), in Program()
49 targetApiVersion_(other.targetApiVersion_), in Program()
50 useDefineSemantic_(other.useDefineSemantic_), in Program()
51 isShared_(other.isShared_), in Program()
52 targetApiSubVersion_(other.targetApiSubVersion_), in Program()
53 moduleRecordFieldName_(other.moduleRecordFieldName_) in Program()
55 other.binder_ = nullptr; in Program()
56 other.ast_ = nullptr; in Program()
57 other.moduleRecord_ = nullptr; in Program()
58 other.patchFixHelper_ = nullptr; in Program()
59 other.typeModuleRecord_ = nullptr; in Program()
62 Program &Program::operator=(Program &&other) in operator =() argument
64 if (this == &other) { in operator =()
67 allocator_ = std::move(other.allocator_); in operator =()
68 binder_ = other.binder_; in operator =()
69 ast_ = other.ast_; in operator =()
70 sourceCode_ = other.sourceCode_; in operator =()
71 sourceFile_ = other.sourceFile_; in operator =()
72 kind_ = other.kind_; in operator =()
73 extension_ = other.extension_; in operator =()
74 lineIndex_ = other.lineIndex_; in operator =()
75 isDtsFile_ = other.isDtsFile_; in operator =()
76 hasTLA_ = other.hasTLA_; in operator =()
77 isDebug_ = other.isDebug_; in operator =()
78 targetApiVersion_ = other.targetApiVersion_; in operator =()
79 useDefineSemantic_ = other.useDefineSemantic_; in operator =()
80 isShared_ = other.isShared_; in operator =()
81 targetApiSubVersion_ = other.targetApiSubVersion_; in operator =()
82 moduleRecordFieldName_ = other.moduleRecordFieldName_; in operator =()
84 other.ast_ = nullptr; in operator =()
85 other.binder_ = nullptr; in operator =()
86 other.moduleRecord_ = nullptr; in operator =()
87 other.patchFixHelper_ = nullptr; in operator =()
88 other.typeModuleRecord_ = nullptr; in operator =()