Home
last modified time | relevance | path

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

/third_party/flutter/skia/third_party/externals/angle2/src/tests/gl_tests/
DPathRenderingTest.cpp195 GLuint first_path = glGenPathsCHROMIUM(5); in TEST_P() local
196 EXPECT_NE(0u, first_path); in TEST_P()
197 glDeletePathsCHROMIUM(first_path, 5); in TEST_P()
202 first_path = glGenPathsCHROMIUM(5); in TEST_P()
203 EXPECT_NE(0u, first_path); in TEST_P()
204 glDeletePathsCHROMIUM(first_path, 6); in TEST_P()
208 first_path = glGenPathsCHROMIUM(big_range); in TEST_P()
209 EXPECT_NE(0u, first_path); in TEST_P()
210 glDeletePathsCHROMIUM(first_path, big_range); in TEST_P()
236 GLuint first_path = glGenPathsCHROMIUM(std::numeric_limits<GLuint>::max()); in TEST_P() local
[all …]
/third_party/glib/glib/
Dgtestutils.c4079 const gchar *first_path, in g_test_build_filename_va() argument
4092 pathv[1] = first_path; in g_test_build_filename_va()
4165 const gchar *first_path, in g_test_build_filename() argument
4173 va_start (ap, first_path); in g_test_build_filename()
4174 result = g_test_build_filename_va (file_type, first_path, ap); in g_test_build_filename()
4232 const gchar *first_path, in g_test_get_filename() argument
4243 va_start (ap, first_path); in g_test_get_filename()
4244 result = g_test_build_filename_va (file_type, first_path, ap); in g_test_get_filename()
Dgtestutils.h675 const gchar *first_path,
681 const gchar *first_path,
/third_party/node/src/
Dnode_file.cc704 if (!req_wrap->continuation_data()->first_path().empty()) { in AfterMkdirp()
705 std::string first_path(req_wrap->continuation_data()->first_path()); in AfterMkdirp() local
706 FromNamespacedPath(&first_path); in AfterMkdirp()
707 path = StringBytes::Encode(req_wrap->env()->isolate(), first_path.c_str(), in AfterMkdirp()
1552 !req_wrap_sync.continuation_data()->first_path().empty()) { in MKDir()
1554 std::string first_path(req_wrap_sync.continuation_data()->first_path()); in MKDir() local
1555 FromNamespacedPath(&first_path); in MKDir()
1557 first_path.c_str(), in MKDir()
Dnode_file.h51 const std::string& first_path() const { return first_path_; } in first_path() function