Home
last modified time | relevance | path

Searched refs:fromInteger (Results 1 – 18 of 18) 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.cc123 String16 script_id = String16::fromInteger(script->Id()); in Init()
189 loc->script_id = String16::fromInteger(script_.Get(isolate)->Id()); in TranslateBack()
229 size_t digits = String16::fromInteger(numFunctions - 1).length(); in GetFakeScriptUrl()
230 String16 thisCategory = String16::fromInteger((func_index / 100) * 100); in GetFakeScriptUrl()
242 return String16::concat(script_id, '-', String16::fromInteger(func_index)); in GetFakeScriptId()
Dstring-16.h37 static String16 fromInteger(int);
38 static String16 fromInteger(size_t);
Dv8-profiler-agent-impl.cc70 .setScriptId(String16::fromInteger(node->GetScriptId())) in buildInspectorObjectFor()
384 .setScriptId(String16::fromInteger(script->Id())) in coverageToProtocol()
453 .setScriptId(String16::fromInteger(script->Id())) in typeProfileToProtocol()
490 return String16::fromInteger( in nextProfileId()
Dv8-stack-trace-impl.cc122 m_scriptId(String16::fromInteger(v8Frame->GetScriptId())), in StackFrame()
291 stackTrace.append(String16::fromInteger(frame.lineNumber() + 1)); in toString()
293 stackTrace.append(String16::fromInteger(frame.columnNumber() + 1)); in toString()
Dv8-debugger-script.cc115 : V8DebuggerScript(isolate, String16::fromInteger(script->Id()), in ActualScript()
334 String16 v8ScriptId = String16::fromInteger(script->Id()); in getPossibleBreakpoints()
373 String16 v8ScriptId = String16::fromInteger(script->Id()); in setBreakpoint()
Dstring-16.cc410 String16 String16::fromInteger(int number) { in fromInteger() function in v8_inspector::String16
417 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()
350 .setScriptId(String16::fromInteger(node->script_id)) in buildSampingHeapProfileNode()
Dv8-console.cc30 String16::fromInteger(consoleContext.id()); in consoleContextToString()
295 String16::fromInteger(stackTrace->topLineNumber()); in identifierFromTitleOrStackTrace()
315 String16 countString = String16::fromInteger(count); in Count()
Dv8-debugger-agent-impl.cc260 String16 scriptId = String16::fromInteger(iterator->GetScriptId()); in buildScopes()
1291 .setScriptId(String16::fromInteger(script->Id())) in currentCallFrames()
1296 String16 scriptId = String16::fromInteger(script->Id()); in currentCallFrames()
1318 .setScriptId(String16::fromInteger(func->ScriptId())) in currentCallFrames()
Dv8-debugger.cc83 toV8String(isolate, String16::fromInteger(scriptId))) in buildLocation()
626 String16 scriptId = String16::fromInteger(script->Id()); in IsFunctionBlackboxed()
Dv8-console-message.cc309 exceptionDetails->setScriptId(String16::fromInteger(m_scriptId)); in reportToFrontend()
Dv8-runtime-agent-impl.cc513 String16::fromInteger(script->GetUnboundScript()->GetId()); in compileScript()
Dinjected-script.cc586 exceptionDetails->setScriptId(String16::fromInteger( in createExceptionDetails()
/external/grpc-grpc-java/core/src/test/java/io/grpc/internal/
DDnsNameResolverTest.java382 final Inet4Address backendAddr = InetAddresses.fromInteger(0x7f000001); in resolveAll_nullResourceResolver()
402 final Inet4Address backendAddr = InetAddresses.fromInteger(0x7f000001); in resolveAll_presentResourceResolver()
455 final Inet4Address backendAddr = InetAddresses.fromInteger(0x7f000001); in resolveAll_balancerLookupFails()
/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()