MCPcopy Create free account
hub / github.com/bytedance/Fastbot_Android / PushArr

Method PushArr

native/thirdpart/tinyxml2/tinyxml2.h:233–240  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

231 }
232
233 T* PushArr( int count ) {
234 TIXMLASSERT( count >= 0 );
235 TIXMLASSERT( _size <= INT_MAX - count );
236 EnsureCapacity( _size+count );
237 T* ret = &_mem[_size];
238 _size += count;
239 return ret;
240 }
241
242 T Pop() {
243 TIXMLASSERT( _size > 0 );

Callers 3

PrintMethod · 0.80
WriteMethod · 0.80
PutcMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected