Searched refs:m_Value (Results 1 - 13 of 13) sorted by relevance

/frameworks/compile/mclinker/lib/ADT/
H A DStringEntry.cpp28 if (!m_Value.empty())
29 free(const_cast<char*>(m_Value.data()));
35 m_Value = llvm::StringRef(data, pVal.size());
42 m_Value = llvm::StringRef(data, length);
/frameworks/compile/mclinker/include/mcld/ADT/
H A DStringEntry.h37 value_type& value() { return m_Value; }
39 const value_type& value() const { return m_Value; }
43 size_t getValueLength() const { return m_Value.size(); }
45 void setValue(const DataType& pVal) { m_Value = pVal; }
58 DataType m_Value; member in class:mcld::StringEntry
76 value_type& value() { return m_Value; }
78 const value_type& value() const { return m_Value; }
82 size_t getValueLength() const { return m_Value.size(); }
101 llvm::StringRef m_Value; member in class:mcld::StringEntry
H A DHashEntry.h52 ValueType& value() { return m_Value; }
54 const ValueType& value() const { return m_Value; }
56 void setValue(const ValueType& pValue) { m_Value = pValue; }
62 ValueType m_Value; member in class:mcld::HashEntry
/frameworks/compile/mclinker/lib/LD/
H A DLDSymbol.cpp31 LDSymbol::LDSymbol() : m_pResolveInfo(NULL), m_pFragRef(NULL), m_Value(0) {
40 m_Value(pCopy.m_Value) {
46 m_Value = pCopy.m_Value;
/frameworks/compile/mclinker/unittests/
H A DGCFactoryListTraitsTest.h40 unsigned m_Value; member in class:mcldtest::GCFactoryListTraitsTest::Node
43 Node() : m_Init(0), m_Value(0) {}
45 Node(unsigned pInit) : m_Init(pInit), m_Value(pInit) {}
49 inline unsigned getValue() const { return m_Value; }
51 inline void setValue(unsigned pValue) { m_Value = pValue; }
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DAlignFragment.h28 int64_t getValue() const { return m_Value; }
51 int64_t m_Value; member in class:mcld::AlignFragment
H A DFillFragment.h27 int64_t getValue() const { return m_Value; }
40 /// m_Value - Value used for filling bytes
41 int64_t m_Value; member in class:mcld::FillFragment
/frameworks/compile/mclinker/lib/Fragment/
H A DFillFragment.cpp23 m_Value(pValue),
H A DAlignFragment.cpp26 m_Value(pValue),
/frameworks/compile/mclinker/include/mcld/Support/
H A DFileSystem.h50 FileStatus() : m_Value(StatusError) {}
52 explicit FileStatus(FileType v) : m_Value(v) {}
54 void setType(FileType v) { m_Value = v; }
55 FileType type() const { return m_Value; }
58 FileType m_Value; member in class:mcld::sys::fs::FileStatus
/frameworks/compile/mclinker/include/mcld/Script/
H A DOperand.h69 uint64_t value() const { return m_Value; }
71 void setValue(uint64_t pValue) { m_Value = pValue; }
84 uint64_t m_Value; member in class:mcld::SymOperand
100 uint64_t value() const { return m_Value; }
102 void setValue(uint64_t pValue) { m_Value = pValue; }
114 uint64_t m_Value; member in class:mcld::IntOperand
/frameworks/compile/mclinker/include/mcld/LD/
H A DLDSymbol.h101 ValueType value() const { return m_Value; }
119 void setValue(ValueType pValue) { m_Value = pValue; }
138 ValueType m_Value; member in class:mcld::LDSymbol
/frameworks/compile/mclinker/lib/Script/
H A DOperand.cpp36 SymOperand::SymOperand() : Operand(Operand::SYMBOL), m_Value(0) {
40 : Operand(Operand::SYMBOL), m_Name(pName), m_Value(0) {
74 IntOperand::IntOperand() : Operand(Operand::INTEGER), m_Value(0) {
78 : Operand(Operand::INTEGER), m_Value(pValue) {
82 mcld::outs() << m_Value;

Completed in 1866 milliseconds