OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FileNum
(Results
1 - 3
of
3
) sorted by null
/external/llvm/include/llvm/MC/
MCDwarf.h
76
//
FileNum
- the file number.
77
unsigned
FileNum
;
100
MCDwarfLoc(unsigned
fileNum
, unsigned line, unsigned column, unsigned flags,
102
:
FileNum
(
fileNum
), Line(line), Column(column), Flags(flags), Isa(isa),
109
/// getFileNum - Get the
FileNum
of this MCDwarfLoc.
110
unsigned getFileNum() const { return
FileNum
; }
127
/// setFileNum - Set the
FileNum
of this MCDwarfLoc.
128
void setFileNum(unsigned
fileNum
) {
FileNum
= fileNum;
[
all
...]
MCContext.h
347
void setCurrentDwarfLoc(unsigned
FileNum
, unsigned Line, unsigned Column,
350
CurrentDwarfLoc.setFileNum(
FileNum
);
/external/llvm/lib/MC/
MCDwarf.cpp
135
unsigned
FileNum
= 1;
147
if (
FileNum
!= it->getFileNum()) {
148
FileNum
= it->getFileNum();
150
MCOS->EmitULEB128IntValue(
FileNum
);
[
all
...]
Completed in 278 milliseconds