Home
last modified time | relevance | path

Searched refs:fileA (Results 1 – 4 of 4) sorted by relevance

/external/testng/src/test/java/test/reports/
DReportTest.java108 File fileA = new File(dirA); in shouldHonorSuiteName() local
111 Assert.assertFalse(fileA.exists()); in shouldHonorSuiteName()
116 Assert.assertTrue(fileA.exists(), fileA + " wasn't created"); in shouldHonorSuiteName() local
/external/neven/Embedded/common/src/b_BasicEm/
DContext.c136 const char* fileA, in bbs_Error_create() argument
144 if( fileA != NULL ) in bbs_Error_create()
146 uint32 lenL = bbs_strlen( fileA ); in bbs_Error_create()
148 bbs_strcpy( errorL.fileE, fileA + ofsL ); in bbs_Error_create()
DContext.h140 struct bbs_Error bbs_Error_create( uint32 errorA, uint32 lineA, const char* fileA, const char* text…
/external/catch2/scripts/
DapprovalTests.py81 def diffFiles(fileA, fileB): argument
82 with io.open(fileA, 'r', encoding='utf-8', errors='surrogateescape') as file:
87 shortenedFilenameA = fileA.rsplit(os.sep, 1)[-1]