Searched refs:run (Results 1 - 25 of 79) sorted by path

1234

/haiku/headers/tools/cppunit/
H A DTestSuite.h19 virtual void run(CppUnit::TestResult *result);
H A DThreadedTestCaller.h20 Each ThreadMethod added with addThread() is run in its own thread.
29 virtual CppUnit::TestResult *run();
30 virtual void run(CppUnit::TestResult *result);
103 BThreadedTestCaller<TestClass, ExpectedException>::run() { function in class:BThreadedTestCaller
105 run(result);
111 BThreadedTestCaller<TestClass, ExpectedException>::run(CppUnit::TestResult *result) { function in class:BThreadedTestCaller
115 throw CppUnit::Exception("BThreadedTestCaller::run() -- No threads added to BThreadedTestCaller()");
137 throw CppUnit::Exception("BThreadedTestCaller::run() -- Error creating fThreadSem");
/haiku/headers/tools/cppunit/cppunit/
H A DTest.h18 * When a Test is run, the result is collected by a TestResult object.
30 virtual void run (TestResult *result) = 0;
32 /*! \brief Return the number of test cases invoked by run().
36 * the run() method.
H A DTestCase.h36 virtual void run(TestResult *result);
42 virtual TestResult *run();
48 //! Create TestResult for the run(void) method.
H A DTestSuite.h53 void run( TestResult *result );
/haiku/headers/tools/cppunit/cppunit/extensions/
H A DRepeatedTest.h25 void run( TestResult *result );
H A DTestDecorator.h26 void run (TestResult *result);
52 inline void TestDecorator::run (TestResult *result) function in class:CppUnit::TestDecorator
53 { m_test->run (result); }
H A DTestSetUp.h17 void run( TestResult *result );
/haiku/headers/tools/cppunit/cppunit/ui/text/
H A DTestRunner.h27 * The test runner can run only one of the added tests or all the tests.
37 * runner.run( "", true ); // Run all tests and wait
57 * runner.run( "", true ); // Run all tests and wait
69 bool run( string testName ="",
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DCheckVisitor.h59 status_t _CheckAllocated(block_run run,
H A DFileSystemVisitor.cpp247 block_run run; local
248 while (fStack.Pop(&run))
249 put_vnode(fVolume->FSVolume(), fVolume->ToVnode(run));
H A DVolume.h84 off_t ToOffset(block_run run) const
85 { return ToBlock(run) << BlockShift(); }
86 off_t ToBlock(block_run run) const
87 { return ((((off_t)run.AllocationGroup())
89 | (off_t)run.Start()); }
91 status_t ValidateBlockRun(block_run run);
93 off_t ToVnode(block_run run) const
94 { return ToBlock(run); }
109 block_run& run);
112 block_run& run);
212 AllocateForInode(Transaction& transaction, const block_run* parent, mode_t type, block_run& run) argument
220 Allocate(Transaction& transaction, Inode* inode, off_t numBlocks, block_run& run, uint16 minimum) argument
229 Free(Transaction& transaction, block_run run) argument
[all...]
H A Dbfs.h37 inline bool operator==(const block_run &run) const;
38 inline bool operator!=(const block_run &run) const;
40 inline bool MergeableWith(block_run run) const;
309 block_run::operator==(const block_run &run) const
311 return allocation_group == run.allocation_group
312 && start == run.start
313 && length == run.length;
318 block_run::operator!=(const block_run &run) const
320 return allocation_group != run.allocation_group
321 || start != run
355 block_run run; local
[all...]
/haiku/src/apps/cortex/support/
H A DBasicThread.h38 // run() implementation to indicate that it has completed by
57 virtual void run()=0;
142 // Call this method at the end of your run() implementation.
154 instance->run();
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DConsoleOutputView.cpp240 text_run_array run;
241 run.count = 1;
242 run.runs[0].font = be_fixed_font;
243 run.runs[0].offset = 0;
244 run.runs[0].color.red = info->fd == 1 ? 0 : 192;
245 run.runs[0].color.green = 0;
246 run.runs[0].color.blue = 0;
247 run.runs[0].color.alpha = 255;
257 info->text.Length(), &run);
/haiku/src/bin/bfs_tools/
H A Dbfsinfo.cpp173 block_run run; local
174 while (directory->GetNextEntry(name, &run) == B_OK) {
176 dump_block_run("", run, buffer);
191 block_run run; local
192 while (directory->GetNextEntry(name, &run) == B_OK)
353 block_run run; local
365 run = parseBlockRun(disk, argv[1], argv[2]);
367 if (disk.ReadAt(disk.ToOffset(run), buffer, disk.BlockSize()) <= 0) {
382 "-----------\n", disk.ToBlock(run));
392 "------------\n", disk.ToBlock(run));
[all...]
/haiku/src/bin/bfs_tools/lib/
H A DDisk.cpp36 CacheableBlockRun(block_run run,uint8 *data) argument
38 fRun(run),
48 virtual bool Equals(block_run run) argument
50 return run == fRun;
76 Cache<block_run>::Cacheable *BlockRunCache::NewCacheable(block_run run) argument
78 ssize_t length = (int32)run.length << fDisk->BlockShift();
84 ssize_t read = fDisk->ReadAt(fDisk->ToOffset(run),buffer,length);
90 return new CacheableBlockRun(run,(uint8 *)buffer);
192 block_run run; local
193 run
210 ReadBlockRun(block_run run) argument
[all...]
H A DDisk.h29 virtual Cacheable *NewCacheable(block_run run);
63 off_t ToOffset(block_run run) const { return ToBlock(run) << fSuperBlock.block_shift; }
64 off_t ToBlock(block_run run) const { return ((((off_t)run.allocation_group) << fSuperBlock.ag_shift) | (off_t)run.start); }
67 uint8 *ReadBlockRun(block_run run);
H A DInode.h54 void SetParent(const block_run& run);
55 void SetBlockRun(const block_run& run);
74 static Inode* Factory(Disk* disk, block_run run);
82 virtual Inode *InodeAt(block_run run) = 0;
166 virtual status_t GetNextEntry(char *name, block_run *run);
167 virtual status_t GetNextEntry(block_run *run);
169 virtual status_t Contains(const block_run *run);
171 virtual status_t FindEntry(const char *name, block_run *run);
H A Ddump.h17 extern void dump_block_run(const char* prefix, const block_run& run,
/haiku/src/kits/interface/textview_support/
H A DStyleBuffer.cpp389 STEStyleRun* run = &result->runs[0];
391 *run = (*this)[startIndex + index];
392 run->offset -= startOffset;
393 if (run->offset < 0)
394 run->offset = 0;
396 run++;
461 STEStyleRunDesc* run = fStyleRunDesc[runIndex]; local
464 *outFont = &fStyleRecord[run->index]->style.font;
467 *outColor = &fStyleRecord[run->index]->style.color;
470 *outAscent = fStyleRecord[run
501 STEStyleRun run; local
[all...]
/haiku/src/system/boot/loader/file_systems/bfs/
H A DDirectory.cpp28 Directory::Directory(Volume &volume, block_run run) argument
30 fStream(volume, run),
H A DDirectory.h20 Directory(Volume &volume, block_run run);
H A DFile.cpp13 File::File(Volume &volume, block_run run) argument
15 fStream(volume, run)
H A DFile.h19 File(Volume &volume, block_run run);

Completed in 103 milliseconds

1234