MCPcopy Create free account
hub / github.com/Kitware/CMake / Process

Method Process

Source/cmProcessTools.h:30–33  ·  view source on GitHub ↗

Process the given output data from a tool. Processing may be done incrementally. Returns true if the parser is interested in any more data and false if it is done. */

Source from the content-addressed store, hash-verified

28 done incrementally. Returns true if the parser is interested
29 in any more data and false if it is done. */
30 bool Process(char const* data, int length)
31 {
32 return this->ProcessChunk(data, length);
33 }
34 bool Process(char const* data)
35 {
36 return this->Process(data, static_cast<int>(strlen(data)));

Callers

nothing calls this directly

Calls 2

strlenFunction · 0.50
ProcessChunkMethod · 0.45

Tested by

no test coverage detected