Searched refs:m_values (Results 1 - 25 of 35) sorted by relevance

12

/external/webkit/Source/WebCore/dom/
H A DTouchList.cpp36 if (index >= m_values.size())
38 return m_values[index].get();
H A DTouchList.h44 unsigned length() const { return m_values.size(); }
48 void append(const PassRefPtr<Touch> touch) { m_values.append(touch); }
53 Vector<RefPtr<Touch> > m_values; member in class:WebCore::TouchList
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DBoolStack.java32 private boolean m_values[]; field in class:BoolStack
58 m_values = new boolean[size];
94 return (m_values[++m_index] = val);
106 return m_values[m_index--];
121 return (m_index >= 0) ? m_values[m_index] : false;
132 m_values[m_index] = b;
144 return m_values[m_index];
155 return (m_index > -1) ? m_values[m_index] : false;
166 return (m_index > -1) ? m_values[m_index] : true;
191 System.arraycopy(m_values,
[all...]
H A DStringToIntTable.java37 * in m_values */
42 private int m_values[]; field in class:StringToIntTable
60 m_values = new int[m_blocksize];
74 m_values = new int[m_blocksize];
108 System.arraycopy(m_values, 0, newValues, 0, m_firstFree + 1);
110 m_values = newValues;
114 m_values[m_firstFree] = value;
133 return m_values[i];
155 return m_values[i];
/external/emma/core/java12/com/vladium/util/
H A DIntVector.java27 m_values = new int [initCapacity];
37 return m_values [index];
51 for (int i = 0; i < size; ++ i) result [i] = m_values [i];
55 System.arraycopy (m_values, 0, result, 0, size);
81 _clone.m_values = new int [m_values.length];
82 final int [] _clone_values = _clone.m_values;
83 for (int i = 0; i < m_size; ++ i) _clone_values [i] = m_values [i];
87 _clone.m_values = (int []) m_values
151 private int [] m_values; // never null field in class:IntVector
[all...]
/external/webkit/Source/WebCore/css/
H A DCSSValueList.cpp51 if (index >= m_values.size())
53 return m_values[index].get();
63 m_values.append(val);
68 m_values.prepend(val);
76 for (size_t index = 0; index < m_values.size(); index++) {
77 if (m_values.at(index)->cssText() == val->cssText()) {
78 m_values.remove(index);
90 for (size_t index = 0; index < m_values.size(); index++) {
91 if (m_values.at(index)->cssText() == val->cssText())
100 for (size_t index = 0; index < m_values
[all...]
H A DCSSParserValues.cpp36 size_t numValues = m_values.size();
38 if (m_values[i].unit == CSSParserValue::Function)
39 delete m_values[i].function;
45 m_values.append(v);
50 m_values.insert(i, v);
55 m_values.remove(i);
61 m_values.append(*(valueList.valueAt(i)));
H A DCSSParserValues.h78 unsigned size() const { return m_values.size(); }
79 CSSParserValue* current() { return m_current < m_values.size() ? &m_values[m_current] : 0; }
82 CSSParserValue* valueAt(unsigned i) { return i < m_values.size() ? &m_values[i] : 0; }
84 void clear() { m_values.clear(); }
88 Vector<CSSParserValue, 4> m_values; member in class:WebCore::CSSParserValueList
H A DCSSValueList.h49 size_t length() const { return m_values.size(); }
51 CSSValue* itemWithoutBoundsCheck(unsigned index) { return m_values[index].get(); }
72 Vector<RefPtr<CSSValue> > m_values; member in class:WebCore::CSSValueList
/external/webkit/Source/WebCore/svg/properties/
H A DSVGStaticListPropertyTearOff.h45 Base::clearValues(m_values, ec);
50 return Base::numberOfItemsValues(m_values);
55 return Base::initializeValues(m_values, newItem, ec);
60 return Base::getItemValues(m_values, index, ec);
65 return Base::insertItemBeforeValues(m_values, newItem, index, ec);
70 return Base::replaceItemValues(m_values, newItem, index, ec);
75 return Base::removeItemValues(m_values, index, ec);
80 return Base::appendItemValues(m_values, newItem, ec);
87 , m_values(values)
93 m_values
108 PropertyType& m_values; member in class:WebCore::SVGStaticListPropertyTearOff
[all...]
H A DSVGAnimatedListPropertyTearOff.h67 ASSERT(size == m_values.size());
82 PropertyType& values() { return m_values; }
97 , m_values(values)
103 PropertyType& m_values; member in class:WebCore::SVGAnimatedListPropertyTearOff
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
H A DStringToIntTable.java44 * in m_values */
49 private int m_values[]; field in class:StringToIntTable
67 m_values = new int[m_blocksize];
81 m_values = new int[m_blocksize];
115 System.arraycopy(m_values, 0, newValues, 0, m_firstFree + 1);
117 m_values = newValues;
121 m_values[m_firstFree] = value;
140 return m_values[i];
162 return m_values[i];
/external/webkit/Source/JavaScriptCore/heap/
H A DMarkStack.cpp44 m_values.shrinkAllocation(s_pageSize);
91 while (!m_markSets.isEmpty() || !m_values.isEmpty()) {
92 while (!m_markSets.isEmpty() && m_values.size() < 50) {
95 ASSERT(current.m_values);
97 ASSERT(current.m_values);
98 ASSERT(current.m_values != end);
100 ASSERT(current.m_values != end);
101 JSValue value = *current.m_values;
102 current.m_values++;
106 if (current.m_values
[all...]
H A DMarkStack.h60 ASSERT(m_values.isEmpty());
94 : m_values(values)
100 JSValue* m_values; member in struct:JSC::MarkStack::MarkSet
194 MarkStackArray<JSCell*> m_values; member in class:JSC::MarkStack
/external/eigen/Eigen/src/SparseCore/
H A DCompressedStorage.h36 : m_values(0), m_indices(0), m_size(0), m_allocatedSize(0)
40 : m_values(0), m_indices(0), m_size(0), m_allocatedSize(0)
46 : m_values(0), m_indices(0), m_size(0), m_allocatedSize(0)
54 memcpy(m_values, other.m_values, m_size * sizeof(Scalar));
61 std::swap(m_values, other.m_values);
69 delete[] m_values;
97 m_values[id] = v;
105 inline Scalar& value(size_t i) { return m_values[
222 Scalar* m_values; member in class:Eigen::internal::CompressedStorage
[all...]
H A DMappedSparseMatrix.h45 Scalar* m_values; member in class:Eigen::MappedSparseMatrix
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/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DEnumerationValuesPropertyEditor.java32 private final Object[] m_values; field in class:EnumerationValuesPropertyEditor
44 m_values = new Object[items];
48 m_values[i] = enumElements[3 * i + 1];
63 for (int i = 0; i < m_values.length; i++) {
64 if (Objects.equal(m_values[i], value)) {
81 for (int i = 0; i < m_values.length; i++) {
82 if (Objects.equal(m_values[i], value)) {
120 Object value = m_values[index];
/external/eigen/unsupported/Eigen/src/AutoDiff/
H A DAutoDiffVector.h46 : m_values(values)
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)); }
56 const CoeffType operator() (Index i) const { return CoeffType(m_values[i], m_jacobian.col(i)); }
58 CoeffType coeffRef(Index i) { return CoeffType(m_values[i], m_jacobian.col(i)); }
59 const CoeffType coeffRef(Index i) const { return CoeffType(m_values[i], m_jacobian.col(i)); }
61 Index size() const { return m_values.size(); }
64 Scalar sum() const { /*std::cerr << "sum \n\n";*/ /*std::cerr << m_jacobian.rowwise().sum() << "\n\n";*/ return Scalar(m_values.sum(), m_jacobian.rowwise().sum()); }
68 : m_values(value
213 ValueType m_values; member in class:Eigen::AutoDiffVector
[all...]
/external/webkit/Source/WebCore/platform/graphics/filters/
H A DFEColorMatrix.cpp41 , m_values(values)
65 return m_values;
70 if (m_values == values)
72 m_values = values;
181 effectType<FECOLORMATRIX_TYPE_MATRIX>(pixelArray.get(), m_values);
184 effectType<FECOLORMATRIX_TYPE_SATURATE>(pixelArray.get(), m_values);
187 effectType<FECOLORMATRIX_TYPE_HUEROTATE>(pixelArray.get(), m_values);
190 effectType<FECOLORMATRIX_TYPE_LUMINANCETOALPHA>(pixelArray.get(), m_values);
230 if (!m_values.isEmpty()) {
232 Vector<float>::const_iterator ptr = m_values
[all...]
H A DFEColorMatrix.h60 Vector<float> m_values; member in class:WebCore::FEColorMatrix
/external/eigen/unsupported/test/
H A DNumericalDiff.cpp24 int m_inputs, m_values; member in struct:Functor
26 Functor() : m_inputs(InputsAtCompileTime), m_values(ValuesAtCompileTime) {}
27 Functor(int inputs, int values) : m_inputs(inputs), m_values(values) {}
30 int values() const { return m_values; }
H A Dautodiff.cpp43 int m_inputs, m_values; member in struct:TestFunc1
45 TestFunc1() : m_inputs(InputsAtCompileTime), m_values(ValuesAtCompileTime) {}
46 TestFunc1(int inputs, int values) : m_inputs(inputs), m_values(values) {}
49 int values() const { return m_values; }
H A Dforward_adolc.cpp37 int m_inputs, m_values; member in struct:TestFunc1
39 TestFunc1() : m_inputs(InputsAtCompileTime), m_values(ValuesAtCompileTime) {}
40 TestFunc1(int inputs, int values) : m_inputs(inputs), m_values(values) {}
43 int values() const { return m_values; }
/external/webkit/Source/WebCore/svg/
H A DSVGAnimationElement.cpp142 attr->value().string().split(';', m_values);
354 unsigned valuesCount = m_values.size();
361 float distance = calculateDistance(m_values[n], m_values[n + 1]);
434 unsigned index = effectivePercent == 1 ? m_values.size() - 2 : static_cast<unsigned>(effectivePercent * (m_values.size() - 1));
435 from = m_values[index];
436 to = m_values[index + 1];
441 unsigned valuesCount = m_values.size();
457 from = m_values[inde
[all...]
/external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
H A Dtst_qscriptvalue.h28 #define DEFINE_TEST_VALUE(expr) m_values.insert(QString::fromLatin1(#expr), expr)

Completed in 564 milliseconds

12