/aosp_15_r20/external/rust/android-crates-io/crates/winnow/src/macros/ |
D | test.rs | 47 struct Point { in seq_struct_basics() struct 48 x: u32, in seq_struct_basics() 49 y: u32, in seq_struct_basics() 52 fn parser(input: &mut &str) -> PResult<Point> { in seq_struct_basics() 85 struct Point { in seq_struct_default_init() struct 86 x: u32, in seq_struct_default_init() 87 y: u32, in seq_struct_default_init() 88 z: u32, in seq_struct_default_init() 91 fn parser(input: &mut &str) -> PResult<Point> { in seq_struct_default_init() 127 struct Point { in seq_struct_trailing_comma_elided() struct [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/image/draw/ |
D | draw.go | 55 func (op Op) Draw(dst Image, r image.Rectangle, src image.Image, sp image.Point) { 63 Draw(dst Image, r image.Rectangle, src image.Image, sp image.Point) 83 …ip(dst Image, r *image.Rectangle, src image.Image, sp *image.Point, mask image.Image, mp *image.Po… 103 func processBackward(dst image.Image, r image.Rectangle, src image.Image, sp image.Point) bool { 110 func Draw(dst Image, r image.Rectangle, src image.Image, sp image.Point, op Op) { 116 …Mask(dst Image, r image.Rectangle, src image.Image, sp image.Point, mask image.Image, mp image.Poi… 435 func drawCopyOver(dst *image.RGBA, r image.Rectangle, src *image.RGBA, sp image.Point) { 485 srcPix []byte, srcStride int, sp image.Point, 507 func drawNRGBAOver(dst *image.RGBA, r image.Rectangle, src *image.NRGBA, sp image.Point) { 544 func drawNRGBASrc(dst *image.RGBA, r image.Rectangle, src *image.NRGBA, sp image.Point) { [all …]
|
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/font-types-0.4.3/src/ |
H A D | point.rs | 7 pub struct Point<T> { struct 14 impl<T> Point<T> { impl 39 impl<T> Add for Point<T> implementation 54 impl<T> AddAssign for Point<T> implementation 65 impl<T> Sub for Point<T> implementation 80 impl<T> SubAssign for Point<T> implementation 91 impl<T> Mul for Point<T> implementation 106 impl<T> Mul<T> for Point<T> implementation 121 impl<T> MulAssign for Point<T> implementation 132 impl<T> MulAssign<T> for Point<T> implementation [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/crypto/internal/edwards25519/ |
D | edwards25519.go | 28 type Point struct { struct 31 _ incomparable 35 x, y, z, t field.Element member 40 func checkInitialized(points ...*Point) { 106 func (v *Point) Set(u *Point) *Point { 115 func (v *Point) Bytes() []byte { 122 func (v *Point) bytes(buf *[32]byte) []byte { 144 func (v *Point) SetBytes(x []byte) (*Point, error) { 209 func (v *Point) fromP1xP1(p *projP1xP1) *Point { 217 func (v *Point) fromP2(p *projP2) *Point { [all …]
|
/aosp_15_r20/external/tensorflow/tensorflow/core/lib/monitoring/ |
H A D | collected_metrics.h | 75 struct Point { struct 82 // MetricDescriptor for this Point. argument 86 std::vector<Label> labels; 89 ValueType value_type; 90 int64_t int64_value; 91 string string_value; 92 bool bool_value; 93 HistogramProto histogram_value; 94 Percentiles percentiles_value; 143 std::vector<std::unique_ptr<Point>> points; argument
|
/aosp_15_r20/external/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/span/ |
H A D | span.go | 33 type Point struct { struct 34 v point 63 func New(uri URI, start Point, end Point) Span { 85 func ComparePoint(a, b Point) int { 124 func (p Point) HasPosition() bool { return p.v.hasPosition() } 125 func (p Point) HasOffset() bool { return p.v.hasOffset() } 126 func (p Point) IsValid() bool { return p.v.isValid() } 127 func (p *Point) MarshalJSON() ([]byte, error) { return json.Marshal(&p.v) } 128 func (p *Point) UnmarshalJSON(b []byte) error { return json.Unmarshal(b, &p.v) } 129 func (p Point) Line() int { [all …]
|
/aosp_15_r20/external/angle/third_party/spirv-tools/src/utils/vscode/src/lsp/span/ |
H A D | span.go | 33 type Point struct { struct 34 v point 63 func New(uri URI, start Point, end Point) Span { 85 func ComparePoint(a, b Point) int { 124 func (p Point) HasPosition() bool { return p.v.hasPosition() } 125 func (p Point) HasOffset() bool { return p.v.hasOffset() } 126 func (p Point) IsValid() bool { return p.v.isValid() } 127 func (p *Point) MarshalJSON() ([]byte, error) { return json.Marshal(&p.v) } 128 func (p *Point) UnmarshalJSON(b []byte) error { return json.Unmarshal(b, &p.v) } 129 func (p Point) Line() int { [all …]
|
/aosp_15_r20/external/deqp-deps/SPIRV-Tools/utils/vscode/src/lsp/span/ |
D | span.go | 33 type Point struct { struct 34 v point 63 func New(uri URI, start Point, end Point) Span { 85 func ComparePoint(a, b Point) int { 124 func (p Point) HasPosition() bool { return p.v.hasPosition() } 125 func (p Point) HasOffset() bool { return p.v.hasOffset() } 126 func (p Point) IsValid() bool { return p.v.isValid() } 127 func (p *Point) MarshalJSON() ([]byte, error) { return json.Marshal(&p.v) } 128 func (p *Point) UnmarshalJSON(b []byte) error { return json.Unmarshal(b, &p.v) } 129 func (p Point) Line() int { [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/image/ |
D | geom.go | 14 type Point struct { struct 15 X, Y int 19 func (p Point) String() string { 24 func (p Point) Add(q Point) Point { 29 func (p Point) Sub(q Point) Point { 34 func (p Point) Mul(k int) Point { 39 func (p Point) Div(k int) Point { 44 func (p Point) In(r Rectangle) bool { 72 // Deprecated: Use a literal [image.Point] instead.
|
/aosp_15_r20/external/pigweed/pw_bluetooth_sapphire/host/common/ |
H A D | byte_buffer_test.cc | 522 struct [[gnu::packed]] Point { in TEST() struct 523 uint8_t x; in TEST() 524 const uint8_t y; in TEST() 525 const uint8_t array[2]; in TEST() 526 char multi[2][1]; in TEST() 527 uint8_t flex[]; in TEST() 555 struct [[gnu::packed]] Point { in TEST() struct 556 float f; in TEST() 557 int8_t coordinates[3]; in TEST() 558 char multi[2][1]; in TEST() [all …]
|
/aosp_15_r20/external/boringssl/src/rust/bssl-crypto/src/ |
H A D | ec.rs | 85 pub(crate) struct Point { struct 90 impl Point { argument 132 ) -> Point { in clone_from_ptr() 254 unsafe impl Sync for Point {} implementation 255 unsafe impl Send for Point {} implementation 257 impl Drop for Point { implementation 423 pub fn to_point(&self) -> Point { in to_point() 513 Parse: Fn(&[u8]) -> Option<Point>, in test_point_format()
|
/aosp_15_r20/external/cronet/third_party/boringssl/src/rust/bssl-crypto/src/ |
H A D | ec.rs | 85 pub(crate) struct Point { struct 90 impl Point { argument 132 ) -> Point { in clone_from_ptr() 254 unsafe impl Sync for Point {} implementation 255 unsafe impl Send for Point {} implementation 257 impl Drop for Point { implementation 423 pub fn to_point(&self) -> Point { in to_point() 513 Parse: Fn(&[u8]) -> Option<Point>, in test_point_format()
|
/aosp_15_r20/prebuilts/go/linux-x86/src/crypto/ecdsa/ |
D | ecdsa.go | 188 func generateNISTEC[Point nistPoint[Point]](c *nistCurve[Point], rand io.Reader) (*PrivateKey, erro… 206 func randomPoint[Point nistPoint[Point]](c *nistCurve[Point], rand io.Reader) (k *bigmod.Nat, p Poi… 295 func signNISTEC[Point nistPoint[Point]](c *nistCurve[Point], priv *PrivateKey, csprng io.Reader, ha… 370 func inverse[Point nistPoint[Point]](c *nistCurve[Point], kInv, k *bigmod.Nat) { 390 func hashToNat[Point nistPoint[Point]](c *nistCurve[Point], e *bigmod.Nat, hash []byte) { 501 func verifyNISTEC[Point nistPoint[Point]](c *nistCurve[Point], pub *PublicKey, hash, sig []byte) bo… 604 func (curve *nistCurve[Point]) pointToAffine(p Point) (x, y *big.Int, err error) { 668 func precomputeParams[Point nistPoint[Point]](c *nistCurve[Point], curve elliptic.Curve) {
|
/aosp_15_r20/external/geojson-jackson/src/main/java/org/geojson/ |
H A D | Point.java | 3 public class Point extends GeoJsonObject { class 7 public Point() { in Point() method in Point 10 public Point(LngLatAlt coordinates) { in Point() method in Point 14 public Point(double longitude, double latitude) { in Point() method in Point 18 public Point(double longitude, double latitude, double altitude) { in Point() method in Point 22 public Point(double longitude, double latitude, double altitude, double... additionalElements) { in Point() method in Point
|
/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/ |
D | gdiplustypes.h | 113 typedef struct Point { struct 118 Point(): X(0), Y(0) {} in Point() argument 119 Point(INT x, INT y): X(x), Y(y) {} in Point() function 120 Point(const Point& point): X(point.X), Y(point.Y) {} in Point() function 121 Point(const Size& size): X(size.Width), Y(size.Height) {} in Point() function 123 BOOL Equals(const Point& point) const { in Equals() argument 133 } Point; typedef
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/ADT/ |
D | IntervalTree.h | 221 bool left(const PointType &Point) const { return left() <= Point; } in left() 225 bool right(const PointType &Point) const { return Point <= right(); } in right() 229 bool contains(const PointType &Point) const { in contains() 279 IntervalNode(PointType Point, unsigned Start) in IntervalNode() 465 PointType Point = {}; variable 546 PointType Point) in find_iterator() 616 IntervalReferences getContaining(PointType Point) const { in getContaining() 680 find_iterator find(PointType Point) const { in find()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/ADT/ |
D | IntervalTree.h | 221 bool left(const PointType &Point) const { return left() <= Point; } in left() 225 bool right(const PointType &Point) const { return Point <= right(); } in right() 229 bool contains(const PointType &Point) const { in contains() 279 IntervalNode(PointType Point, unsigned Start) in IntervalNode() 465 PointType Point = {}; variable 546 PointType Point) in find_iterator() 616 IntervalReferences getContaining(PointType Point) const { in getContaining() 680 find_iterator find(PointType Point) const { in find()
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/ADT/ |
H A D | IntervalTree.h | 222 bool left(const PointType &Point) const { return left() <= Point; } in left() 226 bool right(const PointType &Point) const { return Point <= right(); } in right() 230 bool contains(const PointType &Point) const { in contains() 280 IntervalNode(PointType Point, unsigned Start) in IntervalNode() 466 PointType Point; variable 547 PointType Point) in find_iterator() 617 IntervalReferences getContaining(PointType Point) const { in getContaining() 681 find_iterator find(PointType Point) const { in find()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/ADT/ |
D | IntervalTree.h | 221 bool left(const PointType &Point) const { return left() <= Point; } in left() 225 bool right(const PointType &Point) const { return Point <= right(); } in right() 229 bool contains(const PointType &Point) const { in contains() 279 IntervalNode(PointType Point, unsigned Start) in IntervalNode() 465 PointType Point = {}; variable 546 PointType Point) in find_iterator() 616 IntervalReferences getContaining(PointType Point) const { in getContaining() 680 find_iterator find(PointType Point) const { in find()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/ADT/ |
D | IntervalTree.h | 221 bool left(const PointType &Point) const { return left() <= Point; } in left() 225 bool right(const PointType &Point) const { return Point <= right(); } in right() 229 bool contains(const PointType &Point) const { in contains() 279 IntervalNode(PointType Point, unsigned Start) in IntervalNode() 465 PointType Point = {}; variable 546 PointType Point) in find_iterator() 616 IntervalReferences getContaining(PointType Point) const { in getContaining() 680 find_iterator find(PointType Point) const { in find()
|
/aosp_15_r20/external/dynamic_depth/internal/dynamic_depth/ |
H A D | point.h | 9 struct Point { struct 10 Point(T x_coord, T y_coord) : x(x_coord), y(y_coord) {} in Point() function 14 inline bool operator==(const Point& other) const { argument
|
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/opencensus-proto/gen-go/metrics/v1/ |
D | metrics.pb.go | 489 type Point struct { struct 490 state protoimpl.MessageState 491 sizeCache protoimpl.SizeCache 492 unknownFields protoimpl.UnknownFields 496 …tamp *timestamp.Timestamp `protobuf:"bytes,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"` 504 Value isPoint_Value `protobuf_oneof:"value"` 507 func (x *Point) Reset() { 516 func (x *Point) String() string { 520 func (*Point) ProtoMessage() {} 522 func (x *Point) ProtoReflect() protoreflect.Message { [all …]
|
/aosp_15_r20/external/clang/test/CodeCompletion/ |
H A D | macros.c | 5 struct Point { struct 10 void test(struct Point *p) { in test() argument
|
/aosp_15_r20/external/grpc-grpc/examples/python/route_guide/ |
H A D | asyncio_route_guide_server.py | 29 feature_db: Iterable[route_guide_pb2.Feature], point: route_guide_pb2.Point 39 start: route_guide_pb2.Point, end: route_guide_pb2.Point 71 self, request: route_guide_pb2.Point, unused_context 97 request_iterator: AsyncIterable[route_guide_pb2.Point],
|
/aosp_15_r20/external/webrtc/modules/audio_coding/audio_network_adaptor/util/ |
H A D | threshold_curve.h | 20 struct Point { struct 21 constexpr Point(float x, float y) : x(x), y(y) {} in Point() argument 22 float x; 23 float y;
|