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

123

/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/chromium_org/third_party/WebKit/Source/platform/animation/
H A DKeyframeValueList.cpp34 for (size_t i = 0; i < m_values.size(); ++i) {
35 const AnimationValue* curValue = m_values[i].get();
39 m_values.insert(i + 1, value);
44 m_values.insert(i, value);
49 m_values.append(value);
H A DKeyframeValueList.h58 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:blink::KeyframeValueList
/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/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSValueList.cpp44 for (size_t index = 0; index < m_values.size(); index++) {
45 RefPtrWillBeMember<CSSValue>& value = m_values.at(index);
47 m_values.remove(index);
57 for (size_t index = 0; index < m_values.size(); index++) {
58 const RefPtrWillBeMember<CSSValue>& value = m_values.at(index);
81 for (size_t index = 0; index < m_values.size(); index++)
82 newList->append(m_values[index]);
104 unsigned size = m_values.size();
108 if (formattingFlag == AlwaysQuoteCSSString && m_values[i]->isPrimitiveValue())
109 result.append(toCSSPrimitiveValue(m_values[
[all...]
H A DCSSValueList.h45 size_t length() const { return m_values.size(); }
46 CSSValue* item(size_t index) { return m_values[index].get(); }
47 const CSSValue* item(size_t index) const { return m_values[index].get(); }
48 CSSValue* itemWithBoundsCheck(size_t index) { return index < m_values.size() ? m_values[index].get() : 0; }
50 void append(PassRefPtrWillBeRawPtr<CSSValue> value) { m_values.append(value); }
51 void prepend(PassRefPtrWillBeRawPtr<CSSValue> value) { m_values.prepend(value); }
73 WillBeHeapVector<RefPtrWillBeMember<CSSValue>, 4> m_values; member in class:blink::CSSValueList
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DTouchList.cpp34 if (index >= m_values.size())
36 return m_values[index].get();
46 visitor->trace(m_values);
H A DTouchList.h50 unsigned length() const { return m_values.size(); }
55 void append(const PassRefPtrWillBeRawPtr<Touch> touch) { m_values.append(touch); }
64 m_values.swap(touches);
67 WillBeHeapVector<RefPtrWillBeMember<Touch> > m_values; member in class:blink::FINAL
/external/lldb/include/lldb/Interpreter/
H A DOptionValueArray.h28 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
172 collection m_values; member in class:lldb_private::OptionValueArray
[all...]
H A DOptionValueDictionary.h29 m_values (),
59 m_values.clear();
86 return m_values.size();
133 collection m_values; member in class:lldb_private::OptionValueDictionary
/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/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 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[i
222 Scalar* m_values; member in class:Eigen::internal::CompressedStorage
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGStringList.cpp41 m_values.clear();
42 m_values.append(item);
50 return m_values.at(index);
56 if (index > m_values.size())
57 index = m_values.size();
61 m_values.insert(index, newItem);
69 String oldItem = m_values.at(index);
70 m_values.remove(index);
76 m_values.append(newItem);
85 m_values[inde
[all...]
H A DSVGStringList.h64 const Vector<String>& values() const { return m_values; }
67 unsigned long length() { return m_values.size(); }
68 void clear() { m_values.clear(); }
93 Vector<String> m_values; member in class:blink::FINAL
/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/lldb/source/Interpreter/
H A DOptionValueArgs.cpp24 const uint32_t size = m_values.size();
28 const char *string_value = m_values[i]->GetStringValue ();
H A DOptionValueArray.cpp36 strm.Printf (" =%s", (m_values.size() > 0) ? "\n" : "");
38 const uint32_t size = m_values.size();
52 m_values[i]->DumpValue(exe_ctx, strm, dump_mask | extra_dump_options);
64 m_values[i]->DumpValue(exe_ctx, strm, (dump_mask & (~eDumpOptionType)) | extra_dump_options);
97 const size_t array_count = m_values.size();
116 if (m_values[new_idx])
119 return m_values[new_idx]->GetSubValue (exe_ctx, sub_value, will_modify, error);
121 return m_values[new_idx];
147 const uint32_t size = m_values.size();
151 const char *string_value = m_values[
[all...]
/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/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableRepeatable.cpp40 const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& fromValues = m_values;
41 const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& toValues = toAnimatableRepeatable(value)->m_values;
76 bool success = interpolateLists(m_values, toAnimatableRepeatable(value)->m_values, fraction, interpolatedValues);
84 const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& otherValues = toAnimatableRepeatable(value)->m_values;
85 if (m_values.size() != otherValues.size())
87 for (size_t i = 0; i < m_values.size(); ++i) {
88 if (!m_values[i]->equals(otherValues[i].get()))
96 visitor->trace(m_values);
H A DAnimatableStrokeDasharrayList.cpp45 m_values.append(AnimatableSVGLength::create(*it));
51 for (size_t i = 0; i < m_values.size(); ++i) {
52 RefPtr<SVGLength> length = toAnimatableSVGLength(m_values[i].get())->toSVGLength()->clone();
67 WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> > from = m_values;
68 WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> > to = toAnimatableStrokeDasharrayList(value)->m_values;
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DFormController.h43 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:blink::FormControlState
65 m_values = another.m_values;
72 m_values.append(value);
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/
H A DSVGListPropertyHelper.h64 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);
142 return m_values.size();
169 Vector<RefPtr<ItemPropertyType> > m_values; member in class:blink::SVGListPropertyHelper
[all...]
/external/lldb/source/API/
H A DSBValueList.cpp26 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/chromium_org/third_party/WebKit/Source/core/animation/
H A DInterpolableValue.cpp44 ASSERT(m_values[i]);
45 ASSERT(toList.m_values[i]);
46 result->set(i, m_values[i]->interpolate(*(toList.m_values[i]), progress));
54 visitor->trace(m_values);

Completed in 2629 milliseconds

123