Home
last modified time | relevance | path

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

/external/v8/src/inspector/
Dstring-util.h30 static String fromInteger(int number) { return String::fromInteger(number); } in fromInteger() function
31 static String fromInteger(size_t number) { in fromInteger() function
32 return String::fromInteger(number); in fromInteger()
Dremote-object-id.cc62 return "{\"ordinal\":" + String16::fromInteger(frameOrdinal) + in serialize()
63 ",\"injectedScriptId\":" + String16::fromInteger(injectedScriptId) + in serialize()
Dwasm-translation.cc70 String16 script_id = String16::fromInteger(script->Id()); in Init()
146 loc->script_id = String16::fromInteger(script_.Get(isolate)->Id()); in TranslateBack()
160 size_t digits = String16::fromInteger(numFunctions - 1).length(); in GetFakeScriptUrl()
161 String16 thisCategory = String16::fromInteger((func_index / 100) * 100); in GetFakeScriptUrl()
173 return String16::concat(script_id, '-', String16::fromInteger(func_index)); in GetFakeScriptId()
Dstring-16.h50 static String16 fromInteger(int);
51 static String16 fromInteger(size_t);
Dv8-stack-trace-impl.cc27 String16 scriptId = String16::fromInteger(frame->GetScriptId()); in toFrame()
297 stackTrace.append(String16::fromInteger(frame.lineNumber())); in toString()
299 stackTrace.append(String16::fromInteger(frame.columnNumber())); in toString()
Dv8-profiler-agent-impl.cc55 .setScriptId(String16::fromInteger(node->GetScriptId())) in buildInspectorObjectFor()
331 .setScriptId(String16::fromInteger(script->Id())) in takeCoverage()
358 return String16::fromInteger( in nextProfileId()
Dv8-debugger-script.cc105 : V8DebuggerScript(isolate, String16::fromInteger(script->Id()), in ActualScript()
234 String16 v8ScriptId = String16::fromInteger(script->Id()); in getPossibleBreakpoints()
Dstring-16.cc366 String16 String16::fromInteger(int number) { in fromInteger() function in v8_inspector::String16
373 String16 String16::fromInteger(size_t number) { in fromInteger() function in v8_inspector::String16
Dv8-heap-profiler-agent-impl.cc280 *heapSnapshotObjectId = String16::fromInteger(static_cast<size_t>(id)); in getHeapObjectId()
349 .setScriptId(String16::fromInteger(node->script_id)) in buildSampingHeapProfileNode()
Dv8-console.cc359 String16::fromInteger(stackTrace->topLineNumber()); in countCallback()
369 String16 countString = String16::fromInteger(count); in countCallback()
543 String16 scriptId = String16::fromInteger(function->ScriptId()); in setFunctionBreakpoint()
Dv8-debugger.cc99 toV8String(isolate, String16::fromInteger(scriptId))) in buildLocation()
545 breakpointIds.push_back(String16::fromInteger( in handleProgramBreak()
624 return agent->isFunctionBlackboxed(String16::fromInteger(script->Id()), start, in IsFunctionBlackboxed()
Dv8-debugger-agent-impl.cc282 String16::fromInteger(lineNumber) + ":" + in setBreakpointByUrl()
283 String16::fromInteger(columnNumber); in setBreakpointByUrl()
Dinjected-script.cc358 exceptionDetails->setScriptId(String16::fromInteger( in createExceptionDetails()
Dv8-console-message.cc296 exceptionDetails->setScriptId(String16::fromInteger(m_scriptId)); in reportToFrontend()
Dv8-runtime-agent-impl.cc569 String16::fromInteger(script->GetUnboundScript()->GetId()); in compileScript()
/external/guava/guava/src/com/google/common/net/
DInetAddresses.java948 public static Inet4Address fromInteger(int address) { in fromInteger() method in InetAddresses
/external/guava/guava-tests/test/com/google/common/net/
DInetAddressesTest.java646 assertEquals(InetAddresses.fromInteger(0x7f000001), in testFromInteger()