HomeSort by relevance Sort by last modified time
    Searched defs:False (Results 1 - 25 of 95) sorted by null

1 2 3 4

  /external/libcxx/test/std/experimental/utilities/meta/meta.logical/
conjunction.pass.cpp 23 struct False { static constexpr bool value = false; };
64 static_assert (!ex::conjunction<False>::value, "" );
67 static_assert (!ex::conjunction_v<False>, "" );
disjunction.pass.cpp 23 struct False { static constexpr bool value = false; };
64 static_assert (!ex::disjunction<False>::value, "" );
67 static_assert (!ex::disjunction_v<False>, "" );
negation.pass.cpp 23 struct False { static constexpr bool value = false; };
34 static_assert ( ex::negation<False>::value, "" );
37 static_assert ( ex::negation_v<False>, "" );
  /external/libcxx/test/std/utilities/meta/meta.logical/
conjunction.pass.cpp 21 struct False { static constexpr bool value = false; };
62 static_assert (!std::conjunction<False>::value, "" );
65 static_assert (!std::conjunction_v<False>, "" );
disjunction.pass.cpp 21 struct False { static constexpr bool value = false; };
62 static_assert (!std::disjunction<False>::value, "" );
65 static_assert (!std::disjunction_v<False>, "" );
negation.pass.cpp 21 struct False { static constexpr bool value = false; };
32 static_assert ( std::negation<False>::value, "" );
35 static_assert ( std::negation_v<False>, "" );
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/meta/meta.logical/
conjunction.pass.cpp 21 struct False { static constexpr bool value = false; };
62 static_assert (!std::conjunction<False>::value, "" );
65 static_assert (!std::conjunction_v<False>, "" );
disjunction.pass.cpp 21 struct False { static constexpr bool value = false; };
62 static_assert (!std::disjunction<False>::value, "" );
65 static_assert (!std::disjunction_v<False>, "" );
negation.pass.cpp 21 struct False { static constexpr bool value = false; };
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/
DebugEventListenerConstants.cs 43 public const int False = 0;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugEventListenerConstants.cs 43 public const int False = 0;
  /external/valgrind/tests/
arch_test.c 21 #define False 0
87 return False;
os_test.c 19 #define False 0
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;
x86_amd64_features.c 22 #define False 0
64 return False;
67 return False;
74 Bool require_amd = False;
75 Bool require_xgetbv = False;
  /hardware/intel/common/libva/va/
sysdeps.h 42 # define False 0
  /art/test/543-checker-dce-trycatch/src/
Main.java 22 static boolean $inline$False() { return false; }
48 if ($inline$False()) {
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
LazyValueInfo.h 39 /// Tristate - This is used to return true/false/dunno results.
41 Unknown = -1, False = 0, True = 1
48 /// with a constant is known to be true or false on the specified CFG edge.
  /external/swiftshader/third_party/LLVM/unittests/VMCore/
VerifierTest.cpp 27 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C), /*isVarArg=*/false);
36 Constant *False = ConstantInt::getFalse(C);
37 BranchInst *BI = BranchInst::Create(Exit, Exit, False, Entry);
  /external/llvm/include/llvm/Analysis/
LazyValueInfo.h 60 /// This is used to return true/false/dunno results.
62 Unknown = -1, False = 0, True = 1
68 /// to be true or false on the specified CFG edge.
75 /// to be true or false at the specified instruction
  /external/valgrind/none/tests/amd64/
pcmpxstrx64.c 15 #define False ((Bool)0)
pcmpxstrx64w.c 16 #define False ((Bool)0)
  /external/llvm/unittests/IR/
VerifierTest.cpp 29 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C), /*isVarArg=*/false);
38 Constant *False = ConstantInt::getFalse(C);
39 BranchInst *BI = BranchInst::Create(Exit, Exit, False, Entry);
52 FunctionType *FTy = FunctionType::get(Type::getInt32Ty(C), /*isVarArg=*/false);
70 FunctionType *FTy = FunctionType::get(Type::getInt32Ty(C), /*isVarArg=*/false);
129 new GlobalVariable(M1, Type::getInt8Ty(C), false,
135 "unittest", false, "", 0);
139 false, newGV);
152 new GlobalVariable(M, Type::getInt8Ty(C), false,
166 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C), /*isVarArg=*/false);
    [all...]
  /external/valgrind/none/tests/arm64/
memory.c 21 #define False ((Bool)0)
    [all...]
  /external/clang/test/SemaTemplate/
current-instantiation.cpp 174 struct False : public Bool<false> {};
177 struct Is_Same : public False {};
  /external/valgrind/VEX/pub/
libvex_basictypes.h 101 #define False ((Bool)0)
107 Int r = (x == 0) ? False : True;

Completed in 454 milliseconds

1 2 3 4