Searched defs:m_Value (Results 1 - 8 of 8) sorted by relevance

/frameworks/compile/mclinker/include/mcld/ADT/
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
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
/frameworks/compile/mclinker/include/mcld/Fragment/
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
H A DAlignFragment.h28 int64_t getValue() const { return m_Value; }
51 int64_t m_Value; member in class:mcld::AlignFragment
/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/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/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/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

Completed in 2697 milliseconds