Searched refs:m_field (Results 1 – 7 of 7) sorted by relevance
/external/jcommander/src/main/java/com/beust/jcommander/ |
D | Parameterized.java | 19 private Field m_field; field in Parameterized 31 m_field = field; in Parameterized() 32 if (m_field != null) { in Parameterized() 33 m_field.setAccessible(true); in Parameterized() 93 return m_field.getType(); in getType() 101 return m_field.getName(); in getName() 115 return m_field.get(object); in get() 149 result = prime * result + ((m_field == null) ? 0 : m_field.hashCode()); in hashCode() 163 if (m_field == null) { in equals() 164 if (other.m_field != null) in equals() [all …]
|
/external/pdfium/xfa/fxbarcode/common/reedsolomon/ |
D | BC_ReedSolomonGF256Poly.cpp | 34 m_field = field; in CBC_ReedSolomonGF256Poly() 38 m_field = nullptr; in CBC_ReedSolomonGF256Poly() 47 m_field = field; in Init() 56 m_coefficients.Copy(*(m_field->GetZero()->GetCoefficients())); in Init() 93 result = CBC_ReedSolomonGF256::AddOrSubtract(m_field->Multiply(a, result), in EvaluateAt() 100 temp->Init(m_field, &m_coefficients, e); in Clone() 135 temp->Init(m_field, &sumDiff, e); in AddOrSubtract() 144 return m_field->GetZero()->Clone(e); in Multiply() 159 m_field->Multiply(aCoeff, other->GetCoefficients()->operator[](j))); in Multiply() 163 temp->Init(m_field, &product, e); in Multiply() [all …]
|
D | BC_ReedSolomon.cpp | 31 m_field = field; in CBC_ReedSolomonEncoder() 34 m_cachedGenerators.Add(new CBC_ReedSolomonGF256Poly(m_field, 1)); in Init() 44 temp.Add(m_field->Exp(d - 1)); in BuildGenerator() 46 temp_poly.Init(m_field, &temp, e); in BuildGenerator() 80 info.Init(m_field, &infoCoefficients, e); in Encode()
|
D | BC_ReedSolomon.h | 28 CBC_ReedSolomonGF256* m_field; variable
|
D | BC_ReedSolomonGF256Poly.h | 43 CBC_ReedSolomonGF256* m_field;
|
/external/testng/src/test/java/test/sample/ |
D | JUnitSample2.java | 13 private String m_field = null; field in JUnitSample2 25 m_field = "foo"; in setUp() 29 assert null != m_field : "setUp() wasn't run"; in testSample2ThatSetUpWasRun()
|
D | JUnitSample1.java | 12 private String m_field = null; field in JUnitSample1 26 m_field = "foo"; in setUp() 31 m_field = null; in tearDown()
|