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

1 2 3 4 5 6

  /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/r16/sources/cxx-stl/llvm-libc++/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>, "" );
  /prebuilts/ndk/r16/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
83 return False;
libc_test.c 17 #define False 0
35 if (sscanf(aversion, "%d.%d.%d", &a1, &a2, &a3) < 1) return False;
38 if (sscanf(min_version, "%d.%d.%d", &g1, &g2, &g3) < 1) return False;
41 if (a1 < g1) return False;
43 if (a2 < g2) return False;
46 return False;
57 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;
  /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/valgrind/none/tests/arm64/
crc32.c 21 #define False ((Bool)0)
  /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/valgrind/none/tests/arm/
v8memory_a.c 30 #define False ((Bool)0)
v8memory_t.c 30 #define False ((Bool)0)
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
LazyValueInfo.h 62 /// This is used to return true/false/dunno results.
64 Unknown = -1, False = 0, True = 1
70 /// to be true or false on the specified CFG edge.
77 /// to be true or false at the specified instruction

Completed in 258 milliseconds

1 2 3 4 5 6