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

/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Lex/
H A DPPConditionalDirectiveRecord.h97 virtual void Else(SourceLocation Loc, SourceLocation IfLoc);
H A DPPCallbacks.h309 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) { function in class:clang::PPCallbacks
503 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) { function in class:clang::PPChainedCallbacks
504 First->Else(Loc, IfLoc);
505 Second->Else(Loc, IfLoc);
/freebsd-9.3-release/contrib/llvm/lib/Target/R600/
H A DSIAnnotateControlFlow.cpp57 Constant *Else; member in class:__anon2459::SIAnnotateControlFlow
129 Else = M.getOrInsertFunction(
166 /// an "Else" block?
197 /// \brief Close the last "If" block and open a new "Else" block
199 Value *Ret = CallInst::Create(Else, popSaved(), "", Term);
H A DSILowerControlFlow.cpp78 void Else(MachineInstr &MI);
212 void SILowerControlFlowPass::Else(MachineInstr &MI) { function in class:SILowerControlFlowPass
468 Else(MI);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Lex/
H A DPPConditionalDirectiveRecord.cpp107 void PPConditionalDirectiveRecord::Else(SourceLocation Loc, function in class:PPConditionalDirectiveRecord
H A DPPDirectives.cpp399 Callbacks->Else(Tok.getLocation(), CondInfo.IfLoc);
2324 Callbacks->Else(Result.getLocation(), CI.IfLoc);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Analysis/
H A DBodyFarm.cpp334 Stmt *Else = M.makeReturn(RetVal); local
339 SourceLocation(), Else);
H A DCFG.cpp1797 if (Stmt *Else = I->getElse()) {
1806 if (!isa<CompoundStmt>(Else))
1807 addLocalScopeAndDtors(Else);
1809 ElseBlock = addStmt(Else);
1811 if (!ElseBlock) // Can occur when the Else body has all NullStmts.
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DStmtPrinter.cpp209 if (Stmt *Else = If->getElse()) {
212 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Else)) {
216 } else if (IfStmt *ElseIf = dyn_cast<IfStmt>(Else)) {
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp466 const Stmt *Else, bool CondVal,
473 if (Else) {
477 SourceRange(ElseKwLoc, Else->getLocEnd()));
481 if (Else)
484 Else->getLocStart()));
465 CreateIfFixit(Sema &S, const Stmt *If, const Stmt *Then, const Stmt *Else, bool CondVal, FixItHint &Fixit1, FixItHint &Fixit2) argument
H A DTreeTransform.h1111 SourceLocation ElseLoc, Stmt *Else) {
1112 return getSema().ActOnIfStmt(IfLoc, Cond, CondVar, Then, ElseLoc, Else);
5450 StmtResult Else = getDerived().TransformStmt(S->getElse());
5451 if (Else.isInvalid())
5458 Else.get() == S->getElse())
5463 S->getElseLoc(), Else.get());
1109 RebuildIfStmt(SourceLocation IfLoc, Sema::FullExprArg Cond, VarDecl *CondVar, Stmt *Then, SourceLocation ElseLoc, Stmt *Else) argument
/freebsd-9.3-release/contrib/llvm/include/llvm-c/
H A DCore.h2470 LLVMBasicBlockRef Then, LLVMBasicBlockRef Else);
2472 LLVMBasicBlockRef Else, unsigned NumCases);
2642 LLVMValueRef Then, LLVMValueRef Else,
/freebsd-9.3-release/contrib/llvm/lib/IR/
H A DCore.cpp1959 LLVMBasicBlockRef Then, LLVMBasicBlockRef Else) {
1960 return wrap(unwrap(B)->CreateCondBr(unwrap(If), unwrap(Then), unwrap(Else)));
1964 LLVMBasicBlockRef Else, unsigned NumCases) {
1965 return wrap(unwrap(B)->CreateSwitch(unwrap(V), unwrap(Else), NumCases));
2403 LLVMValueRef Then, LLVMValueRef Else,
2405 return wrap(unwrap(B)->CreateSelect(unwrap(If), unwrap(Then), unwrap(Else),
1958 LLVMBuildCondBr(LLVMBuilderRef B, LLVMValueRef If, LLVMBasicBlockRef Then, LLVMBasicBlockRef Else) argument
1963 LLVMBuildSwitch(LLVMBuilderRef B, LLVMValueRef V, LLVMBasicBlockRef Else, unsigned NumCases) argument
2402 LLVMBuildSelect(LLVMBuilderRef B, LLVMValueRef If, LLVMValueRef Then, LLVMValueRef Else, const char *Name) argument
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGStmt.cpp476 if (const Stmt *Else = S.getElse()) {
483 EmitStmt(Else);

Completed in 323 milliseconds