Searched defs:IntOperand (Results 1 - 2 of 2) sorted by relevance

/frameworks/compile/mclinker/include/mcld/Script/
H A DOperand.h87 /** \class IntOperand
91 class IntOperand : public Operand { class in namespace:mcld
93 friend class Chunk<IntOperand, MCLD_SYMBOLS_PER_INPUT>;
94 IntOperand();
95 explicit IntOperand(uint64_t pValue);
109 static IntOperand* create(uint64_t pValue);
110 static void destroy(IntOperand*& pOperand);
/frameworks/compile/mclinker/lib/Script/
H A DOperand.cpp69 // IntOperand
71 typedef GCFactory<IntOperand, MCLD_SYMBOLS_PER_INPUT> IntOperandFactory;
74 IntOperand::IntOperand() : Operand(Operand::INTEGER), m_Value(0) { function in class:mcld::IntOperand
77 IntOperand::IntOperand(uint64_t pValue) function in class:mcld::IntOperand
81 void IntOperand::dump() const {
85 IntOperand* IntOperand::create(uint64_t pValue) {
86 IntOperand* resul
[all...]

Completed in 85 milliseconds