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

1234

/external/v8/test/webkit/
H A Ddfg-branch-not-fail.js42 var False = false; variable
47 False = void 0;
50 shouldBe("foo({f:False})", "0");
52 shouldBe("bar({f:False})", "1");
/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/jetty/src/java/org/eclipse/jetty/webapp/
H A DMetaDataComplete.java21 public enum MetaDataComplete {NotSet, True, False} enum constant in enum:MetaDataComplete
/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/llvm/include/llvm/Analysis/
H A DLazyValueInfo.h46 Unknown = -1, False = 0, True = 1 enumerator in enum:llvm::LazyValueInfo::Tristate
/external/llvm/unittests/IR/
H A DVerifierTest.cpp36 Constant *False = ConstantInt::getFalse(C); local
37 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
H A Dinteger.c26 #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 {};
H A Dinstantiate-expr-2.cpp94 typedef Lookup<!B ? sizeof(T) : sizeof(E)> False; typedef in struct:N6::Cond
98 typedef Cond<true, int, char>::False False; typedef in namespace:N6
101 Lookup<1> const &L1(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.cpp550 const Expr *False) {
557 if (True->getType()->isVoidType() || False->getType()->isVoidType()) {
562 bool FalseIsThrow = isa<CXXThrowExpr>(False->IgnoreParenImpCasts());
563 if (const Expr *NonThrow = TrueIsThrow ? (FalseIsThrow ? nullptr : False)
577 RCl = ClassifyInternal(Ctx, False);
549 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()
/external/valgrind/coregrind/
H A Dfixup_macho_loadcmds.c139 #define False ((Bool)0) macro
203 return False;
208 return False;
212 return False;
401 Bool have_rsp = False;
580 return False;
591 return False;
/external/valgrind/memcheck/tests/amd64/
H A Dxsave-avx.c19 #define False ((Bool)0) macro
/external/valgrind/memcheck/tests/common/
H A Dsh-mem-vec128.tmpl.c30 #define False ((Bool)0) macro
317 apply( do_partial_load_case, i, False/*not aligned*/ );
/external/valgrind/mpi/
H A Dmpiwrap_type_test.c19 #define False ((Bool)0) macro
281 TRY(False, MPI_FLOAT_INT, "FLOAT_INT");
282 TRY(False, MPI_DOUBLE_INT, "DOUBLE_INT");
283 TRY(False, MPI_LONG_INT, "LONG_INT");
284 TRY(False, MPI_SHORT_INT, "SHORT_INT");
285 TRY(False, MPI_2INT, "2INT");
286 TRY(False, MPI_LONG_DOUBLE_INT, "LONG_DOUBLE_INT");
291 TRY(False, MPI_REAL8, "REAL8");
294 TRY(False, MPI_REAL4, "REAL4");
297 TRY(False, MPI_INTEGER
[all...]
/external/bzip2/
H A Dbzip2recover.c57 #define False ((Bool)0) macro
264 if (n <= 4) return False;

Completed in 719 milliseconds

1234