Home
last modified time | relevance | path

Searched refs:memb (Results 1 - 13 of 13) sorted by relevance

/foundation/graphic/graphic_3d/kits/js/src/
H A DQuatProxy.cpp47 void QuatProxy::SetValue(NapiApi::FunctionContext<>& cb, BASE_NS::string_view memb) in SetValue() argument
52 if ((memb == "x") && (val != value.x)) { in SetValue()
55 } else if ((memb == "y") && (val != value.y)) { in SetValue()
58 } else if ((memb == "z") && (val != value.z)) { in SetValue()
61 } else if ((memb == "w") && (val != value.w)) { in SetValue()
67 napi_value QuatProxy::GetValue(NapiApi::FunctionContext<>& info, BASE_NS::string_view memb) in GetValue() argument
71 if (memb == "x") { in GetValue()
73 } else if (memb == "y") { in GetValue()
75 } else if (memb == "z") { in GetValue()
77 } else if (memb in GetValue()
[all...]
H A DVec4Proxy.cpp51 void Vec4Proxy::SetValue(NapiApi::FunctionContext<>& cb, BASE_NS::string_view memb) in SetValue() argument
57 if ((memb == "x") && (val != value.x)) { in SetValue()
60 } else if ((memb == "y") && (val != value.y)) { in SetValue()
63 } else if ((memb == "z") && (val != value.z)) { in SetValue()
66 } else if ((memb == "w") && (val != value.w)) { in SetValue()
72 napi_value Vec4Proxy::GetValue(NapiApi::FunctionContext<>& cb, BASE_NS::string_view memb) in GetValue() argument
77 if (memb == "x") { in GetValue()
79 } else if (memb == "y") { in GetValue()
81 } else if (memb == "z") { in GetValue()
83 } else if (memb in GetValue()
[all...]
H A DColorProxy.cpp45 void ColorProxy::SetValue(NapiApi::FunctionContext<>& cb, BASE_NS::string_view memb) in SetValue() argument
50 if ((memb == "r") && (val != value.x)) { in SetValue()
53 } else if ((memb == "g") && (val != value.y)) { in SetValue()
56 } else if ((memb == "b") && (val != value.z)) { in SetValue()
59 } else if ((memb == "a") && (val != value.w)) { in SetValue()
65 napi_value ColorProxy::GetValue(NapiApi::FunctionContext<>& info, BASE_NS::string_view memb) in GetValue() argument
69 if (memb == "r") { in GetValue()
71 } else if (memb == "g") { in GetValue()
73 } else if (memb == "b") { in GetValue()
75 } else if (memb in GetValue()
[all...]
H A DVec3Proxy.cpp48 void Vec3Proxy::SetValue(NapiApi::FunctionContext<>& cb, BASE_NS::string_view memb) in SetValue() argument
54 if ((memb == "x") && (val != value.x)) { in SetValue()
57 } else if ((memb == "y") && (val != value.y)) { in SetValue()
60 } else if ((memb == "z") && (val != value.z)) { in SetValue()
66 napi_value Vec3Proxy::GetValue(NapiApi::FunctionContext<>& cb, BASE_NS::string_view memb) in GetValue() argument
71 if (memb == "x") { in GetValue()
73 } else if (memb == "y") { in GetValue()
75 } else if (memb == "z") { in GetValue()
H A DVec2Proxy.cpp49 void Vec2Proxy::SetValue(NapiApi::FunctionContext<>& cb, BASE_NS::string_view memb) in SetValue() argument
55 if ((memb == "x") && (val != value.x)) { in SetValue()
58 } else if ((memb == "y") && (val != value.y)) { in SetValue()
64 napi_value Vec2Proxy::GetValue(NapiApi::FunctionContext<>& cb, BASE_NS::string_view memb) in GetValue() argument
69 if (memb == "x") { in GetValue()
71 } else if (memb == "y") { in GetValue()
H A DObjectProxy.cpp64 void ObjectProxy::SetValue(NapiApi::FunctionContext<>& info, BASE_NS::string_view memb) in SetValue() argument
67 auto i = properties_.find(memb); in SetValue()
86 napi_value ObjectProxy::GetValue(NapiApi::FunctionContext<>& info, BASE_NS::string_view memb) in GetValue() argument
89 auto i = properties_.find(memb); in GetValue()
/foundation/graphic/graphic_3d/kits/js/include/
H A DVec4Proxy.h34 void SetValue(NapiApi::FunctionContext<>& info, BASE_NS::string_view memb) override;
35 napi_value GetValue(NapiApi::FunctionContext<>& info, BASE_NS::string_view memb) override;
H A DQuatProxy.h33 void SetValue(NapiApi::FunctionContext<>& info, BASE_NS::string_view memb) override;
34 napi_value GetValue(NapiApi::FunctionContext<>& info, BASE_NS::string_view memb) override;
H A DVec3Proxy.h33 void SetValue(NapiApi::FunctionContext<> &info, BASE_NS::string_view memb) override;
34 napi_value GetValue(NapiApi::FunctionContext<> &info, BASE_NS::string_view memb) override;
H A DVec2Proxy.h33 void SetValue(NapiApi::FunctionContext<>& info, BASE_NS::string_view memb) override;
34 napi_value GetValue(NapiApi::FunctionContext<>& info, BASE_NS::string_view memb) override;
H A DColorProxy.h32 void SetValue(NapiApi::FunctionContext<>& info, BASE_NS::string_view memb) override;
33 napi_value GetValue(NapiApi::FunctionContext<>& info, BASE_NS::string_view memb) override;
H A DObjectProxy.h30 void SetValue(NapiApi::FunctionContext<>& info, BASE_NS::string_view memb) override;
31 napi_value GetValue(NapiApi::FunctionContext<>& info, BASE_NS::string_view memb) override;
H A DPropertyProxy.h58 virtual void SetValue(NapiApi::FunctionContext<>& info, BASE_NS::string_view memb) = 0;
59 virtual napi_value GetValue(NapiApi::FunctionContext<>& info, BASE_NS::string_view memb) = 0;

Completed in 3 milliseconds