Searched refs:native_path (Results 1 – 3 of 3) sorted by relevance
/third_party/skia/modules/androidkit/src/ |
D | Path.cpp | 13 static void Path_Release(JNIEnv* env, jobject, jlong native_path) { in Path_Release() argument 14 delete reinterpret_cast<SkPath*>(native_path); in Path_Release()
|
D | Canvas.cpp | 96 void Canvas_ClipPath(JNIEnv* env, jobject, jlong native_instance, jlong native_path, in Canvas_ClipPath() argument 99 if (auto* path = reinterpret_cast<SkPath*>(native_path)) { in Canvas_ClipPath() 158 void Canvas_DrawPath(JNIEnv* env, jobject, jlong native_instance, jlong native_path, in Canvas_DrawPath() argument 161 auto* path = reinterpret_cast<SkPath* >(native_path); in Canvas_DrawPath()
|
/third_party/vulkan-loader/tests/framework/ |
D | test_util.cpp | 427 std::wstring native_path(const std::string& utf8) { return widen(utf8); } in native_path() function 429 const std::string& native_path(const std::string& utf8) { return utf8; } in native_path() function 466 … auto file = std::ofstream(native_path(out_path.str()), std::ios_base::trunc | std::ios_base::out); in write_manifest() 502 std::ifstream src(native_path(file.str()), std::ios::binary); in copy_file() 507 std::ofstream dst(native_path(new_filepath.str()), std::ios::binary); in copy_file()
|