Searched refs:Else (Results 1 - 17 of 17) sorted by relevance

/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Lex/
H A DPPConditionalDirectiveRecord.h97 void Else(SourceLocation Loc, SourceLocation IfLoc) override;
H A DPPCallbacks.h313 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) { function in class:clang::PPCallbacks
495 void Else(SourceLocation Loc, SourceLocation IfLoc) override {
496 First->Else(Loc, IfLoc);
497 Second->Else(Loc, IfLoc);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Lex/
H A DPPConditionalDirectiveRecord.cpp107 void PPConditionalDirectiveRecord::Else(SourceLocation Loc, function in class:PPConditionalDirectiveRecord
H A DPPDirectives.cpp444 Callbacks->Else(Tok.getLocation(), CondInfo.IfLoc);
2526 Callbacks->Else(Result.getLocation(), CI.IfLoc);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DIdenticalExprChecker.cpp138 const Stmt *Else = Stmt2; local
139 while (const IfStmt *I2 = dyn_cast_or_null<IfStmt>(Else)) {
149 Else = I2->getElse();
/freebsd-11.0-release/contrib/llvm/lib/Target/AMDGPU/
H A DSIAnnotateControlFlow.cpp60 Constant *Else; member in class:__anon2746::SIAnnotateControlFlow
134 Else = M.getOrInsertFunction(
171 /// an "Else" block?
202 /// \brief Close the last "If" block and open a new "Else" block
204 Value *Ret = CallInst::Create(Else, popSaved(), "", Term);
H A DSILowerControlFlow.cpp81 void Else(MachineInstr &MI);
201 void SILowerControlFlowPass::Else(MachineInstr &MI) { function in class:SILowerControlFlowPass
502 Else(MI);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Analysis/
H A DBodyFarm.cpp342 Stmt *Else = M.makeReturn(RetVal); local
347 SourceLocation(), Else);
H A DCFG.cpp2190 if (Stmt *Else = I->getElse()) {
2199 if (!isa<CompoundStmt>(Else))
2200 addLocalScopeAndDtors(Else);
2202 ElseBlock = addStmt(Else);
2204 if (!ElseBlock) // Can occur when the Else body has all NullStmts.
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp651 const Stmt *Else, bool CondVal,
658 if (Else) {
661 SourceRange(ElseKwLoc, Else->getLocEnd()));
665 if (Else)
668 Else->getLocStart()));
650 CreateIfFixit(Sema &S, const Stmt *If, const Stmt *Then, const Stmt *Else, bool CondVal, FixItHint &Fixit1, FixItHint &Fixit2) argument
H A DTreeTransform.h1169 SourceLocation ElseLoc, Stmt *Else) {
1170 return getSema().ActOnIfStmt(IfLoc, Cond, CondVar, Then, ElseLoc, Else);
6164 StmtResult Else = getDerived().TransformStmt(S->getElse());
6165 if (Else.isInvalid())
6172 Else.get() == S->getElse())
6177 S->getElseLoc(), Else.get());
1167 RebuildIfStmt(SourceLocation IfLoc, Sema::FullExprArg Cond, VarDecl *CondVar, Stmt *Then, SourceLocation ElseLoc, Stmt *Else) argument
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DStmtPrinter.cpp197 if (Stmt *Else = If->getElse()) {
200 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Else)) {
204 } else if (IfStmt *ElseIf = dyn_cast<IfStmt>(Else)) {
/freebsd-11.0-release/contrib/llvm/include/llvm-c/
H A DCore.h2579 LLVMBasicBlockRef Then, LLVMBasicBlockRef Else);
2581 LLVMBasicBlockRef Else, unsigned NumCases);
2753 LLVMValueRef Then, LLVMValueRef Else,
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/ASTMatchers/
H A DASTMatchers.h3027 const Stmt *const Else = Node.getElse(); local
3028 return (Else != nullptr && InnerMatcher.matches(*Else, Finder, Builder));
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCoverageMappingGen.cpp813 if (const Stmt *Else = S->getElse()) {
815 OutCount = addCounters(OutCount, propagateCounts(ElseCount, Else));
H A DCGStmt.cpp592 if (const Stmt *Else = S.getElse()) {
600 EmitStmt(Else);
/freebsd-11.0-release/contrib/llvm/lib/IR/
H A DCore.cpp2242 LLVMBasicBlockRef Then, LLVMBasicBlockRef Else) {
2243 return wrap(unwrap(B)->CreateCondBr(unwrap(If), unwrap(Then), unwrap(Else)));
2247 LLVMBasicBlockRef Else, unsigned NumCases) {
2248 return wrap(unwrap(B)->CreateSwitch(unwrap(V), unwrap(Else), NumCases));
2747 LLVMValueRef Then, LLVMValueRef Else,
2749 return wrap(unwrap(B)->CreateSelect(unwrap(If), unwrap(Then), unwrap(Else),
2241 LLVMBuildCondBr(LLVMBuilderRef B, LLVMValueRef If, LLVMBasicBlockRef Then, LLVMBasicBlockRef Else) argument
2246 LLVMBuildSwitch(LLVMBuilderRef B, LLVMValueRef V, LLVMBasicBlockRef Else, unsigned NumCases) argument
2746 LLVMBuildSelect(LLVMBuilderRef B, LLVMValueRef If, LLVMValueRef Then, LLVMValueRef Else, const char *Name) argument

Completed in 312 milliseconds