/aosp_15_r20/external/sdv/vsomeip/third_party/boost/numeric/odeint/examples/ |
D | lorenz_point.cpp | 20 //[point3D 21 class point3D : class 22 boost::additive1< point3D , 23 boost::additive2< point3D , double , 24 boost::multiplicative2< point3D , double > > > 30 point3D() in point3D() function in point3D 34 point3D( const double val ) in point3D() function in point3D 38 point3D( const double _x , const double _y , const double _z ) in point3D() function in point3D 42 point3D& operator+=( const point3D &p ) in operator +=() 48 point3D& operator*=( const double a ) in operator *=() [all …]
|
/aosp_15_r20/development/tools/winscope/src/viewers/components/rects/ |
H A D | canvas_test.ts | 20 import {Point3D} from 'common/geometry/point3d'; 208 boundingBox.center = new Point3D(3, 3, 3); 252 newRect.topLeft = new Point3D(0, 0, 1); 260 rect.topLeft = new Point3D(1, 1, 5); 261 rect.bottomRight = new Point3D(2, 2, 5); 368 rect.topLeft = new Point3D(1, 1, 5); 369 rect.bottomRight = new Point3D(2, 2, 5); 373 rect2.topLeft = new Point3D(1, 1, 5); 374 rect2.bottomRight = new Point3D(2, 2, 5); 400 bottomRightChanged.bottomRight = new Point3D(5, 5, 5); [all …]
|
H A D | mapper3d.ts | 20 import {Point3D} from 'common/geometry/point3d'; 282 topLeft: new Point3D(r.x, r.y, z), 283 bottomRight: new Point3D(r.x + r.w, r.y + r.h, z), 291 topLeft: new Point3D(rect2d.x, rect2d.y, z), 292 bottomRight: new Point3D(rect2d.x + rect2d.w, rect2d.y + rect2d.h, z), 425 const bottomLeft = new Point3D( 430 const topRight = new Point3D( 453 const lineEnd = new Point3D( 464 center: new Point3D(lineStart.x, lineStart.y, lineStart.z + 0.5), 484 center: new Point3D(0, 0, 0), [all …]
|
H A D | canvas.ts | 19 import {Point3D} from 'common/geometry/point3d'; 125 const translatedPos = new Point3D( 248 const bottomLeft = new Point3D( 253 const topRight = new Point3D( 294 private makeRectShape(topLeft: Point3D, bottomRight: Point3D): THREE.Shape { 295 const bottomLeft = new Point3D(topLeft.x, bottomRight.y, topLeft.z); 296 const topRight = new Point3D(bottomRight.x, topLeft.y, bottomRight.z); 691 const linePoints = label.linePoints.map((point: Point3D) => { 781 (a as Point3D).isEqual(b as Point3D), 827 translatedPos?: Point3D | undefined;
|
H A D | rect_label.ts | 18 import {Point3D} from 'common/geometry/point3d'; 22 linePoints: Point3D[]; 23 textCenter: Point3D;
|
H A D | ui_rect3d.ts | 17 import {Point3D} from 'common/geometry/point3d'; 24 topLeft: Point3D; 25 bottomRight: Point3D;
|
/aosp_15_r20/packages/services/Car/car-lib/src/android/car/occupantawareness/ |
D | GazeDetection.java | 97 public final @Nullable Point3D leftEyePosition; 107 public final @Nullable Point3D rightEyePosition; 115 public final @Nullable Point3D headAngleUnitVector; 123 public final @Nullable Point3D gazeAngleUnitVector; 133 @Nullable Point3D leftEyePosition, in GazeDetection() 134 @Nullable Point3D rightEyePosition, in GazeDetection() 135 @Nullable Point3D headAngleUnitVector, in GazeDetection() 136 @Nullable Point3D gazeAngleUnitVector, in GazeDetection() 194 leftEyePosition = in.readParcelable(Point3D.class.getClassLoader()); in GazeDetection() 195 rightEyePosition = in.readParcelable(Point3D.class.getClassLoader()); in GazeDetection() [all …]
|
D | Point3D.java | 32 public final class Point3D implements Parcelable { class 42 public Point3D(double valueX, double valueY, double valueZ) { in Point3D() method in Point3D 66 public static final @NonNull Parcelable.Creator<Point3D> CREATOR = 67 new Parcelable.Creator<Point3D>() { 68 public Point3D createFromParcel(Parcel in) { 69 return new Point3D(in); 72 public Point3D[] newArray(int size) { 73 return new Point3D[size]; 77 private Point3D(Parcel in) { in Point3D() method in Point3D
|
/aosp_15_r20/external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/ |
H A D | Shape.java | 20 private Point3d point3d; field in Shape 23 public Point3d getPoint3d() { in getPoint3d() 24 return point3d; in getPoint3d() 27 public void setPoint3d(Point3d point3d) { in setPoint3d() argument 28 this.point3d = point3d; in setPoint3d()
|
H A D | Point3d.java | 16 public class Point3d { class 21 public Point3d(Point point, Double z) { in Point3d() method in Point3d 36 return "<Point3d point=" + point.toString() + " z=" + z + ">"; in toString()
|
/aosp_15_r20/development/tools/winscope/src/common/geometry/ |
H A D | transform_matrix.ts | 18 import {Point3D} from './point3d'; 70 transformPoint3D(point: Point3D): Point3D { 72 return new Point3D(p.x, p.y, point.z);
|
H A D | rect3d.ts | 17 import {Point3D} from './point3d'; 20 topLeft: Point3D; 21 bottomRight: Point3D;
|
H A D | circle3d.ts | 17 import {Point3D} from './point3d'; 21 center: Point3D;
|
H A D | box3d.ts | 17 import {Point3D} from './point3d'; 23 center: Point3D;
|
H A D | point3d.ts | 19 export class Point3D implements Point { class 22 isEqual(other: Point3D): boolean {
|
/aosp_15_r20/packages/services/Car/tests/carservice_unit_test/res/raw/ |
D | car_hidden_apis.txt | 536 android.car.occupantawareness GazeDetection Point3D gazeAngleUnitVector 537 android.car.occupantawareness GazeDetection Point3D headAngleUnitVector 538 android.car.occupantawareness GazeDetection Point3D leftEyePosition 539 android.car.occupantawareness GazeDetection Point3D rightEyePosition 585 android.car.occupantawareness Point3D Parcelable.Creator<Point3D> CREATOR 586 android.car.occupantawareness Point3D String toString() 587 android.car.occupantawareness Point3D double x 588 android.car.occupantawareness Point3D double y 589 android.car.occupantawareness Point3D double z 590 android.car.occupantawareness Point3D int describeContents() [all …]
|
/aosp_15_r20/packages/services/Car/service/src/com/android/car/ |
D | OccupantAwarenessUtils.java | 25 import android.car.occupantawareness.Point3D; 112 * Converts an input point to a Point3D. Returns null if the source vector was null or empty. 114 static Point3D convertToPoint3D(@Nullable double[] vector) { in convertToPoint3D() 116 return new Point3D(vector[0], vector[1], vector[2]); in convertToPoint3D()
|
/aosp_15_r20/hardware/interfaces/automotive/sv/1.0/default/ |
H A D | SurroundView3dSession.cpp | 244 Point3dFloat point3d; in projectCameraPointsTo3dSurface() local 245 point3d.isValid = true; in projectCameraPointsTo3dSurface() 250 point3d.isValid = false; in projectCameraPointsTo3dSurface() 252 points3d.push_back(point3d); in projectCameraPointsTo3dSurface()
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/numeric/odeint/doc/ |
D | details_state_types_algebras_operations.qbk | 420 As example we define a new class `point3D` representing a three-dimensional 426 [point3D] 429 operators like `operator+( point3D , point3D )` because that is taken care of 460 example with `point3D`, you have to manually configure the right
|
/aosp_15_r20/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/interop/ |
H A D | DeprecatedTypeHandling1102Test.java | 26 static class Point3D extends Point { class in DeprecatedTypeHandling1102Test 46 JavaType elem = SimpleType.construct(Point3D.class); in testPOJOSubType() 48 Point3D p = MAPPER.readValue(aposToQuotes("{'x':1,'z':3,'y':2}"), elem); in testPOJOSubType()
|
/aosp_15_r20/external/deqp-deps/SPIRV-Tools/test/fuzz/ |
D | transformation_set_memory_operands_mask_test.cpp | 35 OpName %7 "Point3D" in TEST() 243 OpName %7 "Point3D" in TEST() 313 OpName %7 "Point3D" in TEST() 502 OpName %7 "Point3D" in TEST()
|
/aosp_15_r20/external/angle/third_party/spirv-tools/src/test/fuzz/ |
H A D | transformation_set_memory_operands_mask_test.cpp | 35 OpName %7 "Point3D" in TEST() 243 OpName %7 "Point3D" in TEST() 313 OpName %7 "Point3D" in TEST() 502 OpName %7 "Point3D" in TEST()
|
/aosp_15_r20/external/swiftshader/third_party/SPIRV-Tools/test/fuzz/ |
H A D | transformation_set_memory_operands_mask_test.cpp | 35 OpName %7 "Point3D" in TEST() 243 OpName %7 "Point3D" in TEST() 313 OpName %7 "Point3D" in TEST() 502 OpName %7 "Point3D" in TEST()
|
/aosp_15_r20/system/media/audio_utils/include/audio_utils/ |
H A D | template_utils.h | 116 * struct Point3D { 121 * Point3D point{1, 2, 3}; 276 * struct Point3D { 353 * struct Point3D {
|
/aosp_15_r20/external/snakeyaml/src/test/resources/immutable/ |
H A D | shape1.yaml | 6 point3d: !!org.yaml.snakeyaml.immutable.Point3d
|