OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SymOperand
(Results
1 - 2
of
2
) sorted by null
/frameworks/compile/mclinker/include/mcld/Script/
Operand.h
52
/** \class
SymOperand
56
class
SymOperand
: public Operand {
58
friend class Chunk<
SymOperand
, MCLD_SYMBOLS_PER_INPUT>;
59
SymOperand
();
60
explicit
SymOperand
(const std::string& pName);
78
static
SymOperand
* create(const std::string& pName);
79
static void destroy(
SymOperand
*& pOperand);
/frameworks/compile/mclinker/lib/Script/
Operand.cpp
31
//
SymOperand
33
typedef GCFactory<
SymOperand
, MCLD_SYMBOLS_PER_INPUT> SymOperandFactory;
36
SymOperand
::
SymOperand
() : Operand(Operand::SYMBOL), m_Value(0) {
39
SymOperand
::
SymOperand
(const std::string& pName)
43
void
SymOperand
::dump() const {
47
bool
SymOperand
::isDot() const {
52
SymOperand
*
SymOperand
::create(const std::string& pName)
[
all
...]
Completed in 56 milliseconds