Home
last modified time | relevance | path

Searched refs:m_values (Results 1 – 25 of 36) sorted by relevance

12

/external/emma/core/java12/com/vladium/util/
DIntVector.java27 m_values = new int [initCapacity]; in IntVector()
37 return m_values [index]; in get()
51 for (int i = 0; i < size; ++ i) result [i] = m_values [i]; in values()
55 System.arraycopy (m_values, 0, result, 0, size); in values()
81 _clone.m_values = new int [m_values.length]; in clone()
82 final int [] _clone_values = _clone.m_values; in clone()
83 for (int i = 0; i < m_size; ++ i) _clone_values [i] = m_values [i]; in clone()
87 _clone.m_values = (int []) m_values.clone (); in clone()
104 s.append (m_values [i]); in toString()
117 final int current_value = m_values [index]; in set()
[all …]
/external/eigen/Eigen/src/SparseCore/
DCompressedStorage.h36 : m_values(0), m_indices(0), m_size(0), m_allocatedSize(0) in CompressedStorage()
40 : m_values(0), m_indices(0), m_size(0), m_allocatedSize(0) in CompressedStorage()
46 : m_values(0), m_indices(0), m_size(0), m_allocatedSize(0) in CompressedStorage()
54 memcpy(m_values, other.m_values, m_size * sizeof(Scalar));
61 std::swap(m_values, other.m_values); in swap()
69 delete[] m_values; in ~CompressedStorage()
97 m_values[id] = v; in append()
105 inline Scalar& value(size_t i) { return m_values[i]; } in value()
106 inline const Scalar& value(size_t i) const { return m_values[i]; } in value()
115 res.m_values = values; in Map()
[all …]
DMappedSparseMatrix.h45 Scalar* m_values;
56 inline const Scalar* valuePtr() const { return m_values; }
57 inline Scalar* valuePtr() { return m_values; }
76 return m_values[end-1];
82 return ((*r==inner) && (id<end)) ? m_values[id] : Scalar(0);
97 return m_values[id];
108 m_innerIndices(innerIndexPtr), m_values(valuePtr)
/external/apache-xml/src/main/java/org/apache/xml/utils/
DBoolStack.java32 private boolean m_values[]; field in BoolStack
58 m_values = new boolean[size]; in BoolStack()
94 return (m_values[++m_index] = val); in push()
106 return m_values[m_index--]; in pop()
121 return (m_index >= 0) ? m_values[m_index] : false; in popAndTop()
132 m_values[m_index] = b; in setTop()
144 return m_values[m_index]; in peek()
155 return (m_index > -1) ? m_values[m_index] : false; in peekOrFalse()
166 return (m_index > -1) ? m_values[m_index] : true; in peekOrTrue()
191 System.arraycopy(m_values, 0, newVector, 0, m_index + 1); in grow()
[all …]
DStringToIntTable.java42 private int m_values[]; field in StringToIntTable
60 m_values = new int[m_blocksize]; in StringToIntTable()
74 m_values = new int[m_blocksize]; in StringToIntTable()
108 System.arraycopy(m_values, 0, newValues, 0, m_firstFree + 1); in put()
110 m_values = newValues; in put()
114 m_values[m_firstFree] = value; in put()
133 return m_values[i]; in get()
155 return m_values[i]; in getIgnoreCase()
/external/webkit/Source/WebCore/css/
DCSSValueList.cpp51 if (index >= m_values.size()) in item()
53 return m_values[index].get(); in item()
63 m_values.append(val); in append()
68 m_values.prepend(val); in prepend()
76 for (size_t index = 0; index < m_values.size(); index++) { in removeAll()
77 if (m_values.at(index)->cssText() == val->cssText()) { in removeAll()
78 m_values.remove(index); in removeAll()
90 for (size_t index = 0; index < m_values.size(); index++) { in hasValue()
91 if (m_values.at(index)->cssText() == val->cssText()) in hasValue()
100 for (size_t index = 0; index < m_values.size(); index++) in copy()
[all …]
DCSSParserValues.h78 unsigned size() const { return m_values.size(); } in size()
79 CSSParserValue* current() { return m_current < m_values.size() ? &m_values[m_current] : 0; } in current()
82 CSSParserValue* valueAt(unsigned i) { return i < m_values.size() ? &m_values[i] : 0; } in valueAt()
84 void clear() { m_values.clear(); } in clear()
88 Vector<CSSParserValue, 4> m_values; variable
DCSSParserValues.cpp36 size_t numValues = m_values.size(); in ~CSSParserValueList()
38 if (m_values[i].unit == CSSParserValue::Function) in ~CSSParserValueList()
39 delete m_values[i].function; in ~CSSParserValueList()
45 m_values.append(v); in addValue()
50 m_values.insert(i, v); in insertValueAt()
55 m_values.remove(i); in deleteValueAt()
61 m_values.append(*(valueList.valueAt(i))); in extend()
DCSSValueList.h49 size_t length() const { return m_values.size(); } in length()
51 CSSValue* itemWithoutBoundsCheck(unsigned index) { return m_values[index].get(); } in itemWithoutBoundsCheck()
72 Vector<RefPtr<CSSValue> > m_values; variable
/external/eigen/unsupported/Eigen/src/AutoDiff/
DAutoDiffVector.h46 : m_values(values) in AutoDiffVector()
52 CoeffType operator[] (Index i) { return CoeffType(m_values[i], m_jacobian.col(i)); }
53 const CoeffType operator[] (Index i) const { return CoeffType(m_values[i], m_jacobian.col(i)); }
55 CoeffType operator() (Index i) { return CoeffType(m_values[i], m_jacobian.col(i)); } in operator()
56 const CoeffType operator() (Index i) const { return CoeffType(m_values[i], m_jacobian.col(i)); } in operator()
58 CoeffType coeffRef(Index i) { return CoeffType(m_values[i], m_jacobian.col(i)); } in coeffRef()
59 const CoeffType coeffRef(Index i) const { return CoeffType(m_values[i], m_jacobian.col(i)); } in coeffRef()
61 Index size() const { return m_values.size(); } in size()
64 …*/ /*std::cerr << m_jacobian.rowwise().sum() << "\n\n";*/ return Scalar(m_values.sum(), m_jacobian… in sum()
68 : m_values(values), m_jacobian(jac) in AutoDiffVector()
[all …]
/external/webkit/Source/JavaScriptCore/heap/
DMarkStack.cpp44 m_values.shrinkAllocation(s_pageSize); in reset()
91 while (!m_markSets.isEmpty() || !m_values.isEmpty()) { in drain()
92 while (!m_markSets.isEmpty() && m_values.size() < 50) { in drain()
95 ASSERT(current.m_values); in drain()
97 ASSERT(current.m_values); in drain()
98 ASSERT(current.m_values != end); in drain()
100 ASSERT(current.m_values != end); in drain()
101 JSValue value = *current.m_values; in drain()
102 current.m_values++; in drain()
106 if (current.m_values == end) { in drain()
[all …]
DMarkStack.h60 ASSERT(m_values.isEmpty()); in ~MarkStack()
94 : m_values(values) in MarkSet()
100 JSValue* m_values; member
194 MarkStackArray<JSCell*> m_values; variable
/external/webkit/Source/WebCore/svg/properties/
DSVGStaticListPropertyTearOff.h45 Base::clearValues(m_values, ec); in clear()
50 return Base::numberOfItemsValues(m_values); in numberOfItems()
55 return Base::initializeValues(m_values, newItem, ec); in initialize()
60 return Base::getItemValues(m_values, index, ec); in getItem()
65 return Base::insertItemBeforeValues(m_values, newItem, index, ec); in insertItemBefore()
70 return Base::replaceItemValues(m_values, newItem, index, ec); in replaceItem()
75 return Base::removeItemValues(m_values, index, ec); in removeItem()
80 return Base::appendItemValues(m_values, newItem, ec); in appendItem()
87 , m_values(values) in SVGStaticListPropertyTearOff()
93 m_values.commitChange(m_contextElement.get()); in commitChange()
[all …]
DSVGAnimatedListPropertyTearOff.h67 ASSERT(size == m_values.size()); in detachListWrappers()
82 PropertyType& values() { return m_values; } in values()
97 , m_values(values) in SVGAnimatedListPropertyTearOff()
103 PropertyType& m_values; variable
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
DStringToIntTable.java49 private int m_values[]; field in StringToIntTable
67 m_values = new int[m_blocksize]; in StringToIntTable()
81 m_values = new int[m_blocksize]; in StringToIntTable()
115 System.arraycopy(m_values, 0, newValues, 0, m_firstFree + 1); in put()
117 m_values = newValues; in put()
121 m_values[m_firstFree] = value; in put()
140 return m_values[i]; in get()
162 return m_values[i]; in getIgnoreCase()
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
DEnumerationValuesPropertyEditor.java32 private final Object[] m_values; field in EnumerationValuesPropertyEditor
44 m_values = new Object[items]; in EnumerationValuesPropertyEditor()
48 m_values[i] = enumElements[3 * i + 1]; in EnumerationValuesPropertyEditor()
63 for (int i = 0; i < m_values.length; i++) { in getText()
64 if (Objects.equal(m_values[i], value)) { in getText()
81 for (int i = 0; i < m_values.length; i++) { in getValueSource()
82 if (Objects.equal(m_values[i], value)) { in getValueSource()
120 Object value = m_values[index]; in toPropertyEx()
/external/webkit/Source/WebCore/platform/graphics/filters/
DFEColorMatrix.cpp41 , m_values(values) in FEColorMatrix()
65 return m_values; in values()
70 if (m_values == values) in setValues()
72 m_values = values; in setValues()
181 effectType<FECOLORMATRIX_TYPE_MATRIX>(pixelArray.get(), m_values); in apply()
184 effectType<FECOLORMATRIX_TYPE_SATURATE>(pixelArray.get(), m_values); in apply()
187 effectType<FECOLORMATRIX_TYPE_HUEROTATE>(pixelArray.get(), m_values); in apply()
190 effectType<FECOLORMATRIX_TYPE_LUMINANCETOALPHA>(pixelArray.get(), m_values); in apply()
230 if (!m_values.isEmpty()) { in externalRepresentation()
232 Vector<float>::const_iterator ptr = m_values.begin(); in externalRepresentation()
[all …]
/external/webkit/Source/WebCore/svg/
DSVGAnimationElement.cpp142 attr->value().string().split(';', m_values); in parseMappedAttribute()
354 unsigned valuesCount = m_values.size(); in calculateKeyTimesForCalcModePaced()
361 float distance = calculateDistance(m_values[n], m_values[n + 1]); in calculateKeyTimesForCalcModePaced()
434 …nsigned index = effectivePercent == 1 ? m_values.size() - 2 : static_cast<unsigned>(effectivePerce… in currentValuesFromKeyPoints()
435 from = m_values[index]; in currentValuesFromKeyPoints()
436 to = m_values[index + 1]; in currentValuesFromKeyPoints()
441 unsigned valuesCount = m_values.size(); in currentValuesForValuesAnimation()
457 from = m_values[index]; in currentValuesForValuesAnimation()
458 to = m_values[index]; in currentValuesForValuesAnimation()
476 from = m_values[index]; in currentValuesForValuesAnimation()
[all …]
/external/webkit/Source/WebCore/dom/
DTouchList.h44 unsigned length() const { return m_values.size(); } in length()
48 void append(const PassRefPtr<Touch> touch) { m_values.append(touch); } in append()
53 Vector<RefPtr<Touch> > m_values; variable
DTouchList.cpp36 if (index >= m_values.size()) in item()
38 return m_values[index].get(); in item()
/external/eigen/unsupported/test/
DNumericalDiff.cpp24 int m_inputs, m_values; member
26 Functor() : m_inputs(InputsAtCompileTime), m_values(ValuesAtCompileTime) {} in Functor()
27 Functor(int inputs, int values) : m_inputs(inputs), m_values(values) {} in Functor()
30 int values() const { return m_values; } in values()
Dforward_adolc.cpp37 int m_inputs, m_values; member
39 TestFunc1() : m_inputs(InputsAtCompileTime), m_values(ValuesAtCompileTime) {} in TestFunc1()
40 TestFunc1(int inputs, int values) : m_inputs(inputs), m_values(values) {} in TestFunc1()
43 int values() const { return m_values; } in values()
Dautodiff.cpp43 int m_inputs, m_values; member
45 TestFunc1() : m_inputs(InputsAtCompileTime), m_values(ValuesAtCompileTime) {} in TestFunc1()
46 TestFunc1(int inputs, int values) : m_inputs(inputs), m_values(values) {} in TestFunc1()
49 int values() const { return m_values; } in values()
/external/emma/core/java12/com/vladium/util/args/
DOptsParser.java520 if (m_values == null) return 0; in getValueCount()
522 return m_values.size (); in getValueCount()
527 if (m_values == null) return null; in getFirstValue()
529 return (String) m_values.get (0); in getFirstValue()
534 if (m_values == null) return IConstants.EMPTY_STRING_ARRAY; in getValues()
536 final String [] result = new String [m_values.size ()]; in getValues()
537 m_values.toArray (result); in getValues()
552 if (m_values != null) in toString()
555 s.append (m_values); in toString()
572 if (m_values == null) m_values = new ArrayList (); in addValue()
[all …]
/external/webkit/Source/WebCore/platform/graphics/
DGraphicsLayer.cpp46 for (size_t i = 0; i < m_values.size(); ++i) { in insert()
47 const AnimationValue* curValue = m_values[i]; in insert()
51 m_values.insert(i + 1, value); in insert()
56 m_values.insert(i, value); in insert()
61 m_values.append(value); in insert()

12