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

  /external/webkit/Source/WebCore/page/animation/
KeyframeAnimation.cpp 408 const TransformOperations* firstVal = &m_keyframes[firstNonEmptyTransformKeyframeIndex].style()->transform();
420 if (firstVal->operations().size() != val->operations().size())
424 for (size_t j = 0; j < firstVal->operations().size(); ++j) {
425 if (!firstVal->operations()[j]->isSameType(*val->operations()[j]))
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsLayer.cpp 342 const TransformOperations* firstVal = operationsAt(valueList, firstIndex);
352 if (firstVal->operations().size() != val->operations().size())
355 for (size_t j = 0; j < firstVal->operations().size(); ++j) {
356 if (!firstVal->operations().at(j)->isSameType(*val->operations().at(j)))
367 list.resize(firstVal->operations().size());
368 for (size_t j = 0; j < firstVal->operations().size(); ++j) {
369 TransformOperation::OperationType type = firstVal->operations().at(j)->getOperationType();
377 lastRotAngle = static_cast<RotateTransformOperation*>(firstVal->operations().at(j).get())->angle();
  /external/webrtc/src/modules/audio_processing/aec/main/source/
echo_cancellation.c 60 short firstVal;
236 aecpc->firstVal = 0;
439 aecpc->firstVal = aecpc->msInSndCardBuf;
443 if (abs(aecpc->firstVal - aecpc->msInSndCardBuf) <
  /external/webrtc/src/modules/audio_processing/aecm/main/source/
echo_control_mobile.c 54 short firstVal;
207 aecm->firstVal = 0;
370 aecm->firstVal = aecm->msInSndCardBuf;
374 if (abs(aecm->firstVal - aecm->msInSndCardBuf)
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
HashtableTest.java 98 Object firstVal = "Gabba";
100 map.put("Gah", firstVal);
104 ht.get("Gah") == firstVal);
  /libcore/luni/src/test/java/tests/api/java/util/
HashtableTest.java 121 Object firstVal = "Gabba";
123 map.put("Gah", firstVal);
127 ht.get("Gah") == firstVal);
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp 406 SVal firstVal = state->getSVal(First);
409 Loc *firstLoc = dyn_cast<Loc>(&firstVal);
446 // Switch the values so that firstVal is before secondVal.
    [all...]

Completed in 224 milliseconds