MCPcopy Create free account
hub / github.com/Redot-Engine/redot-engine / StringName

Method StringName

core/string/string_name.cpp:202–210  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

200}
201
202StringName::StringName(const StringName &p_name) {
203 _data = nullptr;
204
205 ERR_FAIL_COND(!configured);
206
207 if (p_name._data && p_name._data->refcount.ref()) {
208 _data = p_name._data;
209 }
210}
211
212StringName::StringName(const char *p_name, bool p_static) {
213 _data = nullptr;

Callers 3

_rpc_bindMethod · 0.45
_rpc_id_bindMethod · 0.45
type_convertMethod · 0.45

Calls 8

hashFunction · 0.85
refMethod · 0.45
incrementMethod · 0.45
allocMethod · 0.45
initMethod · 0.45
setMethod · 0.45
is_emptyMethod · 0.45
hashMethod · 0.45

Tested by

no test coverage detected