Lines Matching defs:leafName

198 		const char *leafName = "boot";
200 BPath path(pathName, leafName);
208 const char *leafName = "home/Desktop";
210 BPath path(pathName, leafName);
218 const char *leafName = "but/who/cares";
220 BPath path(pathName, leafName);
228 const char *leafName = ".";
230 BPath path(pathName, leafName);
238 const char *leafName = "home/..";
240 BPath path(pathName, leafName);
248 const char *leafName = "but//who/cares";
249 BPath path(pathName, leafName);
257 const char *leafName = "but/who/cares";
258 BPath path(pathName, leafName, true);
267 const char *leafName = "home";
269 BPath path(pathName, leafName);
278 const char *leafName = "but/who/cares";
279 BPath path(pathName, leafName);
288 const char *leafName = "Desktop//";
290 BPath path(pathName, leafName);
298 const char *leafName = "/boot";
299 BPath path(pathName, leafName);
359 const char *leafName = "boot";
362 BPath path(&dir, leafName);
370 const char *leafName = "home/Desktop";
373 BPath path(&dir, leafName);
381 const char *leafName = "home/..";
384 BPath path(&dir, leafName);
392 const char *leafName = "/boot";
394 BPath path(&dir, leafName);
533 const char *leafName;
661 leafName = "boot";
663 CPPUNIT_ASSERT( path.SetTo(pathName, leafName) == B_OK );
670 leafName = "home/Desktop";
672 CPPUNIT_ASSERT( path.SetTo(pathName, leafName) == B_OK );
679 leafName = "but/who/cares";
681 CPPUNIT_ASSERT( path.SetTo(pathName, leafName) == B_OK );
688 leafName = ".";
690 CPPUNIT_ASSERT( path.SetTo(pathName, leafName) == B_OK );
697 leafName = "home/..";
699 CPPUNIT_ASSERT( path.SetTo(pathName, leafName) == B_OK );
706 leafName = "home/Desktop";
713 CPPUNIT_ASSERT( path.SetTo(path.Path(), leafName) == B_OK );
719 leafName = "but//who/cares";
720 CPPUNIT_ASSERT( path.SetTo(pathName, leafName) == B_ENTRY_NOT_FOUND );
727 leafName = "but/who/cares";
728 CPPUNIT_ASSERT( path.SetTo(pathName, leafName, true) == B_ENTRY_NOT_FOUND );
736 leafName = "home";
738 CPPUNIT_ASSERT( path.SetTo(pathName, leafName) == B_OK );
746 leafName = "but/who/cares";
747 CPPUNIT_ASSERT( path.SetTo(pathName, leafName) == B_ENTRY_NOT_FOUND );
755 leafName = "Desktop//";
757 CPPUNIT_ASSERT( path.SetTo(pathName, leafName) == B_OK );
820 leafName = "boot";
823 CPPUNIT_ASSERT( path.SetTo(&dir, leafName) == B_OK );
831 leafName = "home/Desktop";
834 CPPUNIT_ASSERT( path.SetTo(&dir, leafName) == B_OK );
842 leafName = "home/..";
845 CPPUNIT_ASSERT( path.SetTo(&dir, leafName) == B_OK );
853 leafName = "/boot";
855 CPPUNIT_ASSERT( path.SetTo(&dir, leafName) == B_BAD_VALUE );