Searched defs:valueList (Results 1 - 10 of 10) sorted by relevance

/external/webkit/WebCore/css/
H A DCSSVariableDependentValue.h37 static PassRefPtr<CSSVariableDependentValue> create(PassRefPtr<CSSValueList> valueList) argument
39 return adoptRef(new CSSVariableDependentValue(valueList));
47 CSSValueList* valueList() const { return m_list.get(); } function in class:WebCore::CSSVariableDependentValue
H A DMediaQueryExp.cpp37 MediaQueryExp::MediaQueryExp(const AtomicString& mediaFeature, CSSParserValueList* valueList) argument
41 if (valueList) {
42 if (valueList->size() == 1) {
43 CSSParserValue* value = valueList->current();
53 valueList->next();
54 } else if (valueList->size() > 1) {
62 while ((value = valueList->current()) && isValid) {
70 value = valueList->next();
H A DCSSMutableStyleDeclaration.cpp298 CSSValueList* valueList = static_cast<CSSValueList*>(values[i].get()); local
299 numLayers = max(valueList->length(), numLayers);
H A DMediaQueryEvaluator.cpp172 CSSValueList* valueList = static_cast<CSSValueList*>(value); local
173 if (valueList->length() == 3) {
174 CSSValue* i0 = valueList->itemWithoutBoundsCheck(0);
175 CSSValue* i1 = valueList->itemWithoutBoundsCheck(1);
176 CSSValue* i2 = valueList->itemWithoutBoundsCheck(2);
H A DCSSParser.cpp5163 bool CSSParser::addVariable(const CSSParserString& name, CSSParserValueList* valueList) argument
5165 if (checkForVariables(valueList)) {
5166 delete valueList;
5170 m_variableValues.append(CSSValueList::createFromParserValueList(valueList));
5233 bool CSSParser::checkForVariables(CSSParserValueList* valueList) argument
5235 if (!valueList || !valueList->containsVariables())
5239 for (unsigned i = 0; i < valueList->size(); ++i) {
5240 if (valueList->valueAt(i)->isVariable()) {
5245 if (valueList
[all...]
H A DCSSStyleSelector.cpp191 CSSValueList* valueList = static_cast<CSSValueList*>(value); \
192 for (unsigned int i = 0; i < valueList->length(); i++) { \
198 mapFill##Prop(currChild, valueList->itemWithoutBoundsCheck(i)); \
255 CSSValueList* valueList = static_cast<CSSValueList*>(value); \
256 for (unsigned int i = 0; i < valueList->length(); i++) { \
259 mapAnimation##Prop(list->animation(childIndex), valueList->itemWithoutBoundsCheck(i)); \
305 CSSValueList* valueList = static_cast<CSSValueList*>(value); \
306 for (unsigned int i = 0; i < valueList->length(); i++) { \
309 mapAnimation##Prop(list->animation(childIndex), valueList->itemWithoutBoundsCheck(i)); \
605 CSSValueList* valueList local
[all...]
/external/opencore/protocols/http_parcom/src/
H A Dhttp_composer.cpp277 StrPtrLen *valueList = OSCL_ARRAY_NEW(StrPtrLen, numKeyValuePairs); local
278 cleanup.setValueList(valueList);
279 if (!keyList || !valueList) return false; // let cleanup object to do automatic deallocation
289 while (iKeyValueStore->getValueByKey(keyList[j], valueList[i], index))
298 oscl_memcpy(ptr, valueList[i].c_str(), valueList[i].length()); // same field key
299 ptr += valueList[i].length();
/external/webkit/WebCore/platform/graphics/
H A DGraphicsLayer.cpp304 static inline const TransformOperations* operationsAt(const KeyframeValueList& valueList, size_t index) argument
306 return static_cast<const TransformAnimationValue*>(valueList.at(index))->value();
309 void GraphicsLayer::fetchTransformOperationList(const KeyframeValueList& valueList, TransformOperationList& list, bool& isValid, bool& hasBigRotation) argument
311 ASSERT(valueList.property() == AnimatedPropertyWebkitTransform);
317 if (valueList.size() < 2)
322 for ( ; firstIndex < valueList.size(); ++firstIndex) {
323 if (operationsAt(valueList, firstIndex)->operations().size() > 0)
327 if (firstIndex >= valueList.size())
330 const TransformOperations* firstVal = operationsAt(valueList, firstIndex);
333 for (size_t i = firstIndex + 1; i < valueList
[all...]
/external/webkit/WebCore/platform/graphics/android/
H A DGraphicsLayerAndroid.cpp532 bool GraphicsLayerAndroid::addAnimation(const KeyframeValueList& valueList, argument
538 if (!anim || anim->isEmptyOrZeroDuration() || valueList.size() != 2)
542 if (valueList.property() == AnimatedPropertyWebkitTransform) {
543 createdAnimations = createTransformAnimationsFromKeyframes(valueList,
549 createdAnimations = createAnimationFromKeyframes(valueList,
558 bool GraphicsLayerAndroid::createAnimationFromKeyframes(const KeyframeValueList& valueList, argument
561 bool isKeyframe = valueList.size() > 2;
566 switch (valueList.property()) {
573 static_cast<const FloatAnimationValue*>(valueList.at(0));
575 static_cast<const FloatAnimationValue*>(valueList
599 createTransformAnimationsFromKeyframes(const KeyframeValueList& valueList, const Animation* animation, const String& keyframesName, double beginTime, const IntSize& boxSize) argument
[all...]
/external/icu4c/tools/genpname/
H A Dgenpname.cpp91 const Alias* valueList; member in class:Property
96 const Alias* valueList);
105 valueList(_valueList)
1153 AliasArrayList values(PROPERTY[i].valueList,

Completed in 82 milliseconds