Home
last modified time | relevance | path

Searched refs:otherVector (Results 1 – 4 of 4) sorted by relevance

/external/llvm/unittests/ADT/
DSmallVectorTest.cpp200 VectorT otherVector; member in __anon27179be20111::SmallVectorTest
391 std::swap(this->theVector, this->otherVector); in TYPED_TEST()
394 this->assertValuesInOrder(this->otherVector, 2u, 1, 2); in TYPED_TEST()
401 this->makeSequence(this->otherVector, 2, 3); in TYPED_TEST()
404 this->theVector.append(this->otherVector.begin(), this->otherVector.end()); in TYPED_TEST()
436 this->otherVector.push_back(Constructable(2)); in TYPED_TEST()
437 this->otherVector.push_back(Constructable(3)); in TYPED_TEST()
440 this->theVector = std::move(this->otherVector); in TYPED_TEST()
447 this->otherVector.clear(); in TYPED_TEST()
629 this->makeSequence(this->otherVector, 1, 3); in TYPED_TEST()
[all …]
/external/jmonkeyengine/engine/src/core/com/jme3/math/
DVector2f.java575 public float smallestAngleBetween(Vector2f otherVector) { in smallestAngleBetween() argument
576 float dotProduct = dot(otherVector); in smallestAngleBetween()
591 public float angleBetween(Vector2f otherVector) { in angleBetween() argument
592 float angle = FastMath.atan2(otherVector.y, otherVector.x) in angleBetween()
DVector3f.java823 public float angleBetween(Vector3f otherVector) {
824 float dotProduct = dot(otherVector);
DVector4f.java772 public float angleBetween(Vector4f otherVector) {
773 float dotProduct = dot(otherVector);