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

12

/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/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...]
H A DMappedSparseMatrix.h45 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/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...]
H A DOptionValueDictionary.cpp43 collection::iterator pos, end = m_values.end();
47 for (pos = m_values.begin(); pos != end; ++pos)
89 collection::const_iterator pos, end = m_values.end();
90 for (pos = m_values.begin(); pos != end; ++pos)
348 collection::const_iterator pos = m_values.find (key);
349 if (pos != m_values.end())
357 collection::const_iterator pos = m_values.find (key);
358 if (pos != m_values.end())
373 collection::const_iterator pos = m_values.find (key);
374 if (pos != 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/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/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 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; }
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; }
/external/eigen/unsupported/Eigen/src/LevenbergMarquardt/
H A DLevenbergMarquardt.h53 const int m_inputs, m_values; member in struct:Eigen::DenseFunctor
55 DenseFunctor() : m_inputs(InputsAtCompileTime), m_values(ValuesAtCompileTime) {}
56 DenseFunctor(int inputs, int values) : m_inputs(inputs), m_values(values) {}
59 int values() const { return m_values; }
82 SparseFunctor(int inputs, int values) : m_inputs(inputs), m_values(values) {}
85 int values() const { return m_values; }
87 const int m_inputs, m_values; member in struct:Eigen::SparseFunctor
/external/lldb/source/Core/
H A DValue.cpp723 m_values = rhs.m_values;
729 m_values = rhs.m_values;
736 m_values.push_back (value);
742 return m_values.size();
750 return &(m_values[idx]);
759 m_values.clear();
/external/deqp/framework/randomshaders/
H A DrsgProgramExecutor.cpp82 std::map<std::string, VaryingStorage*> m_values; member in class:rsg::VaryingStore
92 for (map<string, VaryingStorage*>::iterator i = m_values.begin(); i != m_values.end(); i++)
94 m_values.clear();
99 VaryingStorage* storage = m_values[name];
104 m_values[name] = storage;
/external/emma/core/java12/com/vladium/util/args/
H A DOptsParser.java520 if (m_values == null) return 0;
522 return m_values.size ();
527 if (m_values == null) return null;
529 return (String) m_values.get (0);
534 if (m_values == null) return IConstants.EMPTY_STRING_ARRAY;
536 final String [] result = new String [m_values.size ()];
537 m_values.toArray (result);
552 if (m_values != null)
555 s.append (m_values);
572 if (m_values
578 private ArrayList m_values; field in class:OptsParser.Opt
[all...]
/external/lldb/include/lldb/Core/
H A DValue.h285 m_values()
309 collection m_values; member in class:lldb_private::ValueList
/external/deqp/framework/common/
H A DtcuTestLog.hpp204 SampleBuilder& operator<< (int v) { m_values.push_back(Value((deInt64)v)); return *this; }
205 SampleBuilder& operator<< (deInt64 v) { m_values.push_back(Value(v)); return *this; }
206 SampleBuilder& operator<< (float v) { m_values.push_back(Value((double)v)); return *this; }
207 SampleBuilder& operator<< (double v) { m_values.push_back(Value(v)); return *this; }
229 std::vector<Value> m_values; member in class:tcu::SampleBuilder
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
H A DSAX2DTM2.java1802 protected Vector m_values; field in class:SAX2DTM2
1804 // The current index into the m_values Vector.
1884 m_values = new Vector(32, 512);
2049 int index = m_values.indexOf(uri);
2052 m_values.addElement(uri);
2111 m_values.addElement(declURL);
2129 m_values.addElement(declURL);
2170 m_values.addElement(valString);
2268 m_values.addElement(new String(ch, start, length));
2468 m_values
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DToStream.java3317 private boolean m_values[]; field in class:ToStream.BoolStack
3343 m_values = new boolean[size];
3379 return (m_values[++m_index] = val);
3391 return m_values[m_index--];
3406 return (m_index >= 0) ? m_values[m_index] : false;
3417 m_values[m_index] = b;
3429 return m_values[m_index];
3440 return (m_index > -1) ? m_values[m_index] : false;
3451 return (m_index > -1) ? m_values[m_index] : true;
3476 System.arraycopy(m_values,
[all...]

Completed in 9704 milliseconds

12