OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:m_relocations
(Results
1 - 4
of
4
) sorted by null
/frameworks/compile/mclinker/include/mcld/LD/
RelocData.h
67
const RelocationListType& getRelocationList() const { return
m_Relocations
; }
68
RelocationListType& getRelocationList() { return
m_Relocations
; }
70
size_t size() const { return
m_Relocations
.size(); }
72
bool empty() const { return
m_Relocations
.empty(); }
77
reference front () { return
m_Relocations
.front(); }
78
const_reference front () const { return
m_Relocations
.front(); }
79
reference back () { return
m_Relocations
.back(); }
80
const_reference back () const { return
m_Relocations
.back(); }
82
const_iterator begin () const { return
m_Relocations
.begin(); }
83
iterator begin () { return
m_Relocations
.begin();
[
all
...]
BranchIsland.h
68
{ return
m_Relocations
.begin(); }
71
{ return
m_Relocations
.begin(); }
74
{ return
m_Relocations
.end(); }
77
{ return
m_Relocations
.end(); }
177
///
m_Relocations
- list of relocations created for stubs in this island
178
RelocationListType
m_Relocations
;
/frameworks/compile/mclinker/lib/LD/
RelocData.cpp
52
m_Relocations
.push_back(&pRelocation);
59
Relocation* rel =
m_Relocations
.remove(iter);
BranchIsland.cpp
145
m_Relocations
.push_back(&pReloc);
Completed in 216 milliseconds