HomeSort by relevance Sort by last modified time
    Searched defs:SectOperand (Results 1 - 2 of 2) sorted by null

  /frameworks/compile/mclinker/include/mcld/Script/
Operand.h 117 /** \class SectOperand
122 class SectOperand : public Operand {
124 friend class Chunk<SectOperand, MCLD_SECTIONS_PER_INPUT>;
125 SectOperand();
126 explicit SectOperand(const std::string& pName);
143 static SectOperand* create(const std::string& pName);
144 static void destroy(SectOperand*& pOperand);
  /frameworks/compile/mclinker/lib/Script/
Operand.cpp 102 // SectOperand
104 typedef GCFactory<SectOperand, MCLD_SECTIONS_PER_INPUT> SectOperandFactory;
106 SectOperand::SectOperand() : Operand(Operand::SECTION) {
109 SectOperand::SectOperand(const std::string& pName)
113 void SectOperand::dump() const {
117 SectOperand* SectOperand::create(const std::string& pName) {
118 SectOperand* result = g_SectOperandFactory->allocate()
    [all...]

Completed in 92 milliseconds