MCPcopy Create free account
hub / github.com/MyGUI/mygui / xpath_string evaluate_string_impl

Function xpath_string evaluate_string_impl

Tools/EditorFramework/pugixml.cpp:10439–10452  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10437};
10438
10439PUGI__FN xpath_string evaluate_string_impl(xpath_query_impl* impl, const xpath_node& n, xpath_stack_data& sd)
10440{
10441 if (!impl)
10442 return xpath_string();
10443
10444 #ifdef PUGIXML_NO_EXCEPTIONS
10445 if (setjmp(sd.error_handler))
10446 return xpath_string();
10447 #endif
10448
10449 xpath_context c(n, 1, 1);
10450
10451 return impl->root->eval_string(c, sd.stack);
10452}
10453PUGI__NS_END
10454
10455namespace pugi

Callers

nothing calls this directly

Calls 2

xpath_stringFunction · 0.70
eval_stringMethod · 0.45

Tested by

no test coverage detected