MCPcopy Create free account
hub / github.com/PDAL/PDAL / nameValid

Function nameValid

pdal/DimUtil.hpp:286–294  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

284}
285
286inline bool nameValid(std::string name)
287{
288 name = Utils::toupper(name);
289 if (extractName(name, 0) != name.size())
290 return false;
291 if (name == "WHERE")
292 return false;
293 return true;
294}
295
296inline std::istream& operator>>(std::istream& in, Dimension::Type& type)
297{

Callers 4

TESTFunction · 0.85
assignDimMethod · 0.85
addMethod · 0.85
addConditionalMethod · 0.85

Calls 3

toupperFunction · 0.85
extractNameFunction · 0.85
sizeMethod · 0.45

Tested by 1

TESTFunction · 0.68