Searched defs:False (Results 1 - 25 of 91) sorted by relevance

1234

/external/libcxx/test/std/experimental/utilities/meta/meta.logical/
H A Dconjunction.pass.cpp23 struct False { static constexpr bool value = false; }; struct
64 static_assert (!ex::conjunction<False>::value, "" );
67 static_assert (!ex::conjunction_v<False>, "" );
H A Ddisjunction.pass.cpp23 struct False { static constexpr bool value = false; }; struct
64 static_assert (!ex::disjunction<False>::value, "" );
67 static_assert (!ex::disjunction_v<False>, "" );
H A Dnegation.pass.cpp23 struct False { static constexpr bool value = false; }; struct
34 static_assert ( ex::negation<False>::value, "" );
37 static_assert ( ex::negation_v<False>, "" );
/external/libcxx/test/std/utilities/meta/meta.logical/
H A Dconjunction.pass.cpp21 struct False { static constexpr bool value = false; }; struct
62 static_assert (!std::conjunction<False>::value, "" );
65 static_assert (!std::conjunction_v<False>, "" );
H A Ddisjunction.pass.cpp21 struct False { static constexpr bool value = false; }; struct
62 static_assert (!std::disjunction<False>::value, "" );
65 static_assert (!std::disjunction_v<False>, "" );
H A Dnegation.pass.cpp21 struct False { static constexpr bool value = false; }; struct
32 static_assert ( std::negation<False>::value, "" );
35 static_assert ( std::negation_v<False>, "" );
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DDebugEventListenerConstants.cs43 public const int False = 0; field in class:Antlr.Runtime.Debug.DebugEventListenerConstants
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DDebugEventListenerConstants.cs43 public const int False = 0; field in class:Antlr.Runtime.Debug.DebugEventListenerConstants
/external/valgrind/tests/
H A Darch_test.c21 #define False 0 macro
87 return False;
H A Dos_test.c19 #define False 0 macro
39 if (fp == NULL || fscanf(fp, "%d.%d.%d", &a1, &a2, &a3) != 3) return False;
43 if (sscanf(min_version, "%d.%d.%d", &g1, &g2, &g3) != 3) return False;
49 if (a1 < g1) return False;
51 if (a2 < g2) return False;
54 return False;
73 return False;
H A Dx86_amd64_features.c22 #define False 0 macro
64 return False;
67 return False;
74 Bool require_amd = False;
75 Bool require_xgetbv = False;
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
H A DLazyValueInfo.h41 Unknown = -1, False = 0, True = 1 enumerator in enum:llvm::LazyValueInfo::Tristate
/external/swiftshader/third_party/LLVM/unittests/VMCore/
H A DVerifierTest.cpp36 Constant *False = ConstantInt::getFalse(C); local
37 BranchInst *BI = BranchInst::Create(Exit, Exit, False, Entry);
/external/llvm/include/llvm/Analysis/
H A DLazyValueInfo.h62 Unknown = -1, False = 0, True = 1 enumerator in enum:llvm::LazyValueInfo::Tristate
/external/llvm/unittests/IR/
H A DVerifierTest.cpp38 Constant *False = ConstantInt::getFalse(C); local
39 BranchInst *BI = BranchInst::Create(Exit, Exit, False, Entry);
/external/valgrind/none/tests/amd64/
H A Dpcmpxstrx64.c15 #define False ((Bool)0) macro
H A Dpcmpxstrx64w.c16 #define False ((Bool)0) macro
H A Daes.c11 #define False ((Bool)0) macro
/external/valgrind/none/tests/arm64/
H A Dmemory.c21 #define False ((Bool)0) macro
/external/clang/test/SemaTemplate/
H A Dcurrent-instantiation.cpp174 struct False : public Bool<false> {}; struct in namespace:Expressions
177 struct Is_Same : public False {};
/external/protobuf/csharp/src/Google.Protobuf/
H A DJsonToken.cs41 private static readonly JsonToken _false = new JsonToken(TokenType.False);
50 internal static JsonToken False { get { return _false; } } property in class:Google.Protobuf.JsonToken
76 False, enumerator in enum:Google.Protobuf.JsonToken.TokenType
133 case TokenType.False:
/external/valgrind/VEX/pub/
H A Dlibvex_basictypes.h101 #define False ((Bool)0) macro
107 Int r = (x == 0) ? False : True;
/external/clang/lib/AST/
H A DExprClassification.cpp551 const Expr *False) {
558 if (True->getType()->isVoidType() || False->getType()->isVoidType()) {
563 bool FalseIsThrow = isa<CXXThrowExpr>(False->IgnoreParenImpCasts());
564 if (const Expr *NonThrow = TrueIsThrow ? (FalseIsThrow ? nullptr : False)
578 RCl = ClassifyInternal(Ctx, False);
550 ClassifyConditional(ASTContext &Ctx, const Expr *True, const Expr *False) argument
/external/mesa3d/src/gallium/drivers/radeon/
H A DR600ISelLowering.cpp395 SDValue False = Op.getOperand(3); local
405 // False. True and False are guaranteed to have the same type as this
428 // If True is a hardware TRUE value and False is a hardware FALSE value or
430 if ((isHWTrueValue(True) && isHWFalseValue(False))) {
431 return DAG.getNode(ISD::SELECT_CC, DL, VT, LHS, RHS, True, False, CC);
434 // XXX If True is a hardware TRUE value and False is a hardware FALSE value,
437 if (isHWTrueValue(False) && isHWFalseValue(True)) {
459 True = False;
460 False
[all...]
H A DSIISelLowering.cpp379 SDValue False = Op.getOperand(3); local
385 return DAG.getNode(ISD::SELECT, DL, VT, Cond, True, False);
402 ConstantSDNode *True, *False; local
405 && (False = dyn_cast<ConstantSDNode>(N->getOperand(3)))
407 && False->isNullValue()

Completed in 6257 milliseconds

1234