Searched refs:empty (Results 1 - 25 of 156) sorted by relevance

1234567

/haiku-fatelf/src/bin/coreutils/man/
H A Drmdir.x2 rmdir \- remove empty directories
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/udf/r5/
H A DCachedBlock.h46 CachedBlock(Volume *volume, off_t block, bool empty = false);
52 inline uint8 *SetTo(off_t block, bool empty = false);
53 inline uint8 *SetTo(long_address address, bool empty = false);
56 bool empty = false);
82 CachedBlock::CachedBlock(Volume *volume, off_t block, bool empty = false)
87 SetTo(block, empty);
124 CachedBlock::SetTo(off_t block, bool empty = false)
126 DEBUG_INIT_ETC("CachedBlock", ("block: %Ld, empty: %s",
127 block, (empty ? "true" : "false")));
131 return fBlock = empty
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/ext2/
H A DCachedBlock.h27 off_t block, bool empty = false);
29 bool empty = false);
40 bool empty);
107 CachedBlock::SetToWritable(Transaction& transaction, off_t block, bool empty) argument
109 return _SetToWritableEtc(transaction.ID(), block, empty);
114 CachedBlock::SetToWritableWithoutTransaction(off_t block, bool empty) argument
116 return _SetToWritableEtc((int32)-1, block, empty);
120 CachedBlock::_SetToWritableEtc(int32 transaction, off_t block, bool empty) argument
125 if (empty) {
/haiku-fatelf/src/system/libroot/posix/glibc/include/
H A Dieee754.h140 unsigned int empty:16; member in struct:ieee854_long_double::__anon5470
148 unsigned int empty:16; member in struct:ieee854_long_double::__anon5470
156 unsigned int empty:16; member in struct:ieee854_long_double::__anon5470
167 unsigned int empty:16; member in struct:ieee854_long_double::__anon5471
177 unsigned int empty:16; member in struct:ieee854_long_double::__anon5471
189 unsigned int empty:16; member in struct:ieee854_long_double::__anon5471
/haiku-fatelf/src/apps/icon-o-matic/generic/command/
H A DCommandStack.cpp67 if (!fUndoHistory.empty()) {
91 if (!fRedoHistory.empty()) {
113 if (!fUndoHistory.empty()) {
129 if (!fRedoHistory.empty()) {
144 while (!fUndoHistory.empty()) {
148 while (!fRedoHistory.empty()) {
163 if (!fUndoHistory.empty())
177 saved = fUndoHistory.empty();
196 if (!fUndoHistory.empty()) {
238 // the redo stack needs to be empty
[all...]
/haiku-fatelf/src/apps/mediaplayer/support/
H A DCommandStack.cpp70 if (!fUndoHistory.empty()) {
94 if (!fRedoHistory.empty()) {
116 if (!fUndoHistory.empty()) {
132 if (!fRedoHistory.empty()) {
147 while (!fUndoHistory.empty()) {
151 while (!fRedoHistory.empty()) {
166 if (!fUndoHistory.empty())
180 saved = fUndoHistory.empty();
199 if (!fUndoHistory.empty()) {
241 // the redo stack needs to be empty
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/bfs/
H A DCachedBlock.h38 off_t base, size_t length, bool empty = false);
40 bool empty = false);
42 bool empty = false);
158 size_t length, bool empty)
163 if (empty) {
176 CachedBlock::SetToWritable(Transaction& transaction, off_t block, bool empty) argument
178 return SetToWritable(transaction, block, block, 1, empty);
183 CachedBlock::SetToWritable(Transaction& transaction, block_run run, bool empty) argument
185 return SetToWritable(transaction, fVolume->ToBlock(run), empty);
157 SetToWritable(Transaction& transaction, off_t block, off_t base, size_t length, bool empty) argument
/haiku-fatelf/src/tests/kits/support/bstring/
H A DStringAccessTest.cpp41 //An empty string
43 BString empty; local
44 CPPUNIT_ASSERT(strcmp(empty.String(), "") == 0);
45 CPPUNIT_ASSERT(empty.Length() == 0);
46 CPPUNIT_ASSERT(empty.CountChars() == 0);
/haiku-fatelf/src/apps/cortex/support/
H A DMediaString.cpp231 bool empty = true; local
235 s << (empty ? "" : ", ") << forAudioFrameRate(format.frame_rate);
236 empty = false;
241 s << (empty ? "" : ", ") << forAudioFormat(format.format, format.valid_bits);
242 empty = false;
247 s << (empty ? "" : ", ") << forAudioChannelCount(format.channel_count);
248 empty = false;
254 s << (empty ? "" : " ") << "(" << forAudioChannelMask(format.channel_mask) << ")";
255 empty = false;
260 s << (empty
286 bool empty = true; local
341 bool empty = true; local
363 bool empty = true; local
399 bool empty = true; local
[all...]
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/functional/semaphores/
H A Dsem_conpro.c33 sem_t empty; member in struct:__anon6002
61 if (-1 == sem_post(&buf->empty)) {
74 if (-1 == sem_wait(&buf->empty)) {
116 if (-1 == sem_init(&buf->empty, shared, empty_value)) {
131 sem_destroy(&buf->empty);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/bfs/r5/
H A DStream.h27 Uncached(Volume *volume, off_t block, bool empty = false);
28 Uncached(Volume *volume, block_run run, bool empty = false);
32 uint8 *SetTo(off_t block, bool empty = false);
33 uint8 *SetTo(block_run run, bool empty = false);
53 Cached(Volume *volume, off_t block, bool empty = false);
54 Cached(Volume *volume, block_run run, bool empty = false);
64 Logged(Volume *volume,off_t block, bool empty = false);
65 Logged(Volume *volume, block_run run, bool empty = false);
80 Uncached::Uncached(Volume *volume,off_t block, bool empty) argument
85 SetTo(block,empty);
89 Uncached(Volume *volume,block_run run,bool empty) argument
113 SetTo(off_t block, bool empty) argument
130 SetTo(block_run run, bool empty) argument
169 Cached(Volume *volume,off_t block,bool empty) argument
175 Cached(Volume *volume,block_run run,bool empty) argument
214 Logged(Volume *volume, off_t block, bool empty) argument
220 Logged(Volume *volume, block_run run, bool empty) argument
[all...]
H A DInode.h52 CachedBlock(Volume *volume, off_t block, bool empty = false);
53 CachedBlock(Volume *volume, block_run run, bool empty = false);
59 inline uint8 *SetTo(off_t block, bool empty = false);
60 inline uint8 *SetTo(block_run run, bool empty = false);
83 Inode(Volume *volume, vnode_id id, bool empty = false, uint8 reenter = 0);
306 CachedBlock::CachedBlock(Volume *volume, off_t block, bool empty) argument
311 SetTo(block, empty);
316 CachedBlock::CachedBlock(Volume *volume, block_run run, bool empty) argument
321 SetTo(volume->ToBlock(run), empty);
359 CachedBlock::SetTo(off_t block, bool empty) argument
369 SetTo(block_run run, bool empty) argument
[all...]
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/stress/semaphores/
H A Dmulti_con_pro.c33 sem_t empty; member in struct:__anon6004
70 if (-1 == sem_post(&buf->empty)) {
96 if (-1 == sem_post(&buf->empty)) {
112 if (-1 == sem_wait(&buf->empty)) {
179 if (-1 == sem_init(&buf->empty, shared, empty_value)) {
203 sem_destroy(&buf->empty);
/haiku-fatelf/src/tools/cppunit/cppunit/
H A DSourceLine.cpp31 return !m_fileName.empty();
/haiku-fatelf/src/libs/ncurses/menu/
H A Dm_pattern.c56 static char empty[] = ""; local
59 returnPtr(menu ? (menu->pattern ? menu->pattern : empty) : 0);
/haiku-fatelf/src/system/libroot/posix/glibc/include/arch/arm/
H A Dmath_ldbl.h16 unsigned int empty:16; member in struct:__anon5417::__anon5418
34 unsigned int empty:16; member in struct:__anon5419::__anon5420
/haiku-fatelf/src/system/libroot/posix/glibc/include/arch/x86/
H A Dmath_ldbl.h16 unsigned int empty:16; member in struct:__anon5449::__anon5450
34 unsigned int empty:16; member in struct:__anon5451::__anon5452
/haiku-fatelf/src/kits/media/
H A DChunkCache.cpp49 while (!fChunkCache.empty()) {
79 if (fChunkCache.empty()) {
80 TRACE("ChunkCache is empty, going direct to reader\n");
118 if (fUnusedChunks.empty()) {
122 ERROR("RTM Pool empty allocating chunk buffer structure");
147 ERROR("RTM Pool empty allocating chunk buffer\n");
/haiku-fatelf/data/common/boot/post_install/
H A Dmime_update.sh42 query -f 'BEOS:APP_SIG=*' | xargs --no-run-if-empty mimeset -apps -f
/haiku-fatelf/headers/private/kernel/slab/
H A DObjectDepot.h20 DepotMagazine* empty; member in struct:object_depot
/haiku-fatelf/src/apps/mediaplayer/supplier/
H A DMediaFileTrackSupplier.cpp53 if (fMediaFiles.empty())
63 if (fMediaFiles.empty())
73 if (fMediaFiles.empty())
84 if (fMediaFiles.empty())
/haiku-fatelf/src/bin/makeudfimage/
H A DPhysicalPartitionAllocator.cpp103 extents.empty();
104 physicalExtents.empty();
/haiku-fatelf/src/system/kernel/slab/
H A DObjectDepot.cpp147 _push(depot->empty, magazine);
161 if (depot->empty == NULL)
175 magazine = _pop(depot->empty);
185 _push(depot->empty, magazine);
206 depot->empty = NULL;
257 // if it's not empty, or from the previous magazine if it's full
286 // and it's not full, or to the previous one if it is empty. If
287 // the magazine depot doesn't provide us with a new empty magazine
312 // allocate a new empty magazine
356 // detach the depot's full and empty magazine
[all...]
/haiku-fatelf/src/bin/bfs_tools/
H A Drecover.cpp401 Inode *empty = Inode::EmptyInode(&disk, name, 0); local
402 if (empty) {
403 empty->SetBlockRun(run);
404 empty->SetParent(dir->BlockRun());
406 printf("\tname = %s\n", empty->Name());
408 if (!gMissingEmpty.Insert(empty))
409 delete empty;
566 Inode *empty = Inode::EmptyInode(&disk, NULL, local
568 if (empty) {
569 empty
[all...]
/haiku-fatelf/src/documentation/docbook-xsl/extensions/saxon643/com/nwalsh/saxon/
H A DUnwrapLinksEmitter.java106 while (!elementStack.empty()) {
113 while (!tempStack.empty()) {
149 while (!saveStack.empty()) {

Completed in 469 milliseconds

1234567