HomeSort by relevance Sort by last modified time
    Searched defs:firstVal (Results 1 - 3 of 3) sorted by null

  /external/webkit/WebCore/page/animation/
KeyframeAnimation.cpp 350 const TransformOperations* firstVal = &firstIt->style()->transform();
361 if (firstVal->operations().size() != val->operations().size())
365 for (size_t j = 0; j < firstVal->operations().size(); ++j) {
366 if (!firstVal->operations()[j]->isSameType(*val->operations()[j]))
  /external/webkit/WebCore/platform/graphics/
GraphicsLayer.cpp 330 const TransformOperations* firstVal = operationsAt(valueList, firstIndex);
340 if (firstVal->operations().size() != val->operations().size())
343 for (size_t j = 0; j < firstVal->operations().size(); ++j) {
344 if (!firstVal->operations().at(j)->isSameType(*val->operations().at(j)))
355 list.resize(firstVal->operations().size());
356 for (size_t j = 0; j < firstVal->operations().size(); ++j) {
357 TransformOperation::OperationType type = firstVal->operations().at(j)->getOperationType();
365 lastRotAngle = static_cast<RotateTransformOperation*>(firstVal->operations().at(j).get())->angle();
  /libcore/luni/src/test/java/tests/api/java/util/
HashtableTest.java 151 Object firstVal = "Gabba";
153 map.put("Gah", firstVal);
157 ht.get("Gah") == firstVal);

Completed in 49 milliseconds