Searched refs:SPrintF (Results 1 - 11 of 11) sorted by relevance
/third_party/node/test/cctest/ |
H A D | test_util.cc | 10 using node::SPrintF; 256 TEST(UtilTest, SPrintF) { in TEST() 259 EXPECT_EQ(SPrintF("%s", false), "false"); in TEST() 260 EXPECT_EQ(SPrintF("%s", true), "true"); in TEST() 261 EXPECT_EQ(SPrintF("%d", true), "true"); in TEST() 262 EXPECT_EQ(SPrintF("%u", true), "true"); in TEST() 263 EXPECT_EQ(SPrintF("%d", 10000000000LL), "10000000000"); in TEST() 264 EXPECT_EQ(SPrintF("%d", -10000000000LL), "-10000000000"); in TEST() 265 EXPECT_EQ(SPrintF("%u", 10000000000LL), "10000000000"); in TEST() 266 EXPECT_EQ(SPrintF(" in TEST() [all...] |
/third_party/node/src/ |
H A D | node_process-inl.h | 17 std::string warning = SPrintF(fmt, std::forward<Args>(args)...); in ProcessEmitWarning()
|
H A D | debug_utils-inl.h | 125 std::string COLD_NOINLINE SPrintF( // NOLINT(runtime/string) in SPrintF() function 132 FWrite(file, SPrintF(format, std::forward<Args>(args)...)); in FPrintF()
|
H A D | debug_utils.h | 36 inline std::string SPrintF(const char* format, Args&&... args);
|
H A D | node_errors.h | 98 std::string message = SPrintF(format, std::forward<Args>(args)...); \
|
H A D | node_errors.cc | 151 std::string buf = SPrintF("%s:%i\n%s\n", in GetErrorSource() 199 result += SPrintF(" at [eval]:%i:%i\n", line_number, column); in FormatStackTrace()
|
H A D | util.cc | 178 return SPrintF("%s[%d]", GetProcessTitle("Node.js"), uv_os_getpid()); in GetHumanReadableProcessName()
|
H A D | node_builtins.cc | 204 const std::string buf = SPrintF("Cannot read local builtin. %s: %s \"%s\"", in LoadBuiltinSource()
|
H A D | node_report.cc | 500 std::string stack_line = SPrintF( in PrintJavaScriptStack()
|
/third_party/node/src/api/ |
H A D | embed_helpers.cc | 101 SPrintF("Failed to initialize loop: %s", uv_err_name(ret))); in CommonEnvironmentSetup()
|
/third_party/node/src/crypto/ |
H A D | crypto_util.h | 199 errors_.emplace_back(SPrintF(error_string, in Insert()
|
Completed in 11 milliseconds