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

1234

/external/chromium_org/v8/test/webkit/
H A Ddfg-branch-not-fail.js41 var True = true; variable
46 True = "string";
49 shouldBe("foo({f:True})", "1");
51 shouldBe("bar({f:True})", "0");
/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/chromium_org/third_party/tlslite/tlslite/utils/
H A DTripleDES.py3 from compat import * #For True namespace
13 self.isBlockCipher = True
H A Djython_compat.py98 #True and False have to be specially defined
100 True = 1 variable
133 return True
/external/chromium_org/third_party/libva/va/
H A Dsysdeps.h41 # define True 1 macro
/external/valgrind/main/tests/
H A Darch_test.c22 #define True 1 macro
38 if ( 0 == strcmp( arch, "x86" ) ) return True;
41 if ( 0 == strcmp( arch, "x86" ) ) return True;
42 if ( 0 == strcmp( arch, "amd64" ) ) return True;
45 if ( 0 == strcmp( arch, "ppc32" ) ) return True;
48 if ( 0 == strcmp( arch, "ppc64" ) ) return True;
49 if ( 0 == strcmp( arch, "ppc32" ) ) return True;
52 if ( 0 == strcmp( arch, "s390x" ) ) return True;
55 if ( 0 == strcmp( arch, "arm" ) ) return True;
H A Dos_test.c20 #define True 1 macro
34 if (min_version == NULL) return True; // no version specified
47 if (a1 > g1) return True;
49 if (a2 > g2) return True;
51 if (a3 >= g3) return True;
60 if ( 0 == strcmp( OS, "linux" ) && matches_version( min_version )) return True;
63 if ( 0 == strcmp( OS, "darwin" ) ) return True;
H A Dx86_amd64_features.c17 #define True 1 macro
77 require_amd = True;
94 require_amd = True;
/external/llvm/include/llvm/Analysis/
H A DLazyValueInfo.h43 Unknown = -1, False = 0, True = 1 enumerator in enum:llvm::LazyValueInfo::Tristate
/external/chromium/chrome/browser/chromeos/
H A Dsystem_key_event_listener.cc130 XGrabKey(GDK_DISPLAY(), key, mask, root, True, GrabModeAsync, GrabModeAsync); local
131 XGrabKey(GDK_DISPLAY(), key, mask | caps_lock_mask, root, True, local
133 XGrabKey(GDK_DISPLAY(), key, mask | num_lock_mask, root, True, local
136 True, GrabModeAsync, GrabModeAsync); local
/external/valgrind/main/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/chromium_org/components/policy/core/common/cloud/
H A Dcomponent_cloud_policy_store_unittest.cc55 bool True(const std::string& ignored) { function in namespace:policy::__anon7779
311 store_->Purge(POLICY_DOMAIN_EXTENSIONS, base::Bind(&True));
/external/clang/lib/AST/
H A DExprClassification.cpp539 static Cl::Kinds ClassifyConditional(ASTContext &Ctx, const Expr *True, argument
547 if (True->getType()->isVoidType() || False->getType()->isVoidType())
555 Cl::Kinds LCl = ClassifyInternal(Ctx, True),
/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/valgrind/main/VEX/pub/
H A Dlibvex_basictypes.h84 #define True ((Bool)1) macro
91 Int r = (x == 0) ? False : True;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DR600ISelLowering.cpp394 SDValue True = Op.getOperand(2); local
404 // necessary we need to convert LHS and RHS to be the same type True and
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)) {
458 Temp = True;
459 True
[all...]
H A DSIISelLowering.cpp378 SDValue True = Op.getOperand(2); local
385 return DAG.getNode(ISD::SELECT, DL, VT, Cond, True, False);
402 ConstantSDNode *True, *False; local
404 if ((True = dyn_cast<ConstantSDNode>(N->getOperand(2)))
406 && True->isAllOnesValue()
/external/llvm/include/llvm/Support/
H A DConstantFolder.h207 Constant *CreateSelect(Constant *C, Constant *True, Constant *False) const { argument
208 return ConstantExpr::getSelect(C, True, False);
H A DTargetFolder.h231 Constant *CreateSelect(Constant *C, Constant *True, Constant *False) const { argument
232 return Fold(ConstantExpr::getSelect(C, True, False));
/external/mesa3d/src/gallium/drivers/radeon/
H A DR600ISelLowering.cpp394 SDValue True = Op.getOperand(2); local
404 // necessary we need to convert LHS and RHS to be the same type True and
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)) {
458 Temp = True;
459 True
[all...]
H A DSIISelLowering.cpp378 SDValue True = Op.getOperand(2); local
385 return DAG.getNode(ISD::SELECT, DL, VT, Cond, True, False);
402 ConstantSDNode *True, *False; local
404 if ((True = dyn_cast<ConstantSDNode>(N->getOperand(2)))
406 && True->isAllOnesValue()
/external/srec/srec/include/
H A Dall_defs.h85 #define True ESR_TRUE /* Boolean constants */ macro

Completed in 640 milliseconds

1234