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

Function parse

pdal/Options.hpp:89–103  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

87 }
88
89 static std::string::size_type
90 parse(const std::string& name, std::string::size_type p)
91 {
92 std::string::size_type count = 0;
93
94 if (std::islower(name[p++]))
95 {
96 count++;
97
98 auto isname = [](char c)
99 { return (std::islower(c) || std::isdigit(c) || c == '_'); };
100 count += Utils::extract(name, p, isname);
101 }
102 return count;
103 }
104
105 std::string toArg() const;
106

Callers 15

parseMethod · 0.70
nameValidMethod · 0.70
fromCmdlineFileMethod · 0.70
parseStageOptionMethod · 0.70
extractFilenameFunction · 0.70
readPipelineMethod · 0.70
outputOptionsMethod · 0.50
TESTFunction · 0.50
TESTFunction · 0.50
TESTFunction · 0.50
TESTFunction · 0.50
getGeometryFunction · 0.50

Calls

no outgoing calls

Tested by 7

TESTFunction · 0.40
TESTFunction · 0.40
TESTFunction · 0.40
TESTFunction · 0.40
getGeometryFunction · 0.40
TESTFunction · 0.40
TEST_FFunction · 0.40