/foundation/graphic/graphic_3d/kits/js/src/ |
H A D | QuatProxy.cpp | 47 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 D | Vec4Proxy.cpp | 51 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 D | ColorProxy.cpp | 45 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 D | Vec3Proxy.cpp | 48 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 D | Vec2Proxy.cpp | 49 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 D | ObjectProxy.cpp | 64 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 D | Vec4Proxy.h | 34 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 D | QuatProxy.h | 33 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 D | Vec3Proxy.h | 33 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 D | Vec2Proxy.h | 33 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 D | ColorProxy.h | 32 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 D | ObjectProxy.h | 30 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 D | PropertyProxy.h | 58 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;
|