Searched refs:temp_str (Results 1 – 9 of 9) sorted by relevance
/external/tensorflow/tensorflow/core/platform/cloud/ |
D | curl_http_request_test.cc | 215 string temp_str = str; in curl_easy_escape() local 217 while ((n = temp_str.find(victim, n)) != std::string::npos) { in curl_easy_escape() 218 temp_str.replace(n, victim.size(), encoded); in curl_easy_escape() 222 port::Malloc(sizeof(char) * temp_str.size() + 1)); in curl_easy_escape() 223 std::copy(temp_str.begin(), temp_str.end(), out_char_str); in curl_easy_escape() 224 out_char_str[temp_str.size()] = '\0'; in curl_easy_escape()
|
/external/OpenCL-CTS/test_conformance/spir/ |
D | run_services.cpp | 87 char *temp_str, *p; in get_kernel_name() local 94 temp_str = (char *)temp.c_str(); in get_kernel_name() 95 p = strstr(temp_str, "."); in get_kernel_name() 100 kernel_name.assign(temp_str); in get_kernel_name()
|
/external/python/cpython3/Modules/ |
D | parsermodule.c | 870 const char *temp_str; in build_node_children() local 920 temp_str = PyUnicode_AsUTF8AndSize(temp, &len); in build_node_children() 921 if (temp_str == NULL) { in build_node_children() 933 (void) memcpy(strn, temp_str, len + 1); in build_node_children()
|
/external/toolchain-utils/crosperf/ |
D | machine_manager_unittest.py | 812 temp_str = 'abcde' 813 checksum_str = cm._GetMD5Checksum(temp_str) 816 temp_str = '' 817 checksum_str = cm._GetMD5Checksum(temp_str)
|
/external/libvpx/libvpx/third_party/libwebm/mkvmuxer/ |
D | mkvmuxer.cc | 3021 char* temp_str = new (std::nothrow) char[length]; // NOLINT in set_muxing_app() local 3022 if (!temp_str) in set_muxing_app() 3026 strcpy_s(temp_str, length, app); in set_muxing_app() 3028 strcpy(temp_str, app); in set_muxing_app() 3032 muxing_app_ = temp_str; in set_muxing_app() 3039 char* temp_str = new (std::nothrow) char[length]; // NOLINT in set_writing_app() local 3040 if (!temp_str) in set_writing_app() 3044 strcpy_s(temp_str, length, app); in set_writing_app() 3046 strcpy(temp_str, app); in set_writing_app() 3050 writing_app_ = temp_str; in set_writing_app()
|
/external/libaom/libaom/third_party/libwebm/mkvmuxer/ |
D | mkvmuxer.cc | 3021 char* temp_str = new (std::nothrow) char[length]; // NOLINT in set_muxing_app() local 3022 if (!temp_str) in set_muxing_app() 3026 strcpy_s(temp_str, length, app); in set_muxing_app() 3028 strcpy(temp_str, app); in set_muxing_app() 3032 muxing_app_ = temp_str; in set_muxing_app() 3039 char* temp_str = new (std::nothrow) char[length]; // NOLINT in set_writing_app() local 3040 if (!temp_str) in set_writing_app() 3044 strcpy_s(temp_str, length, app); in set_writing_app() 3046 strcpy(temp_str, app); in set_writing_app() 3050 writing_app_ = temp_str; in set_writing_app()
|
/external/libwebm/mkvmuxer/ |
D | mkvmuxer.cc | 3022 char* temp_str = new (std::nothrow) char[length]; // NOLINT in set_muxing_app() local 3023 if (!temp_str) in set_muxing_app() 3027 strcpy_s(temp_str, length, app); in set_muxing_app() 3029 strcpy(temp_str, app); in set_muxing_app() 3033 muxing_app_ = temp_str; in set_muxing_app() 3040 char* temp_str = new (std::nothrow) char[length]; // NOLINT in set_writing_app() local 3041 if (!temp_str) in set_writing_app() 3045 strcpy_s(temp_str, length, app); in set_writing_app() 3047 strcpy(temp_str, app); in set_writing_app() 3051 writing_app_ = temp_str; in set_writing_app()
|
/external/autotest/client/cros/power/ |
D | power_status.py | 232 temp_str = '' 238 temp_str += '%s:%d ' % (kname, val) 245 return temp_str 490 temp_str = self.thermal.get_temps() 491 if temp_str: 492 logging.info('Temperature reading: %s', temp_str)
|
/external/libwebm/ |
D | webm_info.cc | 174 string temp_str(str, strlen(str)); in UTF8ToWideString() local 175 wstr.assign(temp_str.begin(), temp_str.end()); in UTF8ToWideString()
|