Lines Matching refs:this

44     this->PushUint8(DW_LNS_copy);  in AddRow()
53 this->PushUint8(DW_LNS_advance_pc); in AdvancePC()
54 this->PushUleb128(static_cast<int>(delta)); in AdvancePC()
65 this->PushUint8(DW_LNS_advance_line); in AdvanceLine()
66 this->PushSleb128(delta); in AdvanceLine()
73 this->PushUint8(DW_LNS_set_file); in SetFile()
74 this->PushUleb128(file); in SetFile()
80 this->PushUint8(DW_LNS_set_column); in SetColumn()
81 this->PushUleb128(column); in SetColumn()
86 this->PushUint8(DW_LNS_negate_stmt); in SetIsStmt()
92 this->PushUint8(DW_LNS_set_basic_block); in SetBasicBlock()
97 this->PushUint8(DW_LNS_set_prologue_end); in SetPrologueEnd()
102 this->PushUint8(DW_LNS_set_epilogue_begin); in SetEpilogueBegin()
107 this->PushUint8(DW_LNS_set_isa); in SetISA()
108 this->PushUleb128(isa); in SetISA()
112 this->PushUint8(0); in EndSequence()
113 this->PushUleb128(1); in EndSequence()
114 this->PushUint8(DW_LNE_end_sequence); in EndSequence()
126 this->PushUint8(0); in SetAddress()
128 this->PushUleb128(1 + 8); in SetAddress()
129 this->PushUint8(DW_LNE_set_address); in SetAddress()
130 patch_locations_.push_back(this->data()->size()); in SetAddress()
131 this->PushUint64(absolute_address); in SetAddress()
133 this->PushUleb128(1 + 4); in SetAddress()
134 this->PushUint8(DW_LNE_set_address); in SetAddress()
135 patch_locations_.push_back(this->data()->size()); in SetAddress()
136 this->PushUint32(absolute_address); in SetAddress()
150 this->PushUint8(0); in DefineFile()
151 this->PushUleb128(size); in DefineFile()
153 this->PushUint8(DW_LNE_define_file); in DefineFile()
154 this->PushString(filename); in DefineFile()
155 this->PushUleb128(directory_index); in DefineFile()
156 this->PushUleb128(modification_time); in DefineFile()
157 this->PushUleb128(file_size); in DefineFile()
187 this->PushUint8(DW_LNS_const_add_pc); in AddRow()
196 this->PushUint8(opcode); // Special opcode. in AddRow()