Home
last modified time | relevance | path

Searched refs:Path (Results 1 – 25 of 12610) sorted by relevance

12345678910>>...505

/dports/games/trenchbroom/TrenchBroom-ed46601/test/src/IO/
H A DPathTest.cpp47 ASSERT_EQ(Path(""), Path("") + Path("")); in TEST()
48 ASSERT_EQ(Path("c:\\"), Path("c:\\") + Path("")); in TEST()
49 ASSERT_EQ(Path("c:\\asdf"), Path("c:\\asdf") + Path("")); in TEST()
50 ASSERT_EQ(Path("c:\\asdf"), Path("c:\\") + Path("asdf")); in TEST()
52 ASSERT_EQ(Path("asdf\\hey"), Path("asdf") + Path("hey")); in TEST()
164 ASSERT_EQ(Path(""), Path("") + Path(""));
165 ASSERT_EQ(Path("/"), Path("/") + Path(""));
166 ASSERT_EQ(Path("/asdf"), Path("/asdf") + Path(""));
167 ASSERT_EQ(Path("/asdf"), Path("/") + Path("asdf"));
168 ASSERT_EQ(Path("/asdf/hey"), Path("/asdf") + Path("hey"));
[all …]
H A DDiskFileSystemTest.cpp38 Path m_dir;
41 m_dir(Path(::wxGetCwd().ToStdString()) + Path(dir)) { in TestEnvironment()
50 inline const Path& dir() const { in dir()
55 createDirectory(Path("")); in createTestEnvironment()
56 createDirectory(Path("dir1")); in createTestEnvironment()
88 const Path subPath = path + Path(filename.ToStdString()); in deleteDirectory()
162 Path::List rootPaths; in TEST()
166 Path::List paths; in TEST()
245 Path::List items = fs.findItems(Path(".")); in TEST()
274 Path::List items = fs.findItemsRecursively(Path(".")); in TEST()
[all …]
/dports/science/opensph/sph-7de6c044339f649e3d19e61f735a6a24572b792a/core/io/test/
H A DPath.cpp8 Path path;
19 REQUIRE(Path("/usr/lib") == Path("\\usr\\lib"));
20 REQUIRE(Path("/usr/lib") == Path("/usr////lib"));
25 REQUIRE(Path("/usr/local/") / Path("share") == Path("/usr/local/share"));
26 REQUIRE(Path("/usr/local") / Path("share") == Path("/usr/local/share"));
27 REQUIRE(Path() / Path("/usr/local") == Path("/usr/local"));
28 REQUIRE(Path() / Path("usr/local") == Path("usr/local"));
29 REQUIRE(Path("/usr/local") / Path() == Path("/usr/local"));
30 REQUIRE(Path() / Path() == Path());
45 REQUIRE(Path("/").parentPath() == Path());
[all …]
/dports/devel/msbuild/msbuild-0.06/src/Utilities.UnitTests/TrackedDependencies/
H A DTrackedDependenciesTests.cs323 Path.GetFullPath(Path.Combine("TestFiles", "oNe.h")), in SingleCanonicalCL()
968 …= Path.GetFullPath(Path.Combine("TestFiles", "one.cpp")) + "|" + Path.GetFullPath(Path.Combine("Te… in RemoveDependencyFromEntries()
1005Path.GetFullPath(Path.Combine("TestFiles", "one.cpp"))), new TaskItem(Path.GetFullPath(Path.Combin… in RemoveDependencyFromEntries()
1019Path.GetFullPath(Path.Combine("TestFiles", "one.cpp"))), new TaskItem(Path.GetFullPath(Path.Combin… in RemoveDependencyFromEntries()
1043 …= Path.GetFullPath(Path.Combine("TestFiles", "one.cpp")) + "|" + Path.GetFullPath(Path.Combine("Te… in RemoveRootsWithSharedOutputs()
1044 …string rootingMarker2 = Path.GetFullPath(Path.Combine("TestFiles", "one.cpp")) + "|" + Path.GetFul… in RemoveRootsWithSharedOutputs()
1089 …= Path.GetFullPath(Path.Combine("TestFiles", "one.cpp")) + "|" + Path.GetFullPath(Path.Combine("Te… in RemoveRootsWithSharedOutputs_CurrentRootNotInTable()
1090 …string rootingMarker2 = Path.GetFullPath(Path.Combine("TestFiles", "one.cpp")) + "|" + Path.GetFul… in RemoveRootsWithSharedOutputs_CurrentRootNotInTable()
2359 … + Path.GetFullPath(Path.Combine("TestFiles", "one.cpp")) + "|" + Path.GetFullPath(Path.Combine("T… in OutputMultipleUnrecognisedRootCanonicalCL()
2636 …File.Move(Path.GetFullPath(Path.Combine("TestFiles", "three.obj")), Path.GetFullPath(Path.Combine(… in ReplaceOutputForSource()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.bundles/bundles/org.eclipse.equinox.common.tests/src/org/eclipse/equinox/common/tests/
H A DPathTest.java89 assertEquals("1.6", Path.EMPTY, Path.EMPTY.append(Path.EMPTY)); in testAppend()
90 assertEquals("1.7", Path.EMPTY, Path.EMPTY.append(Path.ROOT)); in testAppend()
91 assertEquals("1.8", Path.ROOT, Path.ROOT.append(Path.EMPTY)); in testAppend()
92 assertEquals("1.9", Path.ROOT, Path.ROOT.append(Path.ROOT)); in testAppend()
148 assertEquals("6.14", new Path("foo/bar"), new Path("foo").append(new Path("/bar"))); in testAppend()
149 assertEquals("6.15", new Path("foo/bar"), new Path("foo").append(new Path("bar"))); in testAppend()
151 assertEquals("6.17", new Path("/foo/bar"), new Path("/foo/").append(new Path("bar"))); in testAppend()
153 assertEquals("6.18", new Path("foo/bar/"), new Path("foo").append(new Path("/bar/"))); in testAppend()
154 assertEquals("6.19", new Path("foo/bar/"), new Path("foo").append(new Path("bar/"))); in testAppend()
641 bases = new IPath[] {new Path("/"), new Path("/b"), new Path("/b/c")}; in testMakeRelativeTo()
[all …]
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/
H A DTestPath.java55 Path paths[] = new Path[statuses.length]; in mergeStatuses()
267 Path item = new Path(path); in testInvalidWindowsPaths()
277 Path parent = new Path("foo1://bar1/baz1"); in testChildParentResolution()
291 Path path = new Path(uri); in testURI()
414 Path paths[] = new Path[]{ in testGlobEscapeStatus()
463 Path.mergePaths(new Path("/foo"), in testMergePaths()
467 Path.mergePaths(new Path("/foo/bar"), in testMergePaths()
471 Path.mergePaths(new Path("/foo"), in testMergePaths()
475 Path.mergePaths(new Path("/C:/foo"), in testMergePaths()
479 Path.mergePaths(new Path("/C:/"), in testMergePaths()
[all …]
H A DSymlinkBaseTest.java106 Path dir = new Path(testBaseDir1()); in testSetWDNotResolvesLinks()
116 Path file = new Path("/noSuchFile"); in testCreateDanglingLink()
279 Path dir = new Path(testBaseDir1()); in testStatLinkToDir()
297 Path file = new Path("/noSuchFile"); in testStatDanglingLink()
325 Path dir = new Path(testBaseDir1()); in testStatNonLinks()
362 private void checkLink(Path linkAbs, Path expectedTarget, Path targetQual) in checkLink()
370 Path dir = new Path(testBaseDir1()); in checkLink()
783 Path dir = new Path(testBaseDir1()); in testCreateLinkToDot()
925 Path dir1 = new Path(testBaseDir1()); in testRenameDirToSymlinkToFile()
944 Path dir = new Path(testBaseDir1()); in testRenameDirToDanglingSymlink()
[all …]
/dports/misc/usd/USD-21.11/pxr/usd/sdf/testenv/
H A DtestSdfPath.py76 self.assertTrue(not Sdf.Path('aaa') < Sdf.Path())
77 self.assertTrue(Sdf.Path('/') < Sdf.Path('/a'))
678 Sdf.Path().AppendPath( Sdf.Path() )
681 Sdf.Path().AppendPath( Sdf.Path('A') )
684 self.assertEqual(Sdf.Path('/').AppendPath( Sdf.Path('A') ), Sdf.Path('/A'))
685 self.assertEqual(Sdf.Path('/A').AppendPath( Sdf.Path('B') ), Sdf.Path('/A/B'))
689 Sdf.Path('/').AppendPath( Sdf.Path() )
812 [Sdf.Path("bar"), Sdf.Path("baz"), Sdf.Path("/foo")] )
998 [Sdf.Path("/foo/bar.prop"), Sdf.Path("/foo/bar"), Sdf.Path("/foo")])
1017 [Sdf.Path("foo/bar.prop"), Sdf.Path("foo/bar"), Sdf.Path("foo")])
[all …]
/dports/audio/raul/raul-e87bb398f025912fb989a09f1450b838b251aea1/test/
H A Dpath_test.cpp30 using Path = Raul::Path;
42 assert(Path::lca(Path("/foo"), Path("/foo/bar/baz")) == Path("/"));
43 assert(Path::lca(Path("/foo/bar"), Path("/foo/bar/baz")) == Path("/foo"));
44 assert(Path::lca(Path("/foo/bar/quux"), Path("/foo/bar/baz")) == Path("/foo/bar"));
54 assert(Path::descendant_comparator(Path("/"), Path("/")));
55 assert(Path::descendant_comparator(Path("/"), Path("/foo")));
56 assert(Path::descendant_comparator(Path("/foo"), Path("/foo/bar")));
57 assert(Path::descendant_comparator(Path("/foo"), Path("/foo")));
58 assert(Path::descendant_comparator(Path("/"), Path("/")));
59 assert(!Path::descendant_comparator(Path("/baz"), Path("/")));
[all …]
/dports/devel/hadoop/hadoop-1.2.1/src/test/org/apache/hadoop/fs/
H A DTestPath.java90 assertEquals(new Path("/"), new Path("/foo").getParent()); in testParent()
97 assertEquals(new Path("."), new Path(".", ".")); in testChild()
98 assertEquals(new Path("/"), new Path("/", ".")); in testChild()
99 assertEquals(new Path("/"), new Path(".", "/")); in testChild()
100 assertEquals(new Path("/foo"), new Path("/", "foo")); in testChild()
104 assertEquals(new Path("foo"), new Path(".", "foo")); in testChild()
105 assertEquals(new Path("foo/bar"), new Path("foo", "bar")); in testChild()
108 assertEquals(new Path("/foo"), new Path("/bar", "/foo")); in testChild()
116 assertFalse(new Path("/").equals(new Path("/foo"))); in testEquals()
163 Path path = new Path(uri); in testURI()
[all …]
/dports/net/concourse-fly/concourse-6.7.1/atc/
H A Droutes.go128 {Path: "/api/v1/builds", Method: "GET", Name: ListBuilds},
139 {Path: "/api/v1/jobs", Method: "GET", Name: ListAllJobs},
192 {Path: "/api/v1/workers", Method: "GET", Name: ListWorkers},
200 {Path: "/api/v1/log-level", Method: "GET", Name: GetLogLevel},
203 {Path: "/api/v1/cli", Method: "GET", Name: DownloadCLI},
204 {Path: "/api/v1/info", Method: "GET", Name: GetInfo},
207 {Path: "/api/v1/user", Method: "GET", Name: GetUser},
220 {Path: "/api/v1/teams", Method: "GET", Name: ListTeams},
230 {Path: "/api/v1/wall", Method: "GET", Name: GetWall},
231 {Path: "/api/v1/wall", Method: "PUT", Name: SetWall},
[all …]
/dports/misc/concourse/concourse-6.7.2/atc/
H A Droutes.go128 {Path: "/api/v1/builds", Method: "GET", Name: ListBuilds},
139 {Path: "/api/v1/jobs", Method: "GET", Name: ListAllJobs},
192 {Path: "/api/v1/workers", Method: "GET", Name: ListWorkers},
200 {Path: "/api/v1/log-level", Method: "GET", Name: GetLogLevel},
203 {Path: "/api/v1/cli", Method: "GET", Name: DownloadCLI},
204 {Path: "/api/v1/info", Method: "GET", Name: GetInfo},
207 {Path: "/api/v1/user", Method: "GET", Name: GetUser},
220 {Path: "/api/v1/teams", Method: "GET", Name: ListTeams},
230 {Path: "/api/v1/wall", Method: "GET", Name: GetWall},
231 {Path: "/api/v1/wall", Method: "PUT", Name: SetWall},
[all …]
/dports/devel/cppcheck-gui/cppcheck-2.6.3/test/
H A Dtestpath.cpp55 ASSERT(Path::acceptFile("index.cpp")); in acceptFile()
62 ASSERT(Path::acceptFile("")==false); in acceptFile()
63 ASSERT(Path::acceptFile("C")==false); in acceptFile()
71 ASSERT_EQUALS(true, Path::isAbsolute(Path::getCurrentPath())); in getCurrentPath()
110 ASSERT(Path::isC("index.cpp")==false); in is_c()
111 ASSERT(Path::isC("")==false); in is_c()
112 ASSERT(Path::isC("c")==false); in is_c()
113 ASSERT(Path::isC("index.c")); in is_c()
114 ASSERT(Path::isC("C:\\foo\\index.c")); in is_c()
125 ASSERT(Path::isCPP("index.c")==false); in is_cpp()
[all …]
/dports/devel/cppcheck/cppcheck-2.6.3/test/
H A Dtestpath.cpp55 ASSERT(Path::acceptFile("index.cpp")); in acceptFile()
62 ASSERT(Path::acceptFile("")==false); in acceptFile()
63 ASSERT(Path::acceptFile("C")==false); in acceptFile()
71 ASSERT_EQUALS(true, Path::isAbsolute(Path::getCurrentPath())); in getCurrentPath()
110 ASSERT(Path::isC("index.cpp")==false); in is_c()
111 ASSERT(Path::isC("")==false); in is_c()
112 ASSERT(Path::isC("c")==false); in is_c()
113 ASSERT(Path::isC("index.c")); in is_c()
114 ASSERT(Path::isC("C:\\foo\\index.c")); in is_c()
125 ASSERT(Path::isCPP("index.c")==false); in is_cpp()
[all …]
/dports/devel/capnproto080/capnproto-0.8.0/c++/src/kj/
H A Dfilesystem-test.c++90 KJ_EXPECT(Path({"foo", "bar"}) == Path({"foo", "bar"}));
92 KJ_EXPECT(Path({"foo", "bar"}) != Path({"foo", "baz"}));
95 KJ_EXPECT(Path({"foo", "bar"}) != Path({"fob", "bar"}));
99 KJ_EXPECT(Path({"foo", "bar"}) <= Path({"foo", "bar"}));
100 KJ_EXPECT(Path({"foo", "bar"}) >= Path({"foo", "bar"}));
109 KJ_EXPECT(Path({"foo", "bar"}) < Path({"foo", "baz"}));
110 KJ_EXPECT(Path({"foo", "bar"}) > Path({"foo", "baa"}));
111 KJ_EXPECT(Path({"foo", "bar"}) > Path({"foo"}));
113 KJ_EXPECT(Path({"foo", "bar"}).startsWith(Path({})));
121 KJ_EXPECT(Path({"foo", "bar"}).endsWith(Path({})));
[all …]
/dports/devel/capnproto/capnproto-0.9.0/c++/src/kj/
H A Dfilesystem-test.c++90 KJ_EXPECT(Path({"foo", "bar"}) == Path({"foo", "bar"}));
92 KJ_EXPECT(Path({"foo", "bar"}) != Path({"foo", "baz"}));
95 KJ_EXPECT(Path({"foo", "bar"}) != Path({"fob", "bar"}));
99 KJ_EXPECT(Path({"foo", "bar"}) <= Path({"foo", "bar"}));
100 KJ_EXPECT(Path({"foo", "bar"}) >= Path({"foo", "bar"}));
109 KJ_EXPECT(Path({"foo", "bar"}) < Path({"foo", "baz"}));
110 KJ_EXPECT(Path({"foo", "bar"}) > Path({"foo", "baa"}));
111 KJ_EXPECT(Path({"foo", "bar"}) > Path({"foo"}));
113 KJ_EXPECT(Path({"foo", "bar"}).startsWith(Path({})));
121 KJ_EXPECT(Path({"foo", "bar"}).endsWith(Path({})));
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Runtime.Extensions/tests/Performance/
H A DPerf.Path.cs55 …str = Path.GetFileName(testPath); str = Path.GetFileName(testPath); str = Path.GetFileName(testPat… in GetFileName()
56 …str = Path.GetFileName(testPath); str = Path.GetFileName(testPath); str = Path.GetFileName(testPat… in GetFileName()
57 …str = Path.GetFileName(testPath); str = Path.GetFileName(testPath); str = Path.GetFileName(testPat… in GetFileName()
254 … str = Path.GetRandomFileName(); str = Path.GetRandomFileName(); str = Path.GetRandomFileName(); in GetRandomFileName()
255 … str = Path.GetRandomFileName(); str = Path.GetRandomFileName(); str = Path.GetRandomFileName(); in GetRandomFileName()
256 … str = Path.GetRandomFileName(); str = Path.GetRandomFileName(); str = Path.GetRandomFileName(); in GetRandomFileName()
276 … str = Path.GetTempPath(); str = Path.GetTempPath(); str = Path.GetTempPath(); in GetTempPath()
277 … str = Path.GetTempPath(); str = Path.GetTempPath(); str = Path.GetTempPath(); in GetTempPath()
278 … str = Path.GetTempPath(); str = Path.GetTempPath(); str = Path.GetTempPath(); in GetTempPath()
298 … b = Path.HasExtension(testPath); b = Path.HasExtension(testPath); b = Path.HasExtension(testPath); in HasExtension()
[all …]
/dports/devel/poco/poco-1.10.1-all/Foundation/include/Poco/
H A DPath.h71 Path(const Path& path);
74 Path(Path&& path) noexcept;
85 Path(const Path& parent, const Path& relative);
93 Path& operator = (const Path& path);
96 Path& operator = (Path&& path) noexcept;
114 Path& assign(const Path& path);
170 Path& makeAbsolute(const Path& base);
174 Path& append(const Path& path);
177 Path& resolve(const Path& path);
267 Path absolute(const Path& base) const;
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Runtime.Extensions/tests/System/IO/
H A DPathTests.cs474 Path.GetFullPath(Path.GetTempPath())); in GetTempPath_SetEnvVar()
496 Assert.Equal(Path.Combine(Path.GetTempPath(), Path.GetFileName(tmpFile)), tmpFile); in GetTempFileName()
724Path.GetFullPath(curDir + Path.DirectorySeparatorChar + ". " + Path.DirectorySeparatorChar)); in GetFullPath_Windows_StrangeButLegalPaths()
726 Path.GetFullPath(Path.GetDirectoryName(curDir) + Path.DirectorySeparatorChar), in GetFullPath_Windows_StrangeButLegalPaths()
727Path.GetFullPath(curDir + Path.DirectorySeparatorChar + "..." + Path.DirectorySeparatorChar)); in GetFullPath_Windows_StrangeButLegalPaths()
729 Path.GetFullPath(Path.GetDirectoryName(curDir) + Path.DirectorySeparatorChar), in GetFullPath_Windows_StrangeButLegalPaths()
730Path.GetFullPath(curDir + Path.DirectorySeparatorChar + ".. " + Path.DirectorySeparatorChar)); in GetFullPath_Windows_StrangeButLegalPaths()
736Path.GetFullPath(curDir + Path.DirectorySeparatorChar + ". " + Path.DirectorySeparatorChar)); in GetFullPath_Windows_StrangeButLegalPaths()
738 Path.GetFullPath(Path.GetDirectoryName(curDir) + Path.DirectorySeparatorChar), in GetFullPath_Windows_StrangeButLegalPaths()
739Path.GetFullPath(curDir + Path.DirectorySeparatorChar + "..." + Path.DirectorySeparatorChar)); in GetFullPath_Windows_StrangeButLegalPaths()
[all …]
/dports/games/trenchbroom/TrenchBroom-ed46601/common/src/
H A DPreferences.cpp30 Preference<bool> ShowAxes(IO::Path("Renderer/Show axes"), true);
32 Preference<float> AxisLength(IO::Path("Renderer/Axis length"), 128.0f);
81 Preference<float> HandleRadius(IO::Path("Controls/Handle radius"), 3.0f);
105 Preference<float> Brightness(IO::Path("Renderer/Brightness"), 1.4f);
106 Preference<float> GridAlpha(IO::Path("Renderer/Grid/Alpha"), 0.5f);
112 Preference<IO::Path>& RendererFontPath() { in RendererFontPath()
114 …static Preference<IO::Path> fontPath(IO::Path("Renderer/Font name"), IO::SystemPaths::findFontFile… in RendererFontPath()
116 …static Preference<IO::Path> fontPath(IO::Path("Renderer/Font name"), IO::SystemPaths::findFontFile… in RendererFontPath()
118 …static Preference<IO::Path> fontPath(IO::Path("Renderer/Font name"), IO::Path("fonts/SourceSansPro… in RendererFontPath()
123 Preference<int> RendererFontSize(IO::Path("Renderer/Font size"), 13);
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/tests/System/Xml/XmlCoreTest/
H A DTestData.g.cs20 … yield return Tuple.Create(Path.Combine("StandardTests", "XML10", "ms_xml", "vs084.xml"), s_file6); in GetDataFiles()
27 … yield return Tuple.Create(Path.Combine("TestData", "RWFactory", "utf-16-dtd.xml"), s_file13); in GetDataFiles()
29 … yield return Tuple.Create(Path.Combine("TestData", "RWFactory", "utf-16.xml"), s_file15); in GetDataFiles()
31 … yield return Tuple.Create(Path.Combine("TestData", "RWFactory", "utf-16be.xml"), s_file17); in GetDataFiles()
33 yield return Tuple.Create(Path.Combine("TestData", "RWFactory", "utf-8.xml"), s_file19); in GetDataFiles()
34 … yield return Tuple.Create(Path.Combine("TestData", "XLinq", "Attributes.xml"), s_file20); in GetDataFiles()
35 yield return Tuple.Create(Path.Combine("TestData", "XLinq", "Books.xml"), s_file21); in GetDataFiles()
36 yield return Tuple.Create(Path.Combine("TestData", "XLinq", "config.xml"), s_file22); in GetDataFiles()
37 … yield return Tuple.Create(Path.Combine("TestData", "XLinq", "NoExternals.xml"), s_file23); in GetDataFiles()
38 yield return Tuple.Create(Path.Combine("TestData", "XLinq", "Note.xml"), s_file24); in GetDataFiles()
[all …]
/dports/net/ooni-probe-cli/probe-cli-3.10.1/vendor/github.com/shuLhan/go-bindata/
H A Dfsscanner_test.go36 Path: "testdata/symlinkSrc/file1",
43 Path: "./testdata/symlinkSrc",
47 Path: "testdata/symlinkSrc/file1",
51 Path: "testdata/symlinkSrc/file2",
55 Path: "testdata/symlinkSrc/file3",
59 Path: "testdata/symlinkSrc/file4",
84 Path: "testdata/symlinkSrc/file1",
88 Path: "testdata/symlinkSrc/file2",
92 Path: "testdata/symlinkSrc/file3",
96 Path: "testdata/symlinkSrc/file4",
[all …]
/dports/www/pomerium/pomerium-0.8.3/vendor/github.com/open-policy-agent/opa/storage/
H A Dpath_test.go109 {Path{}, Path{}, 0},
110 {Path{}, Path{"x"}, -1},
111 {Path{"x"}, Path{}, 1},
112 {Path{"x"}, Path{"x"}, 0},
113 {Path{"x"}, Path{"y"}, -1},
114 {Path{"x"}, Path{"w"}, 1},
115 {Path{"x"}, Path{"wz"}, 1},
116 {Path{"x"}, Path{"xx"}, -1},
117 {Path{"xx"}, Path{"x"}, 1},
135 {Path{}, Path{}, true},
[all …]
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/open-policy-agent/opa/storage/
H A Dpath_test.go109 {Path{}, Path{}, 0},
110 {Path{}, Path{"x"}, -1},
111 {Path{"x"}, Path{}, 1},
112 {Path{"x"}, Path{"x"}, 0},
113 {Path{"x"}, Path{"y"}, -1},
114 {Path{"x"}, Path{"w"}, 1},
115 {Path{"x"}, Path{"wz"}, 1},
116 {Path{"x"}, Path{"xx"}, -1},
117 {Path{"xx"}, Path{"x"}, 1},
135 {Path{}, Path{}, true},
[all …]
/dports/devel/abi-compliance-checker/abi-compliance-checker-2.3/checker/modules/Internals/
H A DDescriptor.pm29 if(not -e $Path) {
33 if(-d $Path)
41 $Path
45 $Path
63 $Path
155 $Path = getAbsPath($Path);
163 $Path = getAbsPath($Path);
171 $Path = getAbsPath($Path);
185 $Path = getAbsPath($Path);
199 $Path = getAbsPath($Path);
[all …]

12345678910>>...505