Lines Matching refs:Streamer
69 MCStreamer &Streamer) { in emitBinary() argument
90 Streamer.switchSection(Section); in emitBinary()
95 auto emitLabel = [&Streamer](MCSymbol *Symbol, bool IsGlobal = true) { in emitBinary()
96 Streamer.emitLabel(Symbol); in emitBinary()
98 Streamer.emitSymbolAttribute(Symbol, MCSymbolAttr::MCSA_Global); in emitBinary()
107 auto emitPadding = [&Streamer, &EmitOffset](unsigned Size) { in emitBinary()
110 Streamer.emitFill(Padding, 0); in emitBinary()
122 auto emitFill = [&Streamer, emitDataSize, in emitBinary()
128 Streamer.emitFill(Size, Byte); in emitBinary()
131 auto emitValue = [&BC, &Streamer, emitDataPadding, in emitBinary()
137 Streamer.emitValue(Value, Psize); in emitBinary()
139 Streamer.emitFill(Psize, 0); in emitBinary()
142 auto emitIntValue = [&Streamer, emitDataPadding, emitLabelByName]( in emitBinary()
146 Streamer.emitIntValue(Value, Size); in emitBinary()
149 auto emitString = [&Streamer, emitDataSize, emitLabelByName, in emitBinary()
153 Streamer.emitBytes(Contents); in emitBinary()
188 Streamer.switchSection(TablesSection); in emitBinary()