Home
last modified time | relevance | path

Searched refs:newLeft (Results 1 – 7 of 7) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/renderer/
DCamera.java817 Vector3f newLeft = vars.vect3; in lookAt() local
826 newLeft.set(newUp).crossLocal(newDirection).normalizeLocal(); in lookAt()
827 if (newLeft.equals(Vector3f.ZERO)) { in lookAt()
829 newLeft.set(newDirection.y, -newDirection.x, 0f); in lookAt()
831 newLeft.set(0f, newDirection.z, -newDirection.y); in lookAt()
835 newUp.set(newDirection).crossLocal(newLeft).normalizeLocal(); in lookAt()
837 this.rotation.fromAxes(newLeft, newUp, newDirection); in lookAt()
/external/webkit/Source/WebCore/rendering/
DRootInlineBox.cpp416 int newLeft = block()->logicalLeftOffsetForLine(selectionTop, false); in selectionTop() local
418 if (prevLeft > newLeft || prevRight < newRight) in selectionTop()
442 int newLeft = block()->logicalLeftOffsetForLine(selectionBottom, false); in selectionBottom() local
444 if (nextLeft > newLeft || nextRight < newRight) in selectionBottom()
DRenderTextControlSingleLine.cpp1069 void RenderTextControlSingleLine::setScrollLeft(int newLeft) in setScrollLeft() argument
1072 innerTextElement()->setScrollLeft(newLeft); in setScrollLeft()
DRenderBox.cpp461 void RenderBox::setScrollLeft(int newLeft) in setScrollLeft() argument
464 layer()->scrollToXOffset(newLeft); in setScrollLeft()
/external/webkit/Source/WebCore/dom/
DDocumentMarkerController.cpp245 DocumentMarker newLeft = marker; in removeMarkers() local
246 newLeft.endOffset = startOffset; in removeMarkers()
247 markers.insert(i, newLeft); in removeMarkers()
DElement.cpp474 void Element::setScrollLeft(int newLeft) in setScrollLeft() argument
478 rend->setScrollLeft(static_cast<int>(newLeft * rend->style()->effectiveZoom())); in setScrollLeft()
/external/llvm/include/llvm/ADT/
DImmutableSet.h479 TreeTy* createNode(TreeTy* newLeft, TreeTy* oldTree, TreeTy* newRight) { in createNode() argument
480 return createNode(newLeft, getValue(oldTree), newRight); in createNode()