Home
last modified time | relevance | path

Searched refs:m_values (Results 1 – 17 of 17) sorted by relevance

/external/emma/core/java12/com/vladium/util/
DIntVector.java27 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/webkit/WebCore/css/
DCSSValueList.cpp53 if (index >= m_values.size()) in item()
55 return m_values[index].get(); in item()
65 m_values.append(val); in append()
70 m_values.prepend(val); in prepend()
77 unsigned size = m_values.size(); in cssText()
85 result += m_values[i]->cssText(); in cssText()
93 unsigned s = m_values.size(); in createParserValueList()
98 result->addValue(m_values[i]->parserValue()); in createParserValueList()
104 size_t size = m_values.size(); in addSubresourceStyleURLs()
106 m_values[i]->addSubresourceStyleURLs(urls, styleSheet); in addSubresourceStyleURLs()
DCSSParserValues.h75 unsigned size() const { return m_values.size(); } in size()
76 CSSParserValue* current() { return m_current < m_values.size() ? &m_values[m_current] : 0; } in current()
79 CSSParserValue* valueAt(unsigned i) { return i < m_values.size() ? &m_values[i] : 0; } in valueAt()
81 void clear() { m_values.clear(); } in clear()
86 Vector<CSSParserValue, 16> m_values;
DCSSParserValues.cpp36 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()
47 m_values.append(v); in addValue()
52 if (m_values[i].isVariable()) in deleteValueAt()
54 m_values.remove(i); in deleteValueAt()
DCSSValueList.h49 size_t length() const { return m_values.size(); } in length()
51 CSSValue* itemWithoutBoundsCheck(unsigned index) { return m_values[index].get(); } in itemWithoutBoundsCheck()
71 Vector<RefPtr<CSSValue> > m_values; variable
/external/webkit/WebCore/svg/
DSVGAnimationElement.cpp117 attr->value().string().split(';', m_values); in parseMappedAttribute()
333 unsigned valuesCount = m_values.size(); in calculateKeyTimesForCalcModePaced()
340 float distance = calculateDistance(m_values[n], m_values[n + 1]); in calculateKeyTimesForCalcModePaced()
409 …gned index = effectivePercent == 1.0f ? m_values.size() - 2 : static_cast<unsigned>(effectivePerce… in currentValuesFromKeyPoints()
410 from = m_values[index]; in currentValuesFromKeyPoints()
411 to = m_values[index + 1]; in currentValuesFromKeyPoints()
416 unsigned valuesCount = m_values.size(); in currentValuesForValuesAnimation()
438 from = m_values[index]; in currentValuesForValuesAnimation()
439 to = m_values[index]; in currentValuesForValuesAnimation()
457 from = m_values[index]; in currentValuesForValuesAnimation()
[all …]
DSVGFEColorMatrixElement.cpp38 , m_values(this, SVGNames::valuesAttr, SVGNumberList::create(SVGNames::valuesAttr)) in SVGFEColorMatrixElement()
DSVGAnimationElement.h114 Vector<String> m_values; variable
/external/webkit/WebCore/dom/
DTouchList.h44 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
DTouchList.cpp36 if (index >= m_values.size()) in item()
38 return m_values[index].get(); in item()
/external/webkit/WebCore/platform/graphics/filters/
DFEColorMatrix.cpp33 , m_values(values) in FEColorMatrix()
54 return m_values; in values()
59 m_values = values; in setValues()
DFEColorMatrix.h57 Vector<float> m_values; variable
/external/webkit/WebCore/loader/
DFormState.h46 const HashMap<String, String>& values() const { return m_values; } in values()
53 HashMap<String, String> m_values; variable
DFormState.cpp44 , m_values(values) in FormState()
/external/emma/core/java12/com/vladium/util/args/
DOptsParser.java520 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/WebCore/
DChangeLog-2005-08-2315373 Get the style from the m_values list.
24784 and added code to clear m_values.
DChangeLog13604 Iterates over m_values vector of CSSValue objects calling