Searched refs:newPos (Results 1 – 9 of 9) sorted by relevance
/external/webkit/Source/WebCore/rendering/ |
D | RenderMarquee.cpp | 282 int newPos; in timerFired() local 284 newPos = m_end; in timerFired() 298 newPos = currentPos + (addIncrement ? increment : -increment); in timerFired() 300 newPos = min(newPos, endPoint); in timerFired() 302 newPos = max(newPos, endPoint); in timerFired() 305 if (newPos == endPoint) { in timerFired() 314 m_layer->scrollToXOffset(newPos); in timerFired() 316 m_layer->scrollToYOffset(newPos); in timerFired()
|
/external/javassist/src/main/javassist/expr/ |
D | NewExpr.java | 28 int newPos; field in NewExpr 37 newPos = np; in NewExpr() 141 int op = iterator.byteAt(newPos + 3); in canReplace() 145 && iterator.byteAt(newPos + 4) == Opcode.SWAP) in canReplace() 165 int pos = newPos; in replace()
|
/external/jmonkeyengine/engine/src/core-data/Common/ShaderLib/ |
D | Skinning.glsllib | 15 vec4 newPos = vec4(0.0); 20 newPos += weight.x * (skinMat * position); 26 position = newPos;
|
/external/webkit/Source/WebCore/platform/ |
D | ScrollAnimatorWin.cpp | 85 …float newPos = std::max(std::min(data->m_desiredPos + (step * multiplier), static_cast<float>(m_sc… in scroll() local 86 if (newPos == data->m_desiredPos) in scroll() 88 data->m_desiredPos = newPos; in scroll() 135 float animationStep = fabs(newPos - *data->m_currentPos); in scroll()
|
D | ScrollAnimator.cpp | 65 …float newPos = std::max(std::min(*currentPos + (step * multiplier), static_cast<float>(m_scrollabl… in scroll() local 66 if (*currentPos == newPos) in scroll() 68 *currentPos = newPos; in scroll()
|
/external/webkit/Source/WebCore/platform/mac/ |
D | ScrollAnimatorMac.mm | 531 …float newPos = std::max<float>(std::min<float>(currentPos + (step * multiplier), static_cast<float… 532 if (currentPos == newPos) 538 …entation == HorizontalScrollbar ? NSMakePoint(newPos, targetOrigin.y) : NSMakePoint(targetOrigin.x… 540 …ientation == HorizontalScrollbar ? NSMakePoint(newPos, m_currentPosY) : NSMakePoint(m_currentPosX,…
|
/external/icu4c/i18n/ |
D | tmutfmt.cpp | 244 int32_t newPos = -1; in parseObject() local 314 newPos = pos.getIndex(); in parseObject() 348 pos.setIndex(newPos); in parseObject()
|
/external/webkit/Tools/DumpRenderTree/win/ |
D | LayoutTestControllerWin.cpp | 711 int newPos = cygwinPath.find('/', oldPos); in resolveCygwinPath() local 713 if (newPos == -1) { in resolveCygwinPath() 725 wstring pathComponent = cygwinPath.substr(oldPos, newPos - oldPos); in resolveCygwinPath() 732 oldPos = newPos + 1; in resolveCygwinPath()
|
/external/jmonkeyengine/engine/src/core/com/jme3/scene/ |
D | Mesh.java | 274 VertexBuffer newPos = oldPos.clone(); in cloneForAnim() local 276 clone.setBuffer(newPos); in cloneForAnim()
|