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

/frameworks/compile/mclinker/lib/Script/
H A DOperand.cpp1 //===- Operand.cpp --------------------------------------------------------===//
9 #include "mcld/Script/Operand.h"
22 // Operand
24 Operand::Operand(Type pType) : ExprToken(ExprToken::OPERAND), m_Type(pType) { function in class:mcld::Operand
27 Operand::~Operand() {
36 SymOperand::SymOperand() : Operand(Operand::SYMBOL), m_Value(0) {
40 : Operand(Operan
[all...]
/frameworks/compile/mclinker/include/mcld/Script/
H A DOperand.h1 //===- Operand.h ----------------------------------------------------------===//
25 /** \class Operand
29 class Operand : public ExprToken { class in namespace:mcld
34 explicit Operand(Type pType);
35 virtual ~Operand();
56 class SymOperand : public Operand {
73 static bool classof(const Operand* pOperand) {
74 return pOperand->type() == Operand::SYMBOL;
91 class IntOperand : public Operand {
104 static bool classof(const Operand* pOperan
[all...]

Completed in 165 milliseconds