Searched defs:True (Results 1 - 25 of 85) sorted by path

1234

/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/bzip2/
H A Dbzip2.c169 #define True ((Bool)1) macro
321 if (c == EOF) return True;
350 while (True) {
452 while (True) {
502 return True;
507 while (True) {
541 return True;
548 return True; /*notreached*/
570 while (True) {
602 return True;
[all...]
H A Dbzip2recover.c56 #define True ((Bool)1) macro
367 while (True) {
438 while (True) {
H A Dbzlib_private.h49 #define True ((Bool)1) macro
446 if (s->tPos >= (UInt32)100000 * (UInt32)s->blockSize100k) return True; \
453 if (c_tPos >= (UInt32)100000 * (UInt32)ro_blockSize100k) return True; \
477 if (s->tPos >= (UInt32)100000 * (UInt32)s->blockSize100k) return True; \
/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::__anon6713
317 store_->Purge(POLICY_DOMAIN_EXTENSIONS, base::Bind(&True));
/external/chromium_org/third_party/cython/src/pyximport/test/
H A Dtest_pyximport.py1 import pyximport; pyximport.install(reload_support=True) namespace
/external/chromium_org/third_party/libva/va/
H A Dsysdeps.h41 # define True 1 macro
/external/chromium_org/third_party/lzma_sdk/
H A DTypes.h96 #define True 1 macro
/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/chromium_org/third_party/ots/third_party/lzma_sdk/
H A DTypes.h97 #define True 1 macro
/external/chromium_org/ui/views/widget/desktop_aura/
H A Ddesktop_window_tree_host_x11_interactive_uitest.cc115 xev.xmotion.same_screen = True;
143 XSynchronize(gfx::GetXDisplay(), True); variable
H A Ddesktop_window_tree_host_x11_unittest.cc206 XSynchronize(gfx::GetXDisplay(), True); variable
H A Dx11_topmost_window_finder_interactive_uitest.cc213 XSynchronize(xdisplay(), True); variable
366 swa.override_redirect = True;
/external/chromium_org/v8/include/
H A Dv8.h309 friend Handle<Boolean> True(Isolate* isolate);
4041 V8_INLINE Handle<Boolean> True(Isolate* isolate);
5347 * occurred. True by default.
6393 return value ? True(isolate) : False(isolate);
6830 Handle<Boolean> True(Isolate* isolate) { function in namespace:v8
/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/clang/include/clang/Parse/
H A DParser.h226 /// True if we are within an Objective-C container while parsing C-like decls.
338 /// isTokenStringLiteral - True if this token is a string-literal.
342 /// isTokenSpecial - True if this token requires special consumption methods.
1808 return isCXXDeclarationSpecifier() == TPResult::True;
1912 True, False, Ambiguous, Error member in class:clang::Parser::TPResult
1927 /// isCXXDeclarationSpecifier - Returns TPResult::True if it is a
1938 /// Given that isCXXDeclarationSpecifier returns \c TPResult::True or
1950 // Returning TPResult::True/False indicates that the ambiguity was
/external/clang/lib/AST/
H A DExprClassification.cpp538 static Cl::Kinds ClassifyConditional(ASTContext &Ctx, const Expr *True, argument
546 if (True->getType()->isVoidType() || False->getType()->isVoidType()) {
550 bool TrueIsThrow = isa<CXXThrowExpr>(True->IgnoreParenImpCasts());
553 : (FalseIsThrow ? True : nullptr))
565 Cl::Kinds LCl = ClassifyInternal(Ctx, True),
/external/clang/lib/CodeGen/
H A DCGExprScalar.cpp1557 llvm::Value *True = CGF.EmitToMemory(Builder.getTrue(), type); local
1559 Builder.Insert(new llvm::StoreInst(True,
1568 LV.getAddress(), True, llvm::SequentiallyConsistent);
/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 {};
H A Dinstantiate-expr-2.cpp93 typedef Lookup<B ? sizeof(T) : sizeof(E)> True; typedef in struct:N6::Cond
97 typedef Cond<true, int, char>::True True; typedef in namespace:N6
102 Lookup<sizeof(int)> const &L2(True());
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml138 | True Constructor in type:Fcmp/t
/external/llvm/include/llvm/Analysis/
H A DLazyValueInfo.h43 Unknown = -1, False = 0, True = 1 enumerator in enum:llvm::LazyValueInfo::Tristate
H A DTargetFolder.h231 Constant *CreateSelect(Constant *C, Constant *True, Constant *False) const { argument
232 return Fold(ConstantExpr::getSelect(C, True, False));

Completed in 3324 milliseconds

1234