HomeSort by: relevance | last modified time | path
    Searched refs:conditional (Results 1 - 25 of 221) sorted by relevancy

1 2 3 4 5 6 7 8 9

  /src/usr.bin/make/unit-tests/
cond-eof.exp 1 make: cond-eof.mk:17: Malformed conditional "0 ${SIDE_EFFECT} ${SIDE_EFFECT2}"
2 make: cond-eof.mk:20: Malformed conditional "1 ${SIDE_EFFECT} ${SIDE_EFFECT2}"
3 make: cond-eof.mk:23: Malformed conditional "(0) ${SIDE_EFFECT} ${SIDE_EFFECT2}"
cond-cmp-numeric-eq.exp 1 make: cond-cmp-numeric-eq.mk:68: Malformed conditional "!(12345 = 12345)"
2 make: cond-cmp-numeric-eq.mk:76: Malformed conditional "!(12345 === 12345)"
cond-token-number.exp 1 make: cond-token-number.mk:16: Malformed conditional "-0"
2 make: cond-token-number.mk:27: Malformed conditional "+0"
3 make: cond-token-number.mk:38: Malformed conditional "!-1"
4 make: cond-token-number.mk:49: Malformed conditional "!+1"
cond-op-parentheses.exp 2 make: cond-op-parentheses.mk:25: Malformed conditional "(3) > 2"
3 make: cond-op-parentheses.mk:44: Malformed conditional "("
4 make: cond-op-parentheses.mk:58: Malformed conditional ")"
cond-cmp-string.exp 1 make: cond-cmp-string.mk:19: Malformed conditional "str != str"
2 make: cond-cmp-string.mk:44: Malformed conditional ""string" != "str""ing""
3 make: cond-cmp-string.mk:52: Malformed conditional "!("value" = "value")"
4 make: cond-cmp-string.mk:60: Malformed conditional "!("value" === "value")"
cond-op.exp 1 make: cond-op.mk:51: Malformed conditional ""!word" == !word"
2 make: cond-op.mk:72: Malformed conditional "0 ${ERR::=evaluated}"
4 make: cond-op.mk:82: Malformed conditional "1 ${ERR::=evaluated}"
15 make: cond-op.mk:120: Malformed conditional "1 &&"
16 make: cond-op.mk:129: Malformed conditional "0 &&"
17 make: cond-op.mk:138: Malformed conditional "1 ||"
18 make: cond-op.mk:148: Malformed conditional "0 ||"
cond-eof.mk 16 # expect+1: Malformed conditional "0 ${SIDE_EFFECT} ${SIDE_EFFECT2}"
19 # expect+1: Malformed conditional "1 ${SIDE_EFFECT} ${SIDE_EFFECT2}"
22 # expect+1: Malformed conditional "(0) ${SIDE_EFFECT} ${SIDE_EFFECT2}"
directive-if.exp 4 make: directive-if.mk:45: This is not conditional.
6 make: directive-if.mk:49: This is not conditional.
8 make: directive-if.mk:55: Malformed conditional ""
cond-op-not.exp 6 make: cond-op-not.mk:65: Malformed conditional "!"
cond-token-number.mk 15 # expect+1: Malformed conditional "-0"
26 # expect+1: Malformed conditional "+0"
37 # expect+1: Malformed conditional "!-1"
48 # expect+1: Malformed conditional "!+1"
cond-token-var.exp 9 make: cond-token-var.mk:106: Malformed conditional "x${UNDEF1}y == "${UNDEF2}" || 0x${UNDEF3}"
11 make: cond-token-var.mk:111: Malformed conditional "x${DEF}y == "${UNDEF2}" || 0x${UNDEF3}"
13 make: cond-token-var.mk:116: Malformed conditional "x${DEF}y == "${DEF}" || 0x${UNDEF3}"
cond-op.mk 50 # expect+1: Malformed conditional ""!word" == !word"
71 # expect+1: Malformed conditional "0 ${ERR::=evaluated}"
81 # expect+1: Malformed conditional "1 ${ERR::=evaluated}"
119 # expect+1: Malformed conditional "1 &&"
128 # expect+1: Malformed conditional "0 &&"
137 # expect+1: Malformed conditional "1 ||"
147 # expect+1: Malformed conditional "0 ||"
cond-cmp-numeric.exp 8 make: cond-cmp-numeric.mk:38: Malformed conditional "123 ! 123"
cond-cmp-numeric-eq.mk 67 # expect+1: Malformed conditional "!(12345 = 12345)"
75 # expect+1: Malformed conditional "!(12345 === 12345)"
  /src/usr.bin/tset/
map.c 63 int conditional; /* Baud rate conditionals bitmask. */ member in struct:map
93 mapp->conditional = 0;
111 if (mapp->conditional & GT)
113 mapp->conditional |= LT;
116 if (mapp->conditional & LT)
118 mapp->conditional |= GT;
122 mapp->conditional |= EQ;
125 mapp->conditional |= NOT;
132 if (mapp->conditional)
152 /* If a NOT conditional, reverse the test. *
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_type_traits.h 41 // conditional<B, T, F>
47 // is_same<int, conditional<true, int, double>::type>::value
48 // is_same<double, conditional<false, int, double>::type>::value
51 struct conditional { struct in namespace:__sanitizer
56 struct conditional<false, T, F> { struct in namespace:__sanitizer
  /src/usr.sbin/zdump/
Makefile 17 CWARNFLAGS.clang+= -Wno-error=bitwise-conditional-parentheses
  /src/crypto/external/bsd/openssl/dist/util/
mk-fipsmodule-cnf.pl 41 conditional-errors = $conditional_errors
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
STLForwardCompat.h 37 : std::conditional<bool(B1::value), conjunction<Bn...>, B1>::type {};
45 : std::conditional<bool(B1::value), B1, disjunction<Bn...>>::type {};
  /src/usr.bin/config/
scan.l 112 uint64_t in_ifdefstate; /* conditional level */
113 int in_ifdefshift; /* conditional level */
198 yyerror("too many levels of conditional");
215 yyerror("too many levels of conditional");
510 include(const char *fname, int ateof, int conditional, int direct)
531 if (conditional == 0)
535 cfgwarn("cannot open conditional include file %s: %s",
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_type_traits.h 43 // conditional<B, T, F>
49 // is_same<int, conditional<true, int, double>::type>::value
50 // is_same<double, conditional<false, int, double>::type>::value
53 struct conditional { struct in namespace:__sanitizer
58 struct conditional<false, T, F> { struct in namespace:__sanitizer
  /src/external/lgpl3/gmp/dist/
asl.h 60 typedef std::conditional<(GMP_NUMB_MASK <= 0xffff), uint16_t, uint32_t >::type type24;
61 typedef std::conditional<(GMP_NUMB_MASK <= 0xff), uint8_t, type24>::type mtype;
  /src/tests/usr.bin/indent/
lsym_binary_op.c 174 * The ternary conditional operator is not a binary operator, but both its
178 int conditional = condition ? number : number; variable
  /src/external/gpl3/gdb/dist/sim/testsuite/sh/
movli.s 17 # Move linked/conditional, x to y
  /src/external/gpl3/gdb.old/dist/gnulib/
update-gnulib.sh 172 --no-conditional-dependencies --no-libtool --macro-prefix=gl \

Completed in 29 milliseconds

1 2 3 4 5 6 7 8 9