Home
last modified time | relevance | path

Searched refs:unless (Results 1 – 25 of 465) sorted by relevance

12345678910>>...19

/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ustack/
HDtst.spin.ksh99 die "output problem\n" unless /^TOTAL (\d+)/;
101 die "too few samples (\$count)\n" unless \$count >= 1000;
108 die "expected START at \$.\n" unless /^START/;
113 die "expected END at \$.\n" unless /\`baz\+/;
117 die "expected END at \$.\n" unless /\`bar\+/;
121 die "expected END at \$.\n" unless /\`foo\+/;
125 die "expected END at \$.\n" unless /\`main\+/;
129 die "expected END at \$.\n" unless /^END\$/;
HDtst.depth.ksh78 die "expected START at \$.\n" unless /^START/;
82 die "expected depth (\$_) at \$.\n" unless /^(\d+)\$/;
93 die "expected END at \$.\n" unless /^END\$/;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Analysis/
HDExprMutationAnalyzer.cpp165 referenceType(pointee(unless(isConstQualified())))); in __anon9267f75c0902()
170 pointerType(pointee(unless(isConstQualified())))); in __anon9267f75c0a02()
175 hasMethod(cxxConstructorDecl(isMoveConstructor(), unless(isDeleted()))), in __anon9267f75c0b02()
176 hasMethod(cxxMethodDecl(isMoveAssignmentOperator(), unless(isDeleted()))), in __anon9267f75c0b02()
177 unless(anyOf(hasMethod(cxxConstructorDecl(isCopyConstructor(), in __anon9267f75c0b02()
178 unless(isDeleted()))), in __anon9267f75c0b02()
180 unless(isDeleted())))))); in __anon9267f75c0b02()
284 hasAncestor(typeLoc(unless( in isUnevaluated()
289 unaryExprOrTypeTraitExpr(unless(sizeOfExpr( in isUnevaluated()
295 unless(isPotentiallyEvaluated())), in isUnevaluated()
[all …]
/freebsd-13-stable/contrib/ntp/scripts/monitoring/
HDntptrap139 unless (defined($name))
148 unless (defined($name))
174 &usage unless (@Requests);
205 last unless (defined($ret)); # warn called by ntp'send();
253 warn("$0: recv: $!\n"), last unless (defined($from));
263 next unless defined($ret);
269 &clear_timeout("retry-".unpack("H*",pack("a4SC",$from,$associd,$op))) unless $op == 7;
270 delete $RETRY{pack("a4SC",$from,$associd,$op)} unless $op == 7;
/freebsd-13-stable/contrib/sendmail/contrib/
HDmailprio27 # Existing files will *not* be overwritten unless `-c' is specified.
160 X unless (defined $canon) {
196 X print $sink '# ----- prioritized users', "\n" unless $qflag;
199 X unless defined $useracct{$to};
208 X print $sink '# ----- unprioritized users', "\n" unless $qflag;
250 eval 'sub ENOENT {2;}' unless defined &ENOENT;
251 eval 'sub EINTR {4;}' unless defined &EINTR;
252 eval 'sub EINVAL {22;}' unless defined &EINVAL;
258 eval 'sub SEEK_SET {0;}' unless defined &SEEK_SET;
261 eval 'sub LOCK_SH {0x01;}' unless defined &LOCK_SH;
[all …]
/freebsd-13-stable/contrib/ntp/scripts/
HDsummary.in29 exit run(@ARGV) unless caller;
51 die "$statsdir: no such directory" unless (-d $statsdir);
52 die "$outputdir: no such directory" unless (-d $outputdir);
54 unless ($skip_time_steps >= 0.0);
56 unless ($startdate =~ m/.*$log_date_pattern$/);
58 unless ($enddate =~ m/.*$log_date_pattern$/);
HDplot_summary.in31 exit run(@ARGV) unless caller;
51 die "illegal offset-limit: $offset_limit" unless $offset_limit > 0.0;
124 $first_day = "$1-$2-$3 ($line)" unless $day_out;
266 $first_day = "$1-$2-$3 ($line)" unless $day_out;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/Models/
HDUncheckedOptionalAccessModel.cpp182 return cxxMemberCallExpr(Ignorable ? on(expr(unless(*Ignorable))) in isOptionalMemberCallWithNameMatcher()
194 Ignorable ? callExpr(unless(hasArgument(0, *Ignorable))) : callExpr()); in isOptionalOperatorCallWithName()
230 unless(hasDeclaration( in isOptionalValueOrConversionConstructor()
232 argumentCountIs(1), hasArgument(0, unless(hasNulloptType())), in isOptionalValueOrConversionConstructor()
240 unless(hasDeclaration(cxxMethodDecl( in isOptionalValueOrConversionAssignment()
242 argumentCountIs(2), hasArgument(1, unless(hasNulloptType()))); in isOptionalValueOrConversionAssignment()
272 cxxMemberCallExpr(on(expr(unless(cxxThisExpr()))), in isValueOrStringEmptyCall()
283 cxxMemberCallExpr(on(expr(unless(cxxThisExpr()))), in isValueOrNotEqX()
696 unless(hasArgument(0, expr(hasOptionalType())))))); in ignorableOptional()
847 unless(anyOf(hasOptionalType(), hasNulloptType()))), in buildTransferMatchSwitch()
[all …]
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
HDNumberObjectConversionChecker.cpp255 unless(elaboratedType(namesType(typedefType(hasDeclaration( in checkASTCodeBody()
274 unless(hasConditionVariableStatement(declStmt()) in checkASTCodeBody()
302 unless(hasTrueExpression( in checkASTCodeBody()
304 unless(hasFalseExpression( in checkASTCodeBody()
HDRunLoopAutoreleaseLeakChecker.cpp148 return objcMessageExpr(unless(anyOf(equalsBoundNode(RunLoopBind), in getOtherMessageSentM()
177 auto NoPoolM = unless(hasAncestor(autoreleasePoolStmt())); in checkTempObjectsInNoPool()
/freebsd-13-stable/crypto/openssl/apps/
HDtsget.in105 $error_string .= ", http code: $http_code" unless $http_code == 0;
150 @ARGV = ("-") unless @ARGV != 0;
151 $options{e} = ".tsr" unless defined($options{e});
HDCA.pl.in148 $FILE = "" unless defined($FILE = <STDIN>);
167 $cname = "My Certificate" unless defined $cname;
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/
HDtst.ipv4localsctp.ksh74 die "Could not connect to host $local port \$ARGV[0] \$@" unless \$s;
97 die "Could not listen on $local port $sctpport \$@" unless \$l;
HDtst.localsctpstate.ksh77 die "Could not connect to host $local port \$ARGV[0] \$@" unless \$s;
100 die "Could not listen on $local port $sctpport \$@" unless \$l;
/freebsd-13-stable/tools/build/options/
HDWITH_META_MODE12 module is required unless
40 The build hides commands that are executed unless
HDWITHOUT_LLD_IS_LD5 The system will not have a usable tool chain unless a linker is provided
HDWITHOUT_CLANG_BOOTSTRAP4 enabled unless an alternate compiler is provided via XCC.
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
HDMatchSwitch.h144 using ast_matchers::unless; in BuildMatcher()
147 return stmt(unless(anything())); in BuildMatcher()
/freebsd-13-stable/crypto/openssh/regress/misc/fuzz-harness/testdata/
HDREADME3 fuzzing seed corpora. They should not be changed unless the affected seed
/freebsd-13-stable/crypto/openssl/doc/man3/
HDPKCS7_verify.pod28 The content is written to the BIO I<out> unless it is NULL.
50 certificates contained in the I<p7> structure unless B<PKCS7_NOINTERN> is set.
56 L<PKCS7_add_certificate(3)>, are used as untrusted CAs unless B<PKCS7_NOCHAIN>
63 Finally the signed content is read (and written to I<out> unless it is NULL)
HDERR_get_error.pod49 the error occurred in *B<file> and *B<line>, unless these are B<NULL>.
54 and *B<flags>, unless these are B<NULL>. *B<data> contains a string
/freebsd-13-stable/sbin/pfctl/tests/files/
HDpf0016.in1 # Test rule order processing: should fail unless nat -> filter
/freebsd-13-stable/contrib/tcsh/
HDtcsh.man2html129 unless ($infile eq 'STDIN') {
130 die "$whatami: $infile doesn't exist!\n" unless -e $infile;
131 die "$whatami: $infile is unreadable!\n" unless -r _;
132 die "$whatami: $infile is empty!\n" unless -s _;
224 $file .= ".$html" unless $single;
360 select TOP unless $single;
525 unless ($comment) {
570 print "<DL compact>\n" unless $dl;
701 unless ($bold) {
710 unless ($italic) {
/freebsd-13-stable/contrib/ntp/scripts/calc_tickadj/
HDcalc_tickadj.in10 exit run(@ARGV) unless caller;
/freebsd-13-stable/usr.sbin/bsdconfig/share/packages/
HDmusthavepkg.subr41 # Returns success unless pkg(8) is not installed and user refuses to install
69 # pkg(8) not yet bootstrapped; ask for permission unless nonInteractive

12345678910>>...19