Lines Matching refs:String16

22   String16 source;
29 WasmSourceInformation(String16 source, OffsetTable offset_table) in WasmSourceInformation()
34 while (next_newline != String16::kNotFound) { in WasmSourceInformation()
59 String16 script_id;
62 TransLocation(WasmTranslation* translation, String16 script_id, int line, in TransLocation()
75 virtual const String16 GetHash(v8::Isolate*, int index) = 0;
100 const String16 GetHash(v8::Isolate*, int index) override { in GetHash()
102 return String16(); in GetHash()
123 String16 script_id = String16::fromInteger(script->Id()); in Init()
189 loc->script_id = String16::fromInteger(script_.Get(isolate)->Id()); in TranslateBack()
210 const String16 GetHash(v8::Isolate* isolate, int index) override { in GetHash()
220 String16 GetFakeScriptUrl(v8::Isolate* isolate, int func_index) { in GetFakeScriptUrl()
222 String16 script_name = in GetFakeScriptUrl()
229 size_t digits = String16::fromInteger(numFunctions - 1).length(); in GetFakeScriptUrl()
230 String16 thisCategory = String16::fromInteger((func_index / 100) * 100); in GetFakeScriptUrl()
241 String16 GetFakeScriptId(const String16 script_id, int func_index) { in GetFakeScriptId()
242 return String16::concat(script_id, '-', String16::fromInteger(func_index)); in GetFakeScriptId()
244 String16 GetFakeScriptId(const TransLocation* loc) { in GetFakeScriptId()
248 void AddFakeScript(v8::Isolate* isolate, const String16& underlyingScriptId, in AddFakeScript()
251 String16 fake_script_id = GetFakeScriptId(underlyingScriptId, func_idx); in AddFakeScript()
252 String16 fake_script_url = GetFakeScriptUrl(isolate, func_idx); in AddFakeScript()
263 int GetFunctionIndexFromFakeScriptId(const String16& fake_script_id) { in GetFunctionIndexFromFakeScriptId()
319 const String16& WasmTranslation::GetSource(const String16& script_id, in GetSource()
326 int WasmTranslation::GetEndLine(const String16& script_id, int func_index) { in GetEndLine()
332 int WasmTranslation::GetEndColumn(const String16& script_id, int func_index) { in GetEndColumn()
338 String16 WasmTranslation::GetHash(const String16& script_id, int func_index) { in GetHash()
346 String16* script_id, int* line_number, int* column_number) { in TranslateWasmScriptLocationToProtocolLocation()
369 String16* script_id, int* line_number, int* column_number) { in TranslateProtocolLocationToWasmScriptLocation()
385 void WasmTranslation::AddFakeScript(const String16& scriptId, in AddFakeScript()