OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MCSectionSubPair
(Results
1 - 5
of
5
) sorted by null
/external/llvm/include/llvm/MC/
MCStreamer.h
45
typedef std::pair<const MCSection *, const MCExpr *>
MCSectionSubPair
;
194
SmallVector<std::pair<
MCSectionSubPair
,
MCSectionSubPair
>, 4> SectionStack;
297
MCSectionSubPair
getCurrentSection() const {
300
return
MCSectionSubPair
();
305
MCSectionSubPair
getPreviousSection() const {
308
return
MCSectionSubPair
();
337
MCSectionSubPair
oldSection = SectionStack.pop_back_val().first;
338
MCSectionSubPair
curSection = SectionStack.back().first;
360
MCSectionSubPair
curSection = SectionStack.back().first
[
all
...]
/external/llvm/lib/MC/
MCStreamer.cpp
41
SectionStack.push_back(std::pair<
MCSectionSubPair
,
MCSectionSubPair
>());
55
SectionStack.push_back(std::pair<
MCSectionSubPair
,
MCSectionSubPair
>());
/external/llvm/lib/MC/MCParser/
ELFAsmParser.cpp
538
MCSectionSubPair
CurrentSection = getStreamer().getCurrentSection();
570
MCSectionSubPair
PreviousSection = getStreamer().getPreviousSection();
DarwinAsmParser.cpp
615
MCSectionSubPair
PreviousSection = getStreamer().getPreviousSection();
[
all
...]
/external/llvm/lib/Target/PowerPC/
PPCAsmPrinter.cpp
725
MCSectionSubPair
Current = OutStreamer.getCurrentSection();
[
all
...]
Completed in 106 milliseconds