/external/llvm-project/clang/test/SemaObjC/ |
D | attr-swift_name.m | 8 } Point3D; typedef 96 struct Point3D createPoint3D(float x, float y, float z) SWIFT_NAME("Point3D.init(x:y:z:)"); struct 97 struct Point3D rotatePoint3D(Point3D point, float radians) SWIFT_NAME("Point3D.rotate(self:radians:… struct 98 struct Point3D badRotatePoint3D(Point3D point, float radians) SWIFT_NAME("Point3D.rotate(radians:)"… struct 101 extern struct Point3D identityPoint SWIFT_NAME("Point3D.identity"); struct 103 float Point3DGetMagnitude(Point3D point) SWIFT_NAME("getter:Point3D.magnitude(self:)"); 104 float Point3DGetMagnitudeAndSomethingElse(Point3D point, float f) SWIFT_NAME("getter:Point3D.magnit… 107 float Point3DGetRadius(Point3D point) SWIFT_NAME("getter:Point3D.radius(self:)"); 108 void Point3DSetRadius(Point3D point, float radius) SWIFT_NAME("setter:Point3D.radius(self:newValue:… 110 float Point3DPreGetRadius(Point3D point) SWIFT_NAME("getter:Point3D.preRadius(self:)"); [all …]
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/ |
D | Shape.java | 21 private Point3d point3d; field in Shape 24 public Point3d getPoint3d() { in getPoint3d() 25 return point3d; in getPoint3d() 28 public void setPoint3d(Point3d point3d) { in setPoint3d() argument 29 this.point3d = point3d; in setPoint3d()
|
D | Point3d.java | 18 public class Point3d { class 22 public Point3d(Point point, Double z) { in Point3d() method in Point3d 37 return "<Point3d point=" + point.toString() + " z=" + String.valueOf(z) + ">"; in toString()
|
D | ShapeImmutableTest.java | 127 Point3d loaded = (Point3d) yaml in testPoint3d() 128 ….load("!!org.yaml.snakeyaml.immutable.Point3d [!!org.yaml.snakeyaml.immutable.Point [1.17, 3.14], … in testPoint3d()
|
/external/snakeyaml/src/test/resources/immutable/ |
D | shape1.yaml | 6 point3d: !!org.yaml.snakeyaml.immutable.Point3d
|
D | shapeNoTags.yaml | 5 point3d:
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/interop/ |
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()
|
/external/clang/test/SemaTemplate/ |
D | instantiate-c99.cpp | 24 struct Point3D { struct 28 template struct DesigInit0<Point3D, int, double>; argument
|
/external/llvm-project/clang/test/SemaTemplate/ |
D | instantiate-c99.cpp | 31 struct Point3D { struct 35 template struct DesigInit0<Point3D, int, double>; argument
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/test/fuzz/ |
D | transformation_set_memory_operands_mask_test.cpp | 35 OpName %7 "Point3D" in TEST() 230 OpName %7 "Point3D" in TEST() 300 OpName %7 "Point3D" in TEST() 476 OpName %7 "Point3D" in TEST()
|
/external/swiftshader/third_party/SPIRV-Tools/test/fuzz/ |
D | transformation_set_memory_operands_mask_test.cpp | 35 OpName %7 "Point3D" in TEST() 213 OpName %7 "Point3D" in TEST() 282 OpName %7 "Point3D" in TEST() 456 OpName %7 "Point3D" in TEST()
|
/external/deqp-deps/SPIRV-Tools/test/fuzz/ |
D | transformation_set_memory_operands_mask_test.cpp | 35 OpName %7 "Point3D" in TEST() 213 OpName %7 "Point3D" in TEST() 282 OpName %7 "Point3D" in TEST() 456 OpName %7 "Point3D" in TEST()
|
/external/python/cpython2/Lib/ |
D | collections.py | 737 Point3D = namedtuple('Point3D', Point._fields + ('z',)) variable 738 print Point3D.__doc__
|
/external/python/cpython3/Lib/test/ |
D | test_dataclasses.py | 724 class Point3D: class 735 self.assertNotEqual(Point3D(2017, 6, 3), Date(2017, 6, 3)) 736 self.assertNotEqual(Point3D(1, 2, 3), (1, 2, 3)) 740 x, y, z = Point3D(4, 5, 6) 749 self.assertNotEqual(Point3D(0, 0, 0), Point3Dv1())
|
/external/python/cpython2/Doc/library/ |
D | collections.rst | 773 >>> Point3D = namedtuple('Point3D', Point._fields + ('z',))
|
/external/python/cpython3/Doc/library/ |
D | collections.rst | 1016 >>> Point3D = namedtuple('Point3D', Point._fields + ('z',))
|