Searched refs:valueList (Results 1 - 25 of 28) sorted by relevance

12

/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/clutter/
H A DGraphicsLayerClutter.cpp224 static bool animationHasStepsTimingFunction(const KeyframeValueList& valueList, const Animation* anim) argument
229 for (unsigned i = 0; i < valueList.size(); ++i) {
230 const TimingFunction* timingFunction = valueList.at(i).timingFunction();
1039 bool GraphicsLayerClutter::setTransformAnimationKeyframes(const KeyframeValueList& valueList, const Animation* animation, PlatformClutterAnimation* keyframeAnim, int functionIndex, TransformOperation::OperationType transformOpType, bool isMatrixAnimation, const IntSize& boxSize) argument
1049 for (unsigned i = 0; i < valueList.size(); ++i) {
1050 unsigned index = forwards ? i : (valueList.size() - i - 1);
1051 const TransformAnimationValue& curValue = static_cast<const TransformAnimationValue&>(valueList.at(index));
1082 if (i < (valueList.size() - 1))
1083 timingFunctions.append(timingFunctionForAnimationValue(forwards ? curValue : valueList.at(index - 1), *animation));
1104 bool GraphicsLayerClutter::setTransformAnimationEndpoints(const KeyframeValueList& valueList, cons argument
1169 appendToUncommittedAnimations(const KeyframeValueList& valueList, const TransformOperations* operations, const Animation* animation, const String& animationName, const IntSize& boxSize, int animationIndex, double timeOffset, bool isMatrixAnimation) argument
1192 createTransformAnimationsFromKeyframes(const KeyframeValueList& valueList, const Animation* animation, const String& animationName, double timeOffset, const IntSize& boxSize) argument
1224 createAnimationFromKeyframes(const KeyframeValueList& valueList, const Animation* animation, const String& animationName, double timeOffset) argument
1252 addAnimation(const KeyframeValueList& valueList, const IntSize& boxSize, const Animation* anim, const String& animationName, double timeOffset) argument
1320 setAnimationEndpoints(const KeyframeValueList& valueList, const Animation* animation, PlatformClutterAnimation* basicAnim) argument
1347 setAnimationKeyframes(const KeyframeValueList& valueList, const Animation* animation, PlatformClutterAnimation* keyframeAnim) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DGraphicsLayer.cpp423 static inline const FilterOperations& filterOperationsAt(const KeyframeValueList& valueList, size_t index) argument
425 return static_cast<const FilterAnimationValue&>(valueList.at(index)).value();
428 int GraphicsLayer::validateFilterOperations(const KeyframeValueList& valueList) argument
430 ASSERT(valueList.property() == AnimatedPropertyWebkitFilter);
432 if (valueList.size() < 2)
437 for ( ; firstIndex < valueList.size(); ++firstIndex) {
438 if (!filterOperationsAt(valueList, firstIndex).operations().isEmpty())
442 if (firstIndex >= valueList.size())
445 const FilterOperations& firstVal = filterOperationsAt(valueList, firstIndex);
447 for (size_t i = firstIndex + 1; i < valueList
466 operationsAt(const KeyframeValueList& valueList, size_t index) argument
471 validateTransformOperations(const KeyframeValueList& valueList, bool& hasBigRotation) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DMediaQueryExp.cpp157 inline MediaQueryExp::MediaQueryExp(const AtomicString& mediaFeature, CSSParserValueList* valueList) argument
163 if (valueList) {
164 if (valueList->size() == 1) {
165 CSSParserValue* value = valueList->current();
192 } else if (valueList->size() == 3 && featureWithAspectRatio(mediaFeature)) {
201 for (unsigned i = 0; i < 3; ++i, valueList->next()) {
202 const CSSParserValue* value = valueList->current();
H A Dmakevalues.pl93 static const char* const valueList[] = {
114 return valueList[id];
H A DCSSParserValues.cpp60 void CSSParserValueList::extend(CSSParserValueList& valueList) argument
62 for (unsigned int i = 0; i < valueList.size(); ++i)
63 m_values.append(*(valueList.valueAt(i)));
H A DCSSParser.cpp3821 bool CSSParser::parseFillImage(CSSParserValueList* valueList, RefPtr<CSSValue>& value) argument
3823 if (valueList->current()->id == CSSValueNone) {
3827 if (valueList->current()->unit == CSSPrimitiveValue::CSS_URI) {
3828 value = CSSImageValue::create(completeURL(valueList->current()->string));
3832 if (isGeneratedImageValue(valueList->current()))
3833 return parseGeneratedImage(valueList, value);
3836 if (valueList->current()->unit == CSSParserValue::Function && equalIgnoringCase(valueList->current()->function->name, "-webkit-image-set(")) {
3846 PassRefPtr<CSSValue> CSSParser::parseFillPositionX(CSSParserValueList* valueList) argument
3848 int id = valueList
3862 parseFillPositionY(CSSParserValueList* valueList) argument
3878 parseFillPositionComponent(CSSParserValueList* valueList, unsigned& cumulativeFlags, FillPositionFlag& individualFlag, FillPositionParsingMode parsingMode) argument
3943 parse4ValuesFillPosition(CSSParserValueList* valueList, RefPtr<CSSValue>& value1, RefPtr<CSSValue>& value2, PassRefPtr<CSSPrimitiveValue> parsedValue1, PassRefPtr<CSSPrimitiveValue> parsedValue2) argument
3991 parse3ValuesFillPosition(CSSParserValueList* valueList, RefPtr<CSSValue>& value1, RefPtr<CSSValue>& value2, PassRefPtr<CSSPrimitiveValue> parsedValue1, PassRefPtr<CSSPrimitiveValue> parsedValue2) argument
4087 parseFillPosition(CSSParserValueList* valueList, RefPtr<CSSValue>& value1, RefPtr<CSSValue>& value2) argument
4150 parse2ValuesFillPosition(CSSParserValueList* valueList, RefPtr<CSSValue>& value1, RefPtr<CSSValue>& value2) argument
[all...]
H A DCSSGrammar.y.in47 CSSParserValueList* valueList;
274 %type <valueList> maybe_media_value
292 %type <valueList> key_list
323 %type <valueList> expr
329 %type <valueList> calc_func_expr
330 %type <valueList> calc_func_expr_list
331 %type <valueList> calc_func_paren_expr
1767 CSSParserValueList* valueList = parser->createFloatingValueList();
1768 f->args = parser->sinkFloatingValueList(valueList);
H A DDeprecatedStyleBuilder.cpp548 CSSValueList* valueList = static_cast<CSSValueList*>(value); local
549 for (unsigned int i = 0; i < valueList->length(); i++) {
555 (styleResolver->styleMap()->*mapFillFunction)(propertyId, currChild, valueList->itemWithoutBoundsCheck(i));
943 CSSValueList* valueList = static_cast<CSSValueList*>(value); local
944 for (size_t i = 0; i < valueList->length(); ++i) {
945 CSSValue* item = valueList->itemWithoutBoundsCheck(i);
1989 CSSValueList* valueList = static_cast<CSSValueList*>(value);
1993 for (size_t i = 0; i < valueList->length(); i++) {
1994 CSSValue* item = valueList->itemWithoutBoundsCheck(i);
2047 CSSValueList* valueList local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/ca/
H A DGraphicsLayerCA.cpp252 static bool animationHasStepsTimingFunction(const KeyframeValueList& valueList, const Animation* anim) argument
257 for (unsigned i = 0; i < valueList.size(); ++i) {
258 if (const TimingFunction* timingFunction = valueList.at(i).timingFunction()) {
699 bool GraphicsLayerCA::addAnimation(const KeyframeValueList& valueList, const IntSize& boxSize, const Animation* anim, const String& animationName, double timeOffset) argument
703 if (!anim || anim->isEmptyOrZeroDuration() || valueList.size() < 2)
708 if (animationHasStepsTimingFunction(valueList, anim))
712 if (valueList.property() == AnimatedPropertyWebkitTransform)
713 createdAnimations = createTransformAnimationsFromKeyframes(valueList, anim, animationName, timeOffset, boxSize);
715 else if (valueList.property() == AnimatedPropertyWebkitFilter) {
717 createdAnimations = createFilterAnimationsFromKeyframes(valueList, ani
2056 createAnimationFromKeyframes(const KeyframeValueList& valueList, const Animation* animation, const String& animationName, double timeOffset) argument
2084 appendToUncommittedAnimations(const KeyframeValueList& valueList, const TransformOperations* operations, const Animation* animation, const String& animationName, const IntSize& boxSize, int animationIndex, double timeOffset, bool isMatrixAnimation) argument
2107 createTransformAnimationsFromKeyframes(const KeyframeValueList& valueList, const Animation* animation, const String& animationName, double timeOffset, const IntSize& boxSize) argument
2160 appendToUncommittedAnimations(const KeyframeValueList& valueList, const FilterOperation* operation, const Animation* animation, const String& animationName, int animationIndex, double timeOffset) argument
2195 createFilterAnimationsFromKeyframes(const KeyframeValueList& valueList, const Animation* animation, const String& animationName, double timeOffset) argument
2285 setAnimationEndpoints(const KeyframeValueList& valueList, const Animation* animation, PlatformCAAnimation* basicAnim) argument
2312 setAnimationKeyframes(const KeyframeValueList& valueList, const Animation* animation, PlatformCAAnimation* keyframeAnim) argument
2347 setTransformAnimationEndpoints(const KeyframeValueList& valueList, const Animation* animation, PlatformCAAnimation* basicAnim, int functionIndex, TransformOperation::OperationType transformOpType, bool isMatrixAnimation, const IntSize& boxSize) argument
2410 setTransformAnimationKeyframes(const KeyframeValueList& valueList, const Animation* animation, PlatformCAAnimation* keyframeAnim, int functionIndex, TransformOperation::OperationType transformOpType, bool isMatrixAnimation, const IntSize& boxSize) argument
2474 setFilterAnimationEndpoints(const KeyframeValueList& valueList, const Animation* animation, PlatformCAAnimation* basicAnim, int functionIndex, int internalFilterPropertyIndex) argument
2514 setFilterAnimationKeyframes(const KeyframeValueList& valueList, const Animation* animation, PlatformCAAnimation* keyframeAnim, int functionIndex, int internalFilterPropertyIndex, FilterOperation::OperationType filterOp) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/texmap/
H A DGraphicsLayerTextureMapper.cpp625 bool GraphicsLayerTextureMapper::addAnimation(const KeyframeValueList& valueList, const IntSize& boxSize, const Animation* anim, const String& keyframesName, double timeOffset) argument
629 if (!anim || anim->isEmptyOrZeroDuration() || valueList.size() < 2 || (valueList.property() != AnimatedPropertyWebkitTransform && valueList.property() != AnimatedPropertyOpacity))
635 if (valueList.property() == AnimatedPropertyWebkitTransform)
636 listsMatch = validateTransformOperations(valueList, hasBigRotation) >= 0;
639 m_animations.add(GraphicsLayerAnimation(keyframesName, valueList, boxSize, anim, currentTime - timeOffset, listsMatch));
/macosx-10.9.5/tcl-102/tcl_ext/tclx/tclx/generic/
H A DtclXutil.c695 char valueList [64];
744 valueList [0] = '\0';
745 valueList [sizeof (valueList) - 1] = '\0'; /* Overflow check */
746 strValue = valueList;
748 strcat (valueList, FormatTranslationOption (readValue));
749 strcat (valueList, " ");
750 strcat (valueList, FormatTranslationOption (writeValue));
751 if (valueList [sizeof (valueList)
681 char valueList [64]; local
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/ncgi/
H A Dncgi.tcl98 namespace export nvlist parse input value valueList names
386 # You should use the ncgi::value or ncgi::valueList procedures to get those
462 # of a checkbox), use ncgi::valueList
500 # ::ncgi::valueList
513 proc ::ncgi::valueList {key {default {}}} {
535 # Alters the ncgi::value and possibly the ncgi::valueList variables
556 # Alters the ncgi::value and possibly the ncgi::valueList variables
587 # Alters the ncgi::value and possibly the ncgi::valueList variables
604 # Alters the ncgi::value and possibly the ncgi::valueList variables
935 set valueList [parseMimeValu
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/texmap/coordinated/
H A DCoordinatedGraphicsLayer.cpp1205 bool CoordinatedGraphicsLayer::addAnimation(const KeyframeValueList& valueList, const IntSize& boxSize, const Animation* anim, const String& keyframesName, double delayAsNegativeTimeOffset) argument
1209 if (!anim || anim->isEmptyOrZeroDuration() || valueList.size() < 2 || (valueList.property() != AnimatedPropertyWebkitTransform && valueList.property() != AnimatedPropertyOpacity && valueList.property() != AnimatedPropertyWebkitFilter))
1215 if (valueList.property() == AnimatedPropertyWebkitTransform)
1216 listsMatch = validateTransformOperations(valueList, ignoredHasBigRotation) >= 0;
1219 m_animations.add(GraphicsLayerAnimation(keyframesName, valueList, boxSize, anim, m_lastAnimationStartTime, listsMatch));
/macosx-10.9.5/tcl-102/tcl_ext/memchan/memchan/tools/
H A DgenStubs.tcl879 # valueList A list containing the values to be assigned.
885 proc lassign {valueList args} {
890 uplevel [list foreach $args $valueList {break}]
891 return [lrange $valueList [llength $args] end]
/macosx-10.9.5/tcl-102/tcl_ext/tbcload/tbcload/tools/
H A DgenStubs.tcl879 # valueList A list containing the values to be assigned.
885 proc lassign {valueList args} {
890 uplevel 1 [list foreach $args $valueList {break}]
891 return [lrange $valueList [llength $args] end]
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tcldom/tools/
H A DgenStubs.tcl879 # valueList A list containing the values to be assigned.
885 proc lassign {valueList args} {
890 uplevel [list foreach $args $valueList {break}]
891 return [lrange $valueList [llength $args] end]
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tclxml/tools/
H A DgenStubs.tcl879 # valueList A list containing the values to be assigned.
885 proc lassign {valueList args} {
890 uplevel [list foreach $args $valueList {break}]
891 return [lrange $valueList [llength $args] end]
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/tools/
H A DgenStubs.tcl879 # valueList A list containing the values to be assigned.
885 proc lassign {valueList args} {
890 uplevel [list foreach $args $valueList {break}]
891 return [lrange $valueList [llength $args] end]
/macosx-10.9.5/tcl-102/tk/tk/generic/ttk/
H A DttkGenStubs.tcl887 # valueList A list containing the values to be assigned.
894 proc lassign {valueList args} {
898 uplevel [list foreach $args $valueList {break}]
899 return [lrange $valueList [llength $args] end]
/macosx-10.9.5/WebCore-7537.78.1/html/parser/
H A DXSSAuditor.cpp207 Vector<String> valueList; local
208 value.split(';', valueList);
209 for (size_t i = 0; i < valueList.size(); ++i) {
210 if (protocolIsJavaScript(valueList[i]))
/macosx-10.9.5/tcl-102/tcl/tcl/tools/
H A DgenStubs.tcl1164 # valueList A list containing the values to be assigned.
1171 proc lassign {valueList args} {
1175 uplevel [list foreach $args $valueList {break}]
1176 return [lrange $valueList [llength $args] end]
/macosx-10.9.5/tcl-102/tcl84/tcl/tools/
H A DgenStubs.tcl952 # valueList A list containing the values to be assigned.
958 proc lassign {valueList args} {
963 uplevel [list foreach $args $valueList {break}]
964 return [lrange $valueList [llength $args] end]
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/incrTcl/tools/
H A DgenStubs.tcl955 # valueList A list containing the values to be assigned.
961 proc lassign {valueList args} {
966 uplevel [list foreach $args $valueList {break}]
967 return [lrange $valueList [llength $args] end]
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/tools/
H A DgenStubs.tcl1194 # valueList A list containing the values to be assigned.
1201 proc lassign {valueList args} {
1205 uplevel [list foreach $args $valueList {break}]
1206 return [lrange $valueList [llength $args] end]
/macosx-10.9.5/tcl-102/tcl_ext/tktreectrl/tktreectrl/generic/
H A Dqebind.c346 BindValue *valuePtr, **valueList; local
379 valueList = (BindValue **) Tcl_DStringValue(&dString);
381 DeleteBinding(bindPtr, valueList[i]);
694 BindValue *valuePtr, **valueList; local
724 valueList = (BindValue **) Tcl_DStringValue(&dString);
726 DeleteBinding(bindPtr, valueList[i]);

Completed in 361 milliseconds

12