Home
last modified time | relevance | path

Searched refs:Else (Results 1 – 25 of 47) sorted by relevance

12

/freebsd-12.1/crypto/openssl/
H A Dappveyor.yml19 } Else {
26 } Else {
57 } Else {
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Lex/
H A DPPCallbacks.h337 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) { in Else() function
550 void Else(SourceLocation Loc, SourceLocation IfLoc) override { in Else() function
551 First->Else(Loc, IfLoc); in Else()
552 Second->Else(Loc, IfLoc); in Else()
H A DPPConditionalDirectiveRecord.h97 void Else(SourceLocation Loc, SourceLocation IfLoc) override;
/freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/
H A DSIAnnotateControlFlow.cpp68 Function *Else; member in __anon740648470111::SIAnnotateControlFlow
148 Else = Intrinsic::getDeclaration(&M, Intrinsic::amdgcn_else); in doInitialization()
218 Value *Ret = CallInst::Create(Else, popSaved(), "", Term); in insertElse()
/freebsd-12.1/sys/dev/usb/
H A Dusb_if.m47 # Else: Use builtin request handler
62 # Else: Failure
/freebsd-12.1/contrib/llvm/lib/TableGen/
H A DTGLexer.cpp40 { tgtok::Else, "else" },
711 } else if (Kind == tgtok::Else) { in lexPreprocessor()
753 IfdefOrElseEntry.Kind != tgtok::Else) { in lexPreprocessor()
842 if (Kind != tgtok::Else && Kind != tgtok::Endif) { in prepSkipRegion()
H A DTGLexer.h69 Ifdef, Else, Endif, Define enumerator
/freebsd-12.1/contrib/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp182 Else, enumerator
232 case Else: in nestingString()
425 push(Else); in ParseInstruction()
435 if (pop(BaseName, If, Else)) in ParseInstruction()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DIdenticalExprChecker.cpp138 const Stmt *Else = Stmt2; in VisitIfStmt() local
139 while (const IfStmt *I2 = dyn_cast_or_null<IfStmt>(Else)) { in VisitIfStmt()
149 Else = I2->getElse(); in VisitIfStmt()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DStmt.cpp809 SourceLocation EL, Stmt *Else) in IfStmt() argument
811 bool HasElse = Else != nullptr; in IfStmt()
823 setElse(Else); in IfStmt()
843 Stmt *Then, SourceLocation EL, Stmt *Else) { in Create() argument
844 bool HasElse = Else != nullptr; in Create()
852 IfStmt(Ctx, IL, IsConstexpr, Init, Var, Cond, Then, EL, Else); in Create()
H A DStmtPrinter.cpp261 if (Stmt *Else = If->getElse()) { in PrintRawIfStmt() local
264 if (auto *CS = dyn_cast<CompoundStmt>(Else)) { in PrintRawIfStmt()
268 } else if (auto *ElseIf = dyn_cast<IfStmt>(Else)) { in PrintRawIfStmt()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Lex/
H A DPPConditionalDirectiveRecord.cpp107 void PPConditionalDirectiveRecord::Else(SourceLocation Loc, in Else() function in PPConditionalDirectiveRecord
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCoverageMappingGen.cpp1195 if (const Stmt *Else = S->getElse()) { in VisitIfStmt() local
1197 Gap = findGapAreaBetween(S->getThen(), Else); in VisitIfStmt()
1200 extendRegion(Else); in VisitIfStmt()
1201 OutCount = addCounters(OutCount, propagateCounts(ElseCount, Else)); in VisitIfStmt()
/freebsd-12.1/sys/gnu/dts/arm/
H A Domap3430-sdp.dts39 * Else, use 4 bit mode
/freebsd-12.1/contrib/llvm/tools/clang/lib/Analysis/
H A DBodyFarm.cpp656 Stmt *Else = M.makeReturn(RetVal); in create_OSAtomicCompareAndSwap() local
663 SourceLocation(), Else); in create_OSAtomicCompareAndSwap()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp769 const Stmt *Else, bool CondVal, in CreateIfFixit() argument
775 if (Else) { in CreateIfFixit()
778 FixItHint::CreateRemoval(SourceRange(ElseKwLoc, Else->getEndLoc())); in CreateIfFixit()
782 if (Else) in CreateIfFixit()
784 If->getBeginLoc(), Else->getBeginLoc())); in CreateIfFixit()
H A DJumpDiagnostics.cpp363 if (Stmt *Else = IS->getElse()) { in BuildScopeInformation() local
366 BuildScopeInformation(Else, NewParentScope); in BuildScopeInformation()
/freebsd-12.1/contrib/libc++/include/
H A Ddeque2318 // Else if __base::__map_.size() < __base::__map_.capacity() then we need to allocate 1 buffer
2337 // Else need to allocate 1 buffer, *and* we need to reallocate __map_.
2387 // Else if __nb <= __map_.capacity() - __map_.size() then we need to allocate __nb buffers
2409 // Else need to allocate __nb buffers, *and* we need to reallocate __map_.
2463 // Else if __nb <= __map_.capacity() - __map_.size() then we need to allocate __nb buffers
2479 // Else need to allocate 1 buffer, *and* we need to reallocate __map_.
2527 // Else if __nb <= __map_.capacity() - __map_.size() then we need to allocate __nb buffers
2550 // Else need to allocate __nb buffers, *and* we need to reallocate __map_.
/freebsd-12.1/contrib/llvm/include/llvm-c/
H A DCore.h3401 LLVMBasicBlockRef Then, LLVMBasicBlockRef Else);
3403 LLVMBasicBlockRef Else, unsigned NumCases);
3706 LLVMValueRef Then, LLVMValueRef Else,
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DStmt.h1736 VarDecl *Var, Expr *Cond, Stmt *Then, SourceLocation EL, Stmt *Else);
1746 Stmt *Else = nullptr);
1793 void setElse(Stmt *Else) { in setElse() argument
1796 getTrailingObjects<Stmt *>()[elseOffset()] = Else; in setElse()
/freebsd-12.1/contrib/openmp/runtime/src/
H A Dz_Windows_NT-586_asm.asm945 ; ZF and exchange DL with [rcx]. Else, clear
1052 ; ZF and exchange DL with [rcx]. Else, clear
/freebsd-12.1/contrib/llvm/lib/Transforms/IPO/
H A DLowerTypeTests.cpp726 BasicBlock *Else = Br->getSuccessor(1); in lowerTypeTestCall() local
727 BranchInst *NewBr = BranchInst::Create(Then, Else, OffsetInRange); in lowerTypeTestCall()
733 for (auto &Phi : Else->phis()) in lowerTypeTestCall()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/ASTMatchers/
H A DASTMatchers.h4118 const Stmt *const Else = Node.getElse(); in AST_MATCHER_P() local
4119 return (Else != nullptr && InnerMatcher.matches(*Else, Finder, Builder)); in AST_MATCHER_P()
/freebsd-12.1/contrib/gdb/
H A Dgettext.m439 dnl use this. Else we have to fall back to GNU NLS library.
/freebsd-12.1/contrib/llvm/lib/IR/
H A DCore.cpp2964 LLVMBasicBlockRef Then, LLVMBasicBlockRef Else) { in LLVMBuildCondBr() argument
2965 return wrap(unwrap(B)->CreateCondBr(unwrap(If), unwrap(Then), unwrap(Else))); in LLVMBuildCondBr()
2969 LLVMBasicBlockRef Else, unsigned NumCases) { in LLVMBuildSwitch() argument
2970 return wrap(unwrap(B)->CreateSwitch(unwrap(V), unwrap(Else), NumCases)); in LLVMBuildSwitch()
3661 LLVMValueRef Then, LLVMValueRef Else, in LLVMBuildSelect() argument
3663 return wrap(unwrap(B)->CreateSelect(unwrap(If), unwrap(Then), unwrap(Else), in LLVMBuildSelect()

12