Lines Matching refs:curNodePtr
111 for (xmlNodePtr curNodePtr = rootPtr->xmlChildrenNode; curNodePtr != nullptr; curNodePtr = curNodePtr->next) {
112 if (!IsValidNode(*curNodePtr)) {
116 std::string nodeName = reinterpret_cast<const char*>(curNodePtr->name);
118 std::map<std::string, ConfigItem> property = ReadProperty(curNodePtr);
120 mapValue[reinterpret_cast<const char*>(curNodePtr->name)].SetProperty(property);
124 std::vector<int> v = ReadIntNumbersConfigInfo(curNodePtr);
125 mapValue[reinterpret_cast<const char*>(curNodePtr->name)].SetValue(v);
129 std::vector<float> v = ReadFloatNumbersConfigInfo(curNodePtr, true);
130 mapValue[reinterpret_cast<const char*>(curNodePtr->name)].SetValue(v);
134 std::vector<float> v = ReadFloatNumbersConfigInfo(curNodePtr, false);
135 mapValue[reinterpret_cast<const char*>(curNodePtr->name)].SetValue(v);
139 std::string v = ReadStringConfigInfo(curNodePtr);
140 mapValue[reinterpret_cast<const char*>(curNodePtr->name)].SetValue(v);
144 std::vector<std::string> v = ReadStringsConfigInfo(curNodePtr);
145 mapValue[reinterpret_cast<const char*>(curNodePtr->name)].SetValue(v);
150 ReadConfig(curNodePtr, v);
151 mapValue[reinterpret_cast<const char*>(curNodePtr->name)].SetValue(v);