Home
last modified time | relevance | path

Searched refs:native_path (Results 1 – 3 of 3) sorted by relevance

/third_party/skia/modules/androidkit/src/
DPath.cpp13 static void Path_Release(JNIEnv* env, jobject, jlong native_path) { in Path_Release() argument
14 delete reinterpret_cast<SkPath*>(native_path); in Path_Release()
DCanvas.cpp96 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/
Dtest_util.cpp427 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()