Searched refs:empty (Results 26 - 50 of 131) sorted by relevance

123456

/haiku/headers/cpp/
H A Dstl_queue.h57 bool empty() const { return c.empty(); } function in class:queue
175 bool empty() const { return c.empty(); } function in class:priority_queue
H A Dstl_multiset.h132 bool empty() const { return _M_t.empty(); } function in class:multiset
H A Dstl_set.h126 bool empty() const { return _M_t.empty(); } function in class:set
/haiku/src/system/runtime_loader/
H A Dutility.h43 bool empty() const { return size() == 0; } function in class:utility::vector
/haiku/src/apps/haikudepot/packagemodel/
H A DPackageInfo.cpp310 if (!fCategories.empty()) {
390 return !fLocalFilePath.IsEmpty() && fInstallationLocations.empty();
397 if (!fUserRatings.empty()) {
441 if (fUserRatings.empty())
512 if (!fScreenshotInfos.empty()) {
632 if (fListeners.empty())
/haiku/src/bin/bfs_tools/
H A Drecover.cpp408 Inode *empty = Inode::EmptyInode(&disk, name, 0); local
409 if (empty) {
410 empty->SetBlockRun(run);
411 empty->SetParent(dir->BlockRun());
413 printf("\tname = %s\n", empty->Name());
415 if (!gMissingEmpty.Insert(empty))
416 delete empty;
589 Inode *empty = Inode::EmptyInode(&disk, NULL, local
591 if (empty) {
592 empty
[all...]
/haiku/src/kits/interface/
H A DGridLayout.cpp621 // check for empty columns
622 bool empty = true; local
624 for (int32 row = 0; empty && row < rowCount; row++)
625 empty &= (fGrid[columnCount - 1][row] == NULL);
627 if (!empty)
631 // check for empty rows
632 empty = true;
634 for (int32 column = 0; empty && column < columnCount; column++)
635 empty &= (fGrid[column][rowCount - 1] == NULL);
637 if (!empty)
[all...]
/haiku/src/bin/multiuser/
H A Dmultiuser_utils.cpp180 static char *empty[1]; local
181 environ = empty;
/haiku/src/bin/
H A Dleak_analyser.sh28 --no-exclude-empty
68 --no-exclude-empty)
/haiku/src/kits/package/solver/
H A DSolverPackageSpecifierList.cpp62 return fSpecifiers == NULL || fSpecifiers->empty();
/haiku/src/apps/showimage/
H A DImageCache.cpp163 // empty the working queue
165 while (!fQueue.empty()) {
192 if (self->fQueue.empty()) {
247 if (!queueEntry->listeners.empty()) {
330 if (queueEntry->listeners.empty())
/haiku/src/libs/icon/style/
H A DGradientTransformable.h56 Gradient(bool empty = false);
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DBitmapBlock.h22 off_t block, bool empty = false);
/haiku/src/kits/debugger/target_host_interface/local/
H A DLocalTargetHostInterface.cpp255 buffer, sizeof(buffer), B_TIMEOUT, waitingTeams.empty()
259 else if (size == B_TIMED_OUT && !waitingTeams.empty()) {
269 if (waitingTeams.empty())
/haiku/src/system/libroot/posix/stdlib/
H A Dradixsort.c121 #define empty(s) (s >= sp) macro
140 while (!empty(s)) {
192 while (*cp == 0) /* Find next non-empty pile. */
238 while (!empty(s)) {
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/
H A DIMAPConnectionWorker.cpp182 if (fEntries.empty())
210 return fEntries.empty();
266 if (IsDone() && !fFetchBodies.empty()) {
277 return fUIDs.empty();
463 if (fEntries.empty())
481 return fEntries.empty();
558 return !fMailboxes.empty();
/haiku/src/tests/add-ons/kernel/file_systems/random_file_actions/
H A Drandom_file_actions.cpp529 if (dirs.empty())
584 if (files.empty())
606 if (files.empty())
629 if (files.empty())
650 if (files.empty())
676 if (files.empty())
/haiku/src/bin/debug/strace/
H A DTypeHandler.cpp236 if (!rendered.empty())
242 if (!rendered.empty())
249 if (rendered.empty())
/haiku/src/apps/haikudepot/textview/
H A DParagraph.cpp94 if (!fTextSpans.empty()) {
114 if (!fTextSpans.empty()) {
237 // See if anything from the TextSpan at offset remained, keep it as empty
291 return fTextSpans.empty();
/haiku/src/tools/cppunit/cppunit/
H A DTestRunner.cpp54 * \param testName Name of the test case to run. If an empty is given, then
83 if ( testName.empty() )
H A DTextOutputter.cpp110 if ( !e->additionalMessage().empty() )
H A DTextTestResult.cpp123 if ( !e->additionalMessage().empty() )
/haiku/src/tests/kits/storage/
H A DBasicTest.h140 return (fUntestedNames.empty());
/haiku/src/system/libroot/posix/glibc/stdlib/
H A Dstrtod.c225 the mantissa will be empty after the shift. */
1462 mp_size_t empty = densize - numsize; variable
1468 num[i + empty] = num[i - 1];
1469 MPN_ZERO (num, empty + 1);
1470 exponent -= empty * BITS_PER_MP_LIMB;
1474 if (bits + empty * BITS_PER_MP_LIMB <= MANT_DIG)
1482 assert (empty == 1);
1486 for (i = RETURN_LIMB_SIZE; i > empty; --i)
1487 retval[i] = retval[i - empty];
1493 num[i + empty]
[all...]
/haiku/src/servers/media/
H A DBufferManager.cpp134 if (info->teams.empty()) {
158 if (entry.value.teams.empty()) {

Completed in 208 milliseconds

123456