Home
last modified time | relevance | path

Searched refs:Point3D (Results 1 – 11 of 11) sorted by relevance

/external/llvm-project/clang/test/SemaObjC/
Dattr-swift_name.m8 } 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/jackson-databind/src/test/java/com/fasterxml/jackson/databind/interop/
DDeprecatedTypeHandling1102Test.java26 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/
Dinstantiate-c99.cpp24 struct Point3D { struct
28 template struct DesigInit0<Point3D, int, double>; argument
/external/llvm-project/clang/test/SemaTemplate/
Dinstantiate-c99.cpp31 struct Point3D { struct
35 template struct DesigInit0<Point3D, int, double>; argument
/external/swiftshader/third_party/SPIRV-Tools/test/fuzz/
Dtransformation_set_memory_operands_mask_test.cpp35 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/
Dtransformation_set_memory_operands_mask_test.cpp35 OpName %7 "Point3D" in TEST()
213 OpName %7 "Point3D" in TEST()
282 OpName %7 "Point3D" in TEST()
456 OpName %7 "Point3D" in TEST()
/external/angle/third_party/vulkan-deps/spirv-tools/src/test/fuzz/
Dtransformation_set_memory_operands_mask_test.cpp35 OpName %7 "Point3D" in TEST()
230 OpName %7 "Point3D" in TEST()
300 OpName %7 "Point3D" in TEST()
476 OpName %7 "Point3D" in TEST()
/external/python/cpython2/Lib/
Dcollections.py737 Point3D = namedtuple('Point3D', Point._fields + ('z',)) variable
738 print Point3D.__doc__
/external/python/cpython3/Lib/test/
Dtest_dataclasses.py724 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/
Dcollections.rst773 >>> Point3D = namedtuple('Point3D', Point._fields + ('z',))
/external/python/cpython3/Doc/library/
Dcollections.rst1016 >>> Point3D = namedtuple('Point3D', Point._fields + ('z',))