/external/emma/core/java12/com/vladium/util/ |
D | IntVector.java | 27 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/apache-xml/src/main/java/org/apache/xml/utils/ |
D | BoolStack.java | 32 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 …]
|
D | StringToIntTable.java | 42 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/ |
D | CSSValueList.cpp | 51 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 …]
|
D | CSSParserValues.h | 78 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
|
D | CSSParserValues.cpp | 36 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()
|
D | CSSValueList.h | 49 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/webkit/Source/JavaScriptCore/heap/ |
D | MarkStack.cpp | 44 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 …]
|
D | MarkStack.h | 60 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/ |
D | SVGStaticListPropertyTearOff.h | 45 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 …]
|
D | SVGAnimatedListPropertyTearOff.h | 67 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/ |
D | StringToIntTable.java | 49 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/webkit/Source/WebCore/platform/graphics/filters/ |
D | FEColorMatrix.cpp | 41 , 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 …]
|
D | FEColorMatrix.h | 60 Vector<float> m_values; variable
|
/external/webkit/Source/WebCore/svg/ |
D | SVGAnimationElement.cpp | 142 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 …]
|
D | SVGAnimationElement.h | 114 Vector<String> m_values;
|
/external/webkit/Source/WebCore/dom/ |
D | TouchList.h | 44 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
|
D | TouchList.cpp | 36 if (index >= m_values.size()) in item() 38 return m_values[index].get(); in item()
|
/external/emma/core/java12/com/vladium/util/args/ |
D | OptsParser.java | 520 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/ |
D | GraphicsLayer.cpp | 46 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()
|
D | GraphicsLayer.h | 166 deleteAllValues(m_values); in ~KeyframeValueList() 171 size_t size() const { return m_values.size(); } in size() 172 const AnimationValue* at(size_t i) const { return m_values.at(i); } in at() 178 Vector<const AnimationValue*> m_values;
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/ |
D | SAX2DTM2.java | 1802 protected Vector m_values; field in SAX2DTM2 1884 m_values = new Vector(32, 512); in SAX2DTM2() 2049 int index = m_values.indexOf(uri); in getIdForNamespace() 2052 m_values.addElement(uri); in getIdForNamespace() 2111 m_values.addElement(declURL); in startElement() 2129 m_values.addElement(declURL); in startElement() 2170 m_values.addElement(valString); in startElement() 2268 m_values.addElement(new String(ch, start, length)); in comment() 2468 m_values.addElement(data); in processingInstruction() 2866 return m_xstrf.newstr((String)m_values.elementAt(dataIndex)); in getStringValue() [all …]
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
D | ToStream.java | 3317 private boolean m_values[]; field in ToStream.BoolStack 3343 m_values = new boolean[size]; in BoolStack() 3379 return (m_values[++m_index] = val); in push() 3391 return m_values[m_index--]; in pop() 3406 return (m_index >= 0) ? m_values[m_index] : false; in popAndTop() 3417 m_values[m_index] = b; in setTop() 3429 return m_values[m_index]; in peek() 3440 return (m_index > -1) ? m_values[m_index] : false; in peekOrFalse() 3451 return (m_index > -1) ? m_values[m_index] : true; in peekOrTrue() 3476 System.arraycopy(m_values, 0, newVector, 0, m_index + 1); in grow() [all …]
|
/external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/ |
D | tst_qscriptvalue.h | 28 #define DEFINE_TEST_VALUE(expr) m_values.insert(QString::fromLatin1(#expr), expr)
|
/external/webkit/Source/JavaScriptCore/runtime/ |
D | Structure.h | 295 m_values.append(cell); in internalAppend()
|