MCPcopy Create free account
hub / github.com/ZDoom/Raze / Add

Method Add

source/common/scripting/frontend/ast.cpp:148–158  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

146 return false;
147 }
148 void Add(const char *str, size_t len)
149 {
150 CheckWrap(len + NeedSpace);
151 if (NeedSpace)
152 {
153 Str << ' ';
154 }
155 Str.AppendCStrPart(str, len);
156 Column += len + NeedSpace;
157 NeedSpace = true;
158 }
159 void Add(const char *str)
160 {
161 Add(str, strlen(str));

Callers 13

ConvertASTMethod · 0.45
ConvertNodeMethod · 0.45
PrintNodesFunction · 0.45
PrintBuiltInTypeFunction · 0.45
PrintStringConstFunction · 0.45
PrintEnumFunction · 0.45
PrintStateLineFunction · 0.45
PrintVarInitFunction · 0.45
PrintBasicTypeFunction · 0.45
PrintExprTypeRefFunction · 0.45
PrintIterationStmtFunction · 0.45

Calls 2

LenMethod · 0.80
GetCharsMethod · 0.45

Tested by

no test coverage detected