Home
last modified time | relevance | path

Searched refs:fake_script_id (Results 1 – 1 of 1) sorted by relevance

/external/v8/src/inspector/
Dwasm-translation.cc182 String16 fake_script_id = GetFakeScriptId(underlyingScriptId, func_idx); in AddFakeScript() local
196 fake_script_id, std::move(fake_script_url), in AddFakeScript()
203 int GetFunctionIndexFromFakeScriptId(const String16& fake_script_id) { in GetFunctionIndexFromFakeScriptId() argument
204 size_t last_dash_pos = fake_script_id.reverseFind('-'); in GetFunctionIndexFromFakeScriptId()
205 DCHECK_GT(fake_script_id.length(), last_dash_pos); in GetFunctionIndexFromFakeScriptId()
207 int func_index = fake_script_id.substring(last_dash_pos + 1).toInteger(&ok); in GetFunctionIndexFromFakeScriptId()