OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:m_Relocations
(Results
1 - 2
of
2
) sorted by null
/frameworks/compile/mclinker/include/mcld/LD/
RelocData.h
66
const RelocationListType& getRelocationList() const { return
m_Relocations
; }
67
RelocationListType& getRelocationList() { return
m_Relocations
; }
69
size_t size() const { return
m_Relocations
.size(); }
71
bool empty() const { return
m_Relocations
.empty(); }
76
const_reference front() const { return
m_Relocations
.front(); }
77
reference front() { return
m_Relocations
.front(); }
78
const_reference back() const { return
m_Relocations
.back(); }
79
reference back() { return
m_Relocations
.back(); }
81
const_iterator begin() const { return
m_Relocations
.begin(); }
82
iterator begin() { return
m_Relocations
.begin();
[
all
...]
BranchIsland.h
68
reloc_iterator reloc_begin() { return
m_Relocations
.begin(); }
70
const_reloc_iterator reloc_begin() const { return
m_Relocations
.begin(); }
72
reloc_iterator reloc_end() { return
m_Relocations
.end(); }
74
const_reloc_iterator reloc_end() const { return
m_Relocations
.end(); }
169
///
m_Relocations
- list of relocations created for stubs in this island
170
RelocationListType
m_Relocations
;
Completed in 210 milliseconds