Home
last modified time | relevance | path

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

/external/libchrome/base/
Dlogging.cc549 std::string str_newline(stream_.str()); in ~LogMessage() local
554 message_start_, str_newline)) { in ~LogMessage()
561 OutputDebugStringA(str_newline.c_str()); in ~LogMessage()
673 asl_set(asl_message.get(), ASL_KEY_MSG, str_newline.c_str()); in ~LogMessage()
695 __android_log_write(priority, "chromium", str_newline.c_str()); in ~LogMessage()
702 str_newline.c_str()); in ~LogMessage()
705 ignore_result(fwrite(str_newline.data(), str_newline.size(), 1, stderr)); in ~LogMessage()
711 ignore_result(fwrite(str_newline.data(), str_newline.size(), 1, stderr)); in ~LogMessage()
732 static_cast<const void*>(str_newline.c_str()), in ~LogMessage()
733 static_cast<DWORD>(str_newline.length()), in ~LogMessage()
[all …]
/external/python/cpython2/Python/
Dbltinmodule.c1585 static PyObject *str_newline = NULL, *str_space = NULL; in builtin_print() local
1594 if (str_newline == NULL) { in builtin_print()
1595 str_newline = PyString_FromString("\n"); in builtin_print()
1596 if (str_newline == NULL) in builtin_print()
1600 Py_CLEAR(str_newline); in builtin_print()
1606 Py_CLEAR(str_newline); in builtin_print()
1612 Py_CLEAR(str_newline); in builtin_print()
1669 newline = str_newline; in builtin_print()