Searched defs:True (Results 1 - 25 of 105) sorted by relevance

12345

/external/libcxx/test/std/experimental/utilities/meta/meta.logical/
H A Dconjunction.pass.cpp22 struct True { static constexpr bool value = true; }; struct
63 static_assert ( ex::conjunction<True >::value, "" );
66 static_assert ( ex::conjunction_v<True >, "" );
H A Ddisjunction.pass.cpp22 struct True { static constexpr bool value = true; }; struct
63 static_assert ( ex::disjunction<True >::value, "" );
66 static_assert ( ex::disjunction_v<True >, "" );
H A Dnegation.pass.cpp22 struct True { static constexpr bool value = true; }; struct
33 static_assert (!ex::negation<True >::value, "" );
36 static_assert (!ex::negation_v<True >, "" );
/external/libcxx/test/std/utilities/meta/meta.logical/
H A Dconjunction.pass.cpp20 struct True { static constexpr bool value = true; }; struct
61 static_assert ( std::conjunction<True >::value, "" );
64 static_assert ( std::conjunction_v<True >, "" );
H A Ddisjunction.pass.cpp20 struct True { static constexpr bool value = true; }; struct
61 static_assert ( std::disjunction<True >::value, "" );
64 static_assert ( std::disjunction_v<True >, "" );
H A Dnegation.pass.cpp20 struct True { static constexpr bool value = true; }; struct
31 static_assert (!std::negation<True >::value, "" );
34 static_assert (!std::negation_v<True >, "" );
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DDebugEventListenerConstants.cs42 public const int True = 1; field in class:Antlr.Runtime.Debug.DebugEventListenerConstants
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DDebugEventListenerConstants.cs42 public const int True = 1; field in class:Antlr.Runtime.Debug.DebugEventListenerConstants
/external/valgrind/tests/
H A Darch_test.c22 #define True 1 macro
43 if ( 0 == strcmp( arch, "x86" ) ) return True;
48 if ( 0 == strcmp( arch, "x86" ) ) return True;
50 if ( 0 == strcmp( arch, "amd64" ) ) return True;
53 if ( 0 == strcmp( arch, "ppc32" ) ) return True;
56 if ( 0 == strcmp( arch, "ppc64" ) ) return True;
58 if ( 0 == strcmp( arch, "ppc32" ) ) return True;
62 if ( 0 == strcmp( arch, "ppc64" ) ) return True;
65 if ( 0 == strcmp( arch, "s390x" ) ) return True;
68 if ( 0 == strcmp( arch, "arm" ) ) return True;
[all...]
H A Dlibc_test.c18 #define True 1 macro
26 if (min_version == NULL) return True; // no version specified
40 if (a1 > g1) return True;
42 if (a2 > g2) return True;
44 if (a3 >= g3) return True;
54 return True;
H A Dos_test.c20 #define True 1 macro
35 if (min_version == NULL) return True; // no version specified
48 if (a1 > g1) return True;
50 if (a2 > g2) return True;
52 if (a3 >= g3) return True;
61 if ( 0 == strcmp( OS, "linux" ) && matches_version( min_version )) return True;
64 if ( 0 == strcmp( OS, "darwin" ) ) return True;
67 if ( 0 == strcmp( OS, "solaris" ) ) return True;
H A Dx86_amd64_features.c23 #define True 1 macro
62 return True;
103 require_amd = True;
120 require_amd = True;
127 require_xgetbv = True;
131 require_amd = True;
/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/valgrind/none/tests/arm64/
H A Dcrc32.c22 #define True ((Bool)1) macro
H A Dmemory.c22 #define True ((Bool)1) macro
/external/skia/src/shaders/gradients/
H A DSk4fGradientPriv.h23 enum class ApplyPremul { True, False }; member in class:__anon18408::ApplyPremul
34 struct PremulTraits<ApplyPremul::True> {
/external/valgrind/none/tests/arm/
H A Dv8memory_a.c31 #define True ((Bool)1) macro
H A Dv8memory_t.c31 #define True ((Bool)1) macro
/external/llvm/include/llvm/Analysis/
H A DLazyValueInfo.h62 Unknown = -1, False = 0, True = 1 enumerator in enum:llvm::LazyValueInfo::Tristate
/external/valgrind/none/tests/amd64/
H A Dpcmpxstrx64.c16 #define True ((Bool)1) macro
H A Dpcmpxstrx64w.c17 #define True ((Bool)1) macro
H A Daes.c12 #define True ((Bool)1) macro
/external/clang/test/SemaTemplate/
H A Dcurrent-instantiation.cpp173 struct True : public Bool<true> {}; struct in namespace:Expressions
179 struct Is_Same<T, T> : public True {};
/external/protobuf/csharp/src/Google.Protobuf/
H A DJsonToken.cs40 private static readonly JsonToken _true = new JsonToken(TokenType.True);
51 internal static JsonToken True { get { return _true; } } property in class:Google.Protobuf.JsonToken
77 True, enumerator in enum:Google.Protobuf.JsonToken.TokenType
131 case TokenType.True:
/external/valgrind/VEX/pub/
H A Dlibvex_basictypes.h100 #define True ((Bool)1) macro
107 Int r = (x == 0) ? False : True;

Completed in 831 milliseconds

12345