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

  /frameworks/compile/mclinker/include/mcld/Fragment/
FillFragment.h 29 int64_t getValue() const { return m_Value; }
41 /// m_Value - Value used for filling bytes
42 int64_t m_Value;
AlignFragment.h 29 int64_t getValue() const { return m_Value; }
50 int64_t m_Value;
  /frameworks/compile/mclinker/include/mcld/ADT/
HashEntry.h 59 { return m_Value; }
62 { return m_Value; }
65 { m_Value = pValue; }
71 ValueType m_Value;
StringEntry.h 43 { return m_Value; }
46 { return m_Value; }
52 { return m_Value.size(); }
55 { m_Value = pVal; }
70 DataType m_Value;
93 { return m_Value; }
96 { return m_Value; }
102 { return m_Value.size(); }
124 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 101 { return m_Value; }
124 { m_Value = pValue; }
142 ValueType m_Value;
  /frameworks/compile/mclinker/include/mcld/Support/
FileSystem.h 56 : m_Value(StatusError) {}
59 : m_Value(v) {}
61 void setType(FileType v) { m_Value = v; }
62 FileType type() const { return m_Value; }
65 FileType m_Value;
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToHTMLStream.java     [all...]
  /external/llvm/include/llvm/Support/
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; }
635 /// m_SelectCst<-1, 0>(m_Value(V))
    [all...]

Completed in 89 milliseconds