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

Method ParseString

Tests/CMakeLib/run_compile_commands.cxx:80–91  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

78 }
79
80 void ParseString()
81 {
82 this->String = "";
83 if (!this->Expect('"')) {
84 return;
85 }
86 while (!this->Expect('"')) {
87 this->Expect('\\');
88 this->String.append(1, this->C);
89 this->Next();
90 }
91 }
92
93 bool Expect(char c)
94 {

Callers 3

ParseTranslationUnitMethod · 0.95
LLVMFuzzerTestOneInputFunction · 0.45

Calls 3

ExpectMethod · 0.95
NextMethod · 0.95
appendMethod · 0.80

Tested by 1