HomeSort by relevance Sort by last modified time
    Searched defs:m_values (Results 1 - 25 of 41) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/dom/
TouchList.h 49 unsigned length() const { return m_values.size(); }
54 void append(const PassRefPtrWillBeRawPtr<Touch> touch) { m_values.append(touch); }
66 m_values.swap(touches);
70 WillBeHeapVector<RefPtrWillBeMember<Touch> > m_values; member in class:WebCore::TouchList
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableRepeatable.h 51 const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& values() const { return m_values; }
62 m_values.swap(values);
69 WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> > m_values; member in class:WebCore::AnimatableRepeatable
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEColorMatrixElement.h 37 SVGAnimatedNumberList* values() { return m_values.get(); }
50 RefPtr<SVGAnimatedNumberList> m_values; member in class:WebCore::FINAL
SVGStringList.h 64 const Vector<String>& values() const { return m_values; }
67 unsigned long length() { return m_values.size(); }
68 void clear() { m_values.clear(); }
95 Vector<String> m_values; member in class:WebCore::FINAL
  /external/chromium_org/third_party/WebKit/Source/platform/animation/
KeyframeValueList.h 58 for (size_t i = 0; i < other.m_values.size(); ++i)
59 m_values.append(other.m_values[i]->clone());
72 m_values.swap(other.m_values);
77 size_t size() const { return m_values.size(); }
78 const AnimationValue* at(size_t i) const { return m_values.at(i).get(); }
84 Vector<OwnPtr<const AnimationValue> > m_values; member in class:WebCore::KeyframeValueList
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEColorMatrix.h 65 Vector<float> m_values; member in class:WebCore::FEColorMatrix
  /external/lldb/include/lldb/Interpreter/
OptionValueDictionary.h 29 m_values (),
59 m_values.clear();
86 return m_values.size();
133 collection m_values; member in class:lldb_private::OptionValueDictionary
OptionValueArray.h 28 m_values (),
58 m_values.clear();
85 return m_values.size();
92 if (idx < m_values.size())
93 value_sp = m_values[idx];
101 if (idx < m_values.size())
102 value_sp = m_values[idx];
113 m_values.push_back(value_sp);
126 if (idx < m_values.size())
127 m_values.insert(m_values.begin() + idx, value_sp)
172 collection m_values; member in class:lldb_private::OptionValueArray
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
EnumerationValuesPropertyEditor.java 32 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/test/
forward_adolc.cpp 37 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; }
NumericalDiff.cpp 24 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; }
autodiff.cpp 43 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; }
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
StringToIntTable.java 44 * 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/apache-xml/src/main/java/org/apache/xml/utils/
BoolStack.java 32 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, 0, newVector, 0, m_index + 1)
    [all...]
StringToIntTable.java 37 * 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/chromium_org/third_party/WebKit/Source/core/css/
CSSValueList.h 51 size_t length() const { return m_values.size(); }
52 CSSValue* item(size_t index) { return index < m_values.size() ? m_values[index].get() : 0; }
53 const CSSValue* item(size_t index) const { return index < m_values.size() ? m_values[index].get() : 0; }
54 CSSValue* itemWithoutBoundsCheck(size_t index) { return m_values[index].get(); }
56 void append(PassRefPtrWillBeRawPtr<CSSValue> value) { m_values.append(value); }
57 void prepend(PassRefPtrWillBeRawPtr<CSSValue> value) { m_values.prepend(value); }
80 WillBeHeapVector<RefPtrWillBeMember<CSSValue>, 4> m_values; member in class:WebCore::CSSValueList
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
FormController.h 43 explicit FormControlState(const String& value) : m_type(TypeRestore) { m_values.append(value); }
45 FormControlState(const FormControlState& another) : m_type(another.m_type), m_values(another.m_values) { }
49 size_t valueSize() const { return m_values.size(); }
50 const String& operator[](size_t i) const { return m_values[i]; }
59 Vector<String> m_values; member in class:WebCore::FormControlState
65 m_values = another.m_values;
72 m_values.append(value);
  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffVector.h 46 : 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(values), m_jacobian(jac
213 ValueType m_values; member in class:Eigen::AutoDiffVector
    [all...]
  /external/emma/core/java12/com/vladium/util/
IntVector.java 27 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.clone ()
151 private int [] m_values; \/\/ never null field in class:IntVector
    [all...]
  /external/lldb/source/API/
SBValueList.cpp 26 m_values()
31 m_values(rhs.m_values)
40 m_values = rhs.m_values;
47 return m_values.size();
53 m_values.push_back(sb_value);
59 for (auto val : list.m_values)
68 return m_values[index];
74 for (auto val : m_values)
83 std::vector<lldb::SBValue> m_values; member in class:ValueListImpl
    [all...]
  /external/eigen/Eigen/src/SparseCore/
CompressedStorage.h 36 : 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 internal::smart_copy(other.m_values, other.m_values + m_size, m_values);
61 std::swap(m_values, other.m_values);
69 delete[] m_values;
97 m_values[id] = v
222 Scalar* m_values; member in class:Eigen::internal::CompressedStorage
    [all...]
MappedSparseMatrix.h 45 Scalar* m_values; member in class:Eigen::MappedSparseMatrix
58 inline const Scalar* valuePtr() const { return m_values; }
59 inline Scalar* valuePtr() { return m_values; }
78 return m_values[end-1];
84 return ((*r==inner) && (id<end)) ? m_values[id] : Scalar(0);
99 return m_values[id];
110 m_innerIndices(innerIndexPtr), m_values(valuePtr)
  /external/lldb/include/lldb/Expression/
IRForTarget.h 690 FunctionValueMap m_values; member in class:IRForTarget::FunctionValueCache
  /external/ceres-solver/internal/ceres/
compressed_row_sparse_matrix.cc 518 const double* m_values = m.values(); local
530 const double v1 = m_values[idx1];
532 values[program[cursor]] += v1 * m_values[idx2];
  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGListPropertyHelper.h 64 ASSERT(index < m_values.size());
65 ASSERT(m_values.at(index)->ownerList() == this);
66 return m_values.at(index).get();
98 return ConstIterator(m_values.begin());
103 return ConstIterator(m_values.begin() + m_values.size() - 1);
108 return ConstIterator(m_values.end());
116 m_values.append(newItem);
135 return m_values.size();
155 Vector<RefPtr<ItemPropertyType> > m_values; member in class:WebCore::SVGListPropertyHelper
    [all...]

Completed in 868 milliseconds

1 2