OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MCDwarfFiles
(Results
1 - 3
of
3
) sorted by null
/external/llvm/lib/MC/
MCContext.cpp
319
SmallVectorImpl<MCDwarfFile *>&
MCDwarfFiles
= MCDwarfFilesCUMap[CUID];
321
// Make space for this FileNumber in the
MCDwarfFiles
vector if needed.
322
if (FileNumber >=
MCDwarfFiles
.size()) {
323
MCDwarfFiles
.resize(FileNumber + 1);
325
MCDwarfFile *&ExistingFile =
MCDwarfFiles
[FileNumber];
332
MCDwarfFile *&File =
MCDwarfFiles
[FileNumber];
362
// no directories. MCDwarfDirs[] is unlike
MCDwarfFiles
[] in that the
364
// are stored at
MCDwarfFiles
[FileNumber].Name .
368
// Now make the MCDwarfFile entry and place it in the slot in the
MCDwarfFiles
381
SmallVectorImpl<MCDwarfFile *>&
MCDwarfFiles
= MCDwarfFilesCUMap[CUID]
[
all
...]
MCDwarf.cpp
306
const SmallVectorImpl<MCDwarfFile *> &
MCDwarfFiles
=
308
for (unsigned i = 1; i <
MCDwarfFiles
.size(); i++) {
309
MCOS->EmitBytes(
MCDwarfFiles
[i]->getName()); // FileName
312
MCOS->EmitULEB128IntValue(
MCDwarfFiles
[i]->getDirIndex());
640
const SmallVectorImpl<MCDwarfFile *> &
MCDwarfFiles
=
642
MCOS->EmitBytes(
MCDwarfFiles
[1]->getName());
[
all
...]
/external/llvm/lib/MC/MCParser/
AsmParser.cpp
639
const SmallVectorImpl<MCDwarfFile *> &
MCDwarfFiles
=
641
for (unsigned i = 1; i <
MCDwarfFiles
.size(); i++) {
642
if (!
MCDwarfFiles
[i])
[
all
...]
Completed in 37 milliseconds