Searched refs:Then (Results 1 - 25 of 26) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/Utils/
H A DARMBaseInfo.h91 Then, enumerator in enum:llvm::ARMVCC::VPTCodes
133 case ARMVCC::Then: return "t";
141 .Case("t", ARMVCC::Then)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DTGLexer.h50 MultiClass, String, Defset, Defvar, If, Then, ElseKW, enumerator in enum:llvm::tgtok::TokKind
H A DTGParser.cpp2932 if (Lex.getCode() != tgtok::Then)
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DStmt.cpp831 Stmt *Init, VarDecl *Var, Expr *Cond, Stmt *Then,
844 setThen(Then);
866 Stmt *Then, SourceLocation EL, Stmt *Else) {
875 IfStmt(Ctx, IL, IsConstexpr, Init, Var, Cond, Then, EL, Else);
830 IfStmt(const ASTContext &Ctx, SourceLocation IL, bool IsConstexpr, Stmt *Init, VarDecl *Var, Expr *Cond, Stmt *Then, SourceLocation EL, Stmt *Else) argument
864 Create(const ASTContext &Ctx, SourceLocation IL, bool IsConstexpr, Stmt *Init, VarDecl *Var, Expr *Cond, Stmt *Then, SourceLocation EL, Stmt *Else) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaExceptionSpec.cpp1515 CanThrowResult Then = canThrow(IS->getThen());
1517 if (Then == Else)
1518 return mergeCanThrow(CT, Then);
1523 : mergeCanThrow(Then, Else));
H A DAnalysisBasedWarnings.cpp786 static void CreateIfFixit(Sema &S, const Stmt *If, const Stmt *Then, argument
792 CharSourceRange::getCharRange(If->getBeginLoc(), Then->getBeginLoc()));
794 SourceLocation ElseKwLoc = S.getLocForEndOfToken(Then->getEndLoc());
H A DTreeTransform.h1296 Sema::ConditionResult Cond, Stmt *Init, Stmt *Then,
1298 return getSema().ActOnIfStmt(IfLoc, IsConstexpr, Init, Cond, Then,
6953 StmtResult Then; local
6955 Then = getDerived().TransformStmt(S->getThen());
6956 if (Then.isInvalid())
6959 Then = new (getSema().Context) NullStmt(S->getThen()->getBeginLoc());
6973 Then.get() == S->getThen() &&
6978 Init.get(), Then.get(), S->getElseLoc(),
1295 RebuildIfStmt(SourceLocation IfLoc, bool IsConstexpr, Sema::ConditionResult Cond, Stmt *Init, Stmt *Then, SourceLocation ElseLoc, Stmt *Else) argument
/freebsd-11-stable/stand/i386/cdboot/
H A Dcdboot.S35 # binary. Then we attempt to load /boot/loader from the CD we were booted
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h1898 VarDecl *Var, Expr *Cond, Stmt *Then, SourceLocation EL, Stmt *Else);
1907 Stmt *Then, SourceLocation EL = SourceLocation(),
1941 void setThen(Stmt *Then) { argument
1942 getTrailingObjects<Stmt *>()[thenOffset()] = Then;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/
H A DCore.h1722 * to obtain a reference to the first use. Then, call LLVMGetNextUse()
3585 LLVMBasicBlockRef Then, LLVMBasicBlockRef Else);
3594 LLVMBasicBlockRef Then, LLVMBasicBlockRef Catch,
3598 LLVMBasicBlockRef Then, LLVMBasicBlockRef Catch,
3894 LLVMValueRef Then, LLVMValueRef Else,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DCore.cpp3094 LLVMBasicBlockRef Then, LLVMBasicBlockRef Else) {
3095 return wrap(unwrap(B)->CreateCondBr(unwrap(If), unwrap(Then), unwrap(Else)));
3110 LLVMBasicBlockRef Then, LLVMBasicBlockRef Catch,
3117 unwrap(B)->CreateInvoke(FnT, unwrap(Fn), unwrap(Then), unwrap(Catch),
3123 LLVMBasicBlockRef Then, LLVMBasicBlockRef Catch,
3126 unwrap<FunctionType>(Ty), unwrap(Fn), unwrap(Then), unwrap(Catch),
3859 LLVMValueRef Then, LLVMValueRef Else,
3861 return wrap(unwrap(B)->CreateSelect(unwrap(If), unwrap(Then), unwrap(Else),
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h4486 const Stmt *const Then = Node.getThen(); local
4487 return (Then != nullptr && InnerMatcher.matches(*Then, Finder, Builder));
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp1753 const CFGBlock *Then = B->succ_begin()->getReachableBlock(); local
1756 if (!Then || !Else)
1759 if (Then->isInevitablySinking() != Else->isInevitablySinking())
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DLowerTypeTests.cpp783 BasicBlock *Then = InitialBB->splitBasicBlock(CI->getIterator()); local
785 BranchInst *NewBr = BranchInst::Create(Then, Else, OffsetInRange);
792 Phi.addIncoming(Phi.getIncomingValueForBlock(Then), InitialBB);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMLowOverheadLoops.cpp413 // Then search backwards for a def, until we get to InsertBB.
887 assert(MI->getOperand(PIdx).getImm() == ARMVCC::Then &&
888 "Expected Then predicate!");
919 // - Then need to unpredicate any following instructions, until
H A DARMISelDAGToDAG.cpp1717 Pred = ARMVCC::Then;
2428 Ops.push_back(CurDAG->getTargetConstant(ARMVCC::Then, Loc, MVT::i32));
2436 Ops.push_back(CurDAG->getTargetConstant(ARMVCC::Then, Loc, MVT::i32));
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DCFG.cpp2992 Stmt *Then = I->getThen(); local
2993 assert(Then);
2999 if (!isa<CompoundStmt>(Then))
3000 addLocalScopeAndDtors(Then);
3002 ThenBlock = addStmt(Then);
/freebsd-11-stable/stand/pc98/cdboot/
H A Dcdboot.S32 # binary. Then we attempt to load /boot/loader from the CD we were booted
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h1621 const Node *Then; member in class:ConditionalExpr
1626 : Node(KConditionalExpr), Cond(Cond_), Then(Then_), Else(Else_) {}
1628 template<typename Fn> void match(Fn F) const { F(Cond, Then, Else); }
1634 Then->print(S);
/freebsd-11-stable/contrib/dtc/Documentation/
H A Ddtc-paper.tex227 as a null-terminated string, padded to a 32-bit boundary. Then
/freebsd-11-stable/contrib/gcc/config/arm/
H A Dieee754-df.S727 @ a register switch from xh to xl. Then round.
/freebsd-11-stable/contrib/amd/doc/
H A Dtexinfo.tex7585 % Then, for each argument number #N, we place the corresponding argument
7588 % Then, we expand the body so that argument are replaced by their
7608 % Then we point at the \norecurse or \gobble (for recursive) macro value
7630 % Then we place the argument value into that token list register.
9792 % \normaloffset until the front-side and back-side texts align. Then
10030 % On the other hand, perhaps the file did not have a `\input texinfo'. Then
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp118 VPTStates.push_back(ARMVCC::Then);
122 VPTStates.push_back(ARMVCC::Then);
/freebsd-11-stable/contrib/gcc/doc/include/
H A Dtexinfo.tex6978 % \normaloffset until the front-side and back-side texts align. Then
7202 % On the other hand, perhaps the file did not have a `\input texinfo'. Then
/freebsd-11-stable/contrib/groff/doc/
H A Dtexinfo.tex6831 % \normaloffset until the front-side and back-side texts align. Then
7053 % On the other hand, perhaps the file did not have a `\input texinfo'. Then

Completed in 404 milliseconds

12