HomeSort by relevance Sort by last modified time
    Searched defs:m_Value (Results 1 - 11 of 11) sorted by null

  /frameworks/compile/mclinker/include/mcld/Fragment/
FillFragment.h 26 int64_t getValue() const { return m_Value; }
38 /// m_Value - Value used for filling bytes
39 int64_t m_Value;
AlignFragment.h 26 int64_t getValue() const { return m_Value; }
47 int64_t m_Value;
  /frameworks/compile/mclinker/include/mcld/ADT/
HashEntry.h 56 { return m_Value; }
59 { return m_Value; }
62 { m_Value = pValue; }
68 ValueType m_Value;
StringEntry.h 40 { return m_Value; }
43 { return m_Value; }
49 { return m_Value.size(); }
52 { m_Value = pVal; }
67 DataType m_Value;
90 { return m_Value; }
93 { return m_Value; }
99 { return m_Value.size(); }
121 llvm::StringRef m_Value;
  /frameworks/compile/mclinker/unittests/
GCFactoryListTraitsTest.h 42 unsigned m_Value;
45 Node() : m_Init(0), m_Value(0) { }
47 Node(unsigned pInit) : m_Init(pInit), m_Value(pInit) { }
54 { return m_Value; }
57 { m_Value = pValue; }
  /frameworks/compile/mclinker/include/mcld/LD/
LDSymbol.h 103 { return m_Value; }
129 { m_Value = pValue; }
147 ValueType m_Value;
  /frameworks/compile/mclinker/include/mcld/Script/
Operand.h 76 uint64_t value() const { return m_Value; }
78 void setValue(uint64_t pValue) { m_Value = pValue; }
92 uint64_t m_Value;
109 uint64_t value() const { return m_Value; }
111 void setValue(uint64_t pValue) { m_Value = pValue; }
124 uint64_t m_Value;
  /frameworks/compile/mclinker/include/mcld/Support/
FileSystem.h 53 : m_Value(StatusError) {}
56 : m_Value(v) {}
58 void setType(FileType v) { m_Value = v; }
59 FileType type() const { return m_Value; }
62 FileType m_Value;
  /external/pdfium/core/include/fxcrt/
fx_xml.h 17 CFX_WideStringL m_Value;
23 m_Value.Empty(pAllocator);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToHTMLStream.java     [all...]
  /external/llvm/include/llvm/IR/
PatternMatch.h 19 // if (match(Exp, m_Or(m_And(m_Value(X), m_ConstantInt(C1)),
20 // m_And(m_Value(Y), m_ConstantInt(C2))))) {
69 /// m_Value() - Match an arbitrary value and ignore it.
70 inline class_match<Value> m_Value() { return class_match<Value>(); }
299 /// m_Value - Match a value, capturing it if we match.
300 inline bind_ty<Value> m_Value(Value *&V) { return V; }
725 /// m_SelectCst<-1, 0>(m_Value(V))
    [all...]

Completed in 111 milliseconds