Searched refs:empty (Results 226 - 250 of 3548) sorted by relevance

1234567891011>>

/freebsd-current/contrib/netbsd-tests/sys/rc/
H A Dt_rc_d_cli.sh39 atf_check -s eq:1 -o empty -e ignore ${rc_helper}
51 atf_check -s eq:0 -o ignore -e empty ${rc_helper} start
81 atf_check -s eq:0 -o ignore -e empty ${rc_helper} stop
112 atf_check -s eq:0 -o ignore -e empty ${rc_helper} restart
141 atf_check -s eq:0 -o file:expout -e empty ${rc_helper} ${command}
155 atf_check -s eq:0 -o file:expout -e empty ${rc_helper} ${command} \
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ADT/
H A DPriorityWorklist.h63 /// Construct an empty PriorityWorklist
66 /// Determine if the PriorityWorklist is empty or not.
67 bool empty() const { function in class:llvm::PriorityWorklist
68 return V.empty();
84 assert(!empty() && "Cannot call back() on empty PriorityWorklist!");
115 // Nothing to do for an empty input sequence.
145 assert(!empty() && "Cannot remove an element when empty!");
150 } while (!V.empty()
[all...]
H A DCombinationGenerator.h64 assert(!Range.empty() && "The range must not be empty.");
120 assert(!VariablesChoices.empty() && "There should be some variables.");
122 assert(!VariableChoices.empty() &&
/freebsd-current/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandReturnObject.cpp31 if (!s.empty()) {
32 // We already checked for empty above, now make sure there is a newline in
58 if (!s.empty()) {
89 if (in_string.empty())
95 if (in_string.empty())
102 if (in_string.empty())
126 assert(!in_string.empty() && "Expected a non-empty error message");
/freebsd-current/contrib/bmake/mk/
H A Dprog.mk12 .if defined(MAN) && !empty(MAN)
94 .if empty(SRCS)
96 # SRCS will be defined - even if empty.
105 .if !empty(OBJS_SRCS)
110 .if defined(OBJS) && !empty(OBJS)
146 .endif # defined(OBJS) && !empty(OBJS)
186 .if !empty(BINOWN)
211 .if !empty(SYMLINKS)
214 .if !empty(LINKS)
227 .if defined(LOBJS) && !empty(LOBJ
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGVLIW.cpp170 if (SU.Preds.empty()) {
176 // While AvailableQueue is not empty, grab the node with the highest
180 while (!AvailableQueue->empty() || !PendingQueue.empty()) {
198 if (AvailableQueue->empty()) {
208 while (!AvailableQueue->empty()) {
225 if (!NotReady.empty()) {
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveIntervalUnion.cpp30 if (Range.empty())
58 if (Range.empty())
84 if (empty()) {
85 OS << " empty\n";
104 if (empty())
139 // Quickly skip interference check for empty sets.
140 if (LR->empty() || LiveUnion->empty()) {
H A DParallelCG.cpp43 assert(BCOSs.empty() || BCOSs.size() == OSs.size());
46 if (!BCOSs.empty())
71 if (!BCOSs.empty()) {
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DMetaRenamer.cpp104 if (PrefixesSplit.first.empty())
113 if (!I.getType()->isVoidTy() && I.getName().empty())
162 return Name.starts_with("llvm.") || (!Name.empty() && Name[0] == 1) ||
180 if (Name.starts_with("llvm.") || (!Name.empty() && Name[0] == 1) ||
190 if (Name.starts_with("llvm.") || (!Name.empty() && Name[0] == 1) ||
202 if (STy->isLiteral() || Name.empty() ||
/freebsd-current/contrib/llvm-project/llvm/utils/TableGen/
H A DSubtargetFeatureInfo.cpp36 if (Pred->getName().empty())
40 if (Pred->getValueAsString("CondString").empty())
108 if (!ExtraParams.empty())
115 assert(!CondStr.empty() && "true predicate should have been filtered");
172 if (!ClassName.empty())
175 if (!ClassName.empty())
/freebsd-current/sys/conf/
H A DMakefile.arm6432 .if !empty(PERTHREAD_SSP_ENABLED)
59 .if !empty(DDB_ENABLED) || !empty(DTRACE_ENABLED) || !empty(HWPMC_ENABLED)
/freebsd-current/contrib/kyua/cli/
H A Dcmd_list_test.cpp60 ATF_REQUIRE(ui.err_log().empty());
76 ATF_REQUIRE(ui.err_log().empty());
101 ATF_REQUIRE(ui.err_log().empty());
/freebsd-current/contrib/atf/atf-sh/
H A Datf-check_test.sh162 atf_set "descr" "Tests for the -o option using the 'empty' argument"
166 h_pass "true" -o empty
167 h_fail "echo foo" -o empty
188 touch empty
189 h_pass "true" -o file:empty
263 h_fail "echo foo" -o empty
264 h_pass "echo foo" -o not-empty
273 atf_set "descr" "Tests for the -e option using the 'empty' argument"
277 h_pass "true 1>&2" -e empty
278 h_fail "echo foo 1>&2" -e empty
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLostDebugLocObserver.cpp20 if (LostDebugLocs.empty()) {
24 if (PotentialMIsForDebugLocs.empty()) {
49 if (LostDebugLocs.empty())
/freebsd-current/contrib/lutok/
H A Dstack_cleaner_test.cpp34 ATF_TEST_CASE_WITHOUT_HEAD(empty); variable
35 ATF_TEST_CASE_BODY(empty)
104 ATF_ADD_TEST_CASE(tcs, empty);
/freebsd-current/crypto/openssl/crypto/evp/
H A Dpbe_scrypt.c43 const char *empty = ""; local
56 pass = empty;
60 salt = (const unsigned char *)empty;
/freebsd-current/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointID.cpp71 if (input.empty())
85 if (!input.empty())
93 if (str.empty())
/freebsd-current/contrib/llvm-project/lldb/source/Utility/
H A DUriParser.cpp50 if (!host_port.empty() && host_port[0] == '[') {
58 if (!host_port.empty() && !host_port.consume_front(":"))
65 if (!host_port.empty()) {
H A DTildeExpressionResolver.cpp37 assert(Expr.empty() || Expr[0] == '~');
47 assert(Expr.empty() || Expr[0] == '~');
53 if (Expr.empty())
/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DTargetSelect.cpp44 if (TheTriple.getTriple().empty())
49 if (!MArch.empty()) {
79 if (!MAttrs.empty()) {
/freebsd-current/contrib/llvm-project/llvm/lib/IRPrinter/
H A DIRPrintingPasses.cpp41 if (!Banner.empty())
48 if (!BannerPrinted && !Banner.empty()) {
61 if (Index->modulePaths().empty())
/freebsd-current/contrib/bmake/unit-tests/
H A Ddeptgt.mk32 # In a dependency declaration, the list of targets can be empty.
33 # It doesn't matter whether the empty string is generated by an
36 ${:U}: empty-source
37 : command for empty targets list
38 : empty-source
39 : command for empty targets list
/freebsd-current/contrib/llvm-project/clang/include/clang/Sema/
H A DCXXFieldCollector.h62 assert(!FieldCount.empty() && "no currently-parsed class");
/freebsd-current/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesTypes.cpp21 if (!SwiftName.empty())
52 if (!Type.empty())
76 if (!ResultType.empty())
78 if (!Params.empty())
/freebsd-current/contrib/llvm-project/clang/include/clang/AST/
H A DAvailability.h57 bool isOtherPlatformSpec() const { return Version.empty(); }

Completed in 502 milliseconds

1234567891011>>