Searched refs:newLeft (Results 1 – 7 of 7) sorted by relevance
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/ |
D | Camera.java | 817 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/ |
D | RootInlineBox.cpp | 416 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()
|
D | RenderTextControlSingleLine.cpp | 1069 void RenderTextControlSingleLine::setScrollLeft(int newLeft) in setScrollLeft() argument 1072 innerTextElement()->setScrollLeft(newLeft); in setScrollLeft()
|
D | RenderBox.cpp | 461 void RenderBox::setScrollLeft(int newLeft) in setScrollLeft() argument 464 layer()->scrollToXOffset(newLeft); in setScrollLeft()
|
/external/webkit/Source/WebCore/dom/ |
D | DocumentMarkerController.cpp | 245 DocumentMarker newLeft = marker; in removeMarkers() local 246 newLeft.endOffset = startOffset; in removeMarkers() 247 markers.insert(i, newLeft); in removeMarkers()
|
D | Element.cpp | 474 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/ |
D | ImmutableSet.h | 479 TreeTy* createNode(TreeTy* newLeft, TreeTy* oldTree, TreeTy* newRight) { in createNode() argument 480 return createNode(newLeft, getValue(oldTree), newRight); in createNode()
|