Home
last modified time | relevance | path

Searched refs:tmpStr (Results 1 – 5 of 5) sorted by relevance

/third_party/mindspore/mindspore/lite/src/common/
Dutils.cc88 std::string tmpStr(str + pattern); in StrSplit() local
89 std::string::size_type size = tmpStr.size(); in StrSplit()
92 pos = tmpStr.find(pattern, i); in StrSplit()
94 std::string s = tmpStr.substr(i, pos - i); in StrSplit()
/third_party/flutter/skia/third_party/externals/sdl/src/core/winrt/
DSDL_winrtapp_direct3d.cpp511 wchar_t *tmpStr = NULL; // used for UTF8 to UCS2 conversion variable
517 tmpStr = WIN_UTF8ToString(tmpHintValue);
518 privacyPolicyURL = ref new String(tmpStr);
519 SDL_free(tmpStr);
525 tmpStr = WIN_UTF8ToString(tmpHintValue);
526 privacyPolicyLabel = ref new String(tmpStr);
527 SDL_free(tmpStr);
/third_party/skia/src/ports/
DSkTypeface_mac_ct.cpp1054 SkString tmpStr; in onGetFontDescriptor() local
1056 desc->setFamilyName(get_str(CTFontCopyFamilyName(fFontRef.get()), &tmpStr)); in onGetFontDescriptor()
1057 desc->setFullName(get_str(CTFontCopyFullName(fFontRef.get()), &tmpStr)); in onGetFontDescriptor()
1058 desc->setPostscriptName(get_str(CTFontCopyPostScriptName(fFontRef.get()), &tmpStr)); in onGetFontDescriptor()
/third_party/flutter/skia/src/ports/
DSkFontHost_mac.cpp2411 SkString tmpStr; in onGetFontDescriptor() local
2413 desc->setFamilyName(get_str(CTFontCopyFamilyName(fFontRef.get()), &tmpStr)); in onGetFontDescriptor()
2414 desc->setFullName(get_str(CTFontCopyFullName(fFontRef.get()), &tmpStr)); in onGetFontDescriptor()
2415 desc->setPostscriptName(get_str(CTFontCopyPostScriptName(fFontRef.get()), &tmpStr)); in onGetFontDescriptor()
/third_party/cef/libcef/renderer/
Dv8_impl.cc449 std::string tmpStr = str; in GetV8String()
450 return v8::String::NewFromUtf8(isolate, tmpStr.c_str(), in GetV8String()
451 v8::NewStringType::kNormal, tmpStr.length()) in GetV8String()