Searched refs:propVal (Results 1 - 3 of 3) sorted by relevance
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/ |
H A D | rs_graphic_config.cpp | 203 xmlChar* propVal = xmlGetProp(currNode, reinterpret_cast<const xmlChar*>("enable")); in ReadProperty() local 204 if (propVal != nullptr) { in ReadProperty() 205 if (!xmlStrcmp(propVal, reinterpret_cast<const xmlChar*>("true"))) { in ReadProperty() 207 } else if (!xmlStrcmp(propVal, reinterpret_cast<const xmlChar*>("false"))) { in ReadProperty() 210 xmlFree(propVal); in ReadProperty() 213 propVal = xmlGetProp(currNode, reinterpret_cast<const xmlChar*>("name")); in ReadProperty() 214 if (propVal != nullptr) { in ReadProperty() 215 property["name"].SetValue(std::string(reinterpret_cast<const char*>(propVal))); in ReadProperty() 216 xmlFree(propVal); in ReadProperty()
|
/foundation/window/window_manager/wmserver/src/ |
H A D | window_manager_config.cpp | 202 xmlChar* propVal = xmlGetProp(currNode, reinterpret_cast<const xmlChar*>("enable")); in ReadProperty() local 203 if (propVal != nullptr) { in ReadProperty() 204 if (!xmlStrcmp(propVal, reinterpret_cast<const xmlChar*>("true"))) { in ReadProperty() 206 } else if (!xmlStrcmp(propVal, reinterpret_cast<const xmlChar*>("false"))) { in ReadProperty() 209 xmlFree(propVal); in ReadProperty() 212 propVal = xmlGetProp(currNode, reinterpret_cast<const xmlChar*>("name")); in ReadProperty() 213 if (propVal != nullptr) { in ReadProperty() 214 property["name"].SetValue(std::string(reinterpret_cast<const char*>(propVal))); in ReadProperty() 215 xmlFree(propVal); in ReadProperty()
|
/foundation/arkui/napi/native_engine/ |
H A D | native_api.cpp | 964 auto propVal = LocalValueFromJsValue(value); in napi_set_named_property() local 969 obj->Set(vm, utf8name, propVal); in napi_set_named_property() 1517 auto propVal = LocalValueFromJsValue(value); in napi_map_set_named_property() local 1524 mapRef->Set(vm, utf8name, propVal); in napi_map_set_named_property() 1527 mapRef->Set(vm, utf8name, propVal); in napi_map_set_named_property()
|
Completed in 9 milliseconds