| /openbsd-src/gnu/usr.bin/perl/cpan/Term-Cap/ |
| H A D | test.pl | 46 my $path = join '', Term::Cap::termcap_path(); 54 ok( grep($file, Term::Cap::termcap_path()), 58 ok( grep($file, Term::Cap::termcap_path()), 98 eval { local $^W = 1; $t = Term::Cap->Tgetent($vals) }; 105 eval { local $^W = 0; $t = Term::Cap->Tgetent($vals) }; 111 eval { $t = Term::Cap->Tgetent($vals) }; 123 eval { $t = Term::Cap->Tgetent($vals) }; 133 eval { $t = Term::Cap->Tgetent($vals) }; 146 $t = Term::Cap->Tgetent($vals); 169 my $foo = Term::Cap->Tgetent();
|
| H A D | Changes | 1 Revision history for Perl extension Term::Cap. 70 - Removed change log from Cap.pm
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/SPIRV/ |
| H A D | SPIRVModuleAnalysis.h | 46 const std::optional<Capability::Capability> Cap; member 52 std::optional<Capability::Capability> Cap = {}, 55 : IsSatisfiable(IsSatisfiable), Cap(Cap), Exts(Exts), MinVer(MinVer), in IsSatisfiable() 57 Requirements(Capability::Capability Cap) : Requirements(true, {Cap}) {} in Requirements() 110 bool isCapabilityAvailable(Capability::Capability Cap) const { in isCapabilityAvailable() 111 return AvailableCaps.contains(Cap); in isCapabilityAvailable()
|
| H A D | SPIRVModuleAnalysis.cpp | 73 for (auto Cap : ReqCaps) { // Only need 1 of the capabilities to work. in getSymbolicOperandRequirements() local 74 if (Reqs.isCapabilityAvailable(Cap)) in getSymbolicOperandRequirements() 75 return {true, {Cap}, {}, ReqMinVer, ReqMaxVer}; in getSymbolicOperandRequirements() 241 auto Cap = SPIRV::Capability::Capability(MI.getOperand(0).getImm()); in processDefInstrs() local 242 MAI.Reqs.addCapability(Cap); in processDefInstrs() 439 for (const auto &Cap : ToPrune) { in pruneCapabilities() local 440 AllCaps.insert(Cap); in pruneCapabilities() 441 auto FoundIndex = std::find(MinimalCaps.begin(), MinimalCaps.end(), Cap); in pruneCapabilities() 445 getSymbolicOperandCapabilities(OperandCategory::CapabilityOperand, Cap); in pruneCapabilities() 451 for (const auto &Cap : ToAdd) { in addCapabilities() local [all …]
|
| H A D | SPIRVAsmPrinter.cpp | 328 for (const auto &Cap : MAI->Reqs.getMinimalCapabilities()) { in outputGlobalRequirements() local 331 Inst.addOperand(MCOperand::createImm(Cap)); in outputGlobalRequirements()
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CGBlocks.h | 208 const BlockDecl::Capture *Cap) { in makeIndex() argument 217 v.Cap = Cap; in makeIndex() 222 const BlockDecl::Capture *Cap) { in makeConstant() argument 225 v.Cap = Cap; in makeConstant() 237 const BlockDecl::Capture *Cap; variable 298 Captures[C.Cap->getVariable()] = &C; in buildCaptureMap()
|
| H A D | CGBlocks.cpp | 102 static std::string getBlockCaptureStr(const CGBlockInfo::Capture &Cap, 119 for (auto &Cap : BlockInfo.SortedCaptures) { in getBlockDescriptorName() local 120 if (Cap.isConstantOrTrivial()) in getBlockDescriptorName() 123 Name += llvm::to_string(Cap.getOffset().getQuantity()); in getBlockDescriptorName() 125 if (Cap.CopyKind == Cap.DisposeKind) { in getBlockDescriptorName() 128 assert(Cap.CopyKind != BlockCaptureEntityKind::None && in getBlockDescriptorName() 130 Name += getBlockCaptureStr(Cap, CaptureStrKind::Merged, in getBlockDescriptorName() 136 Name += getBlockCaptureStr(Cap, CaptureStrKind::CopyHelper, in getBlockDescriptorName() 138 Name += getBlockCaptureStr(Cap, CaptureStrKind::DisposeHelper, in getBlockDescriptorName() 1711 static std::string getBlockCaptureStr(const CGBlockInfo::Capture &Cap, in getBlockCaptureStr() argument [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Support/ |
| H A D | ArrayRecycler.h | 125 T *allocate(Capacity Cap, AllocatorType &Allocator) { in allocate() argument 127 if (T *Ptr = pop(Cap.getBucket())) in allocate() 130 return static_cast<T*>(Allocator.Allocate(sizeof(T)*Cap.getSize(), Align)); in allocate() 137 void deallocate(Capacity Cap, T *Ptr) { in deallocate() argument 138 push(Cap.getBucket(), Ptr); in deallocate()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/TableGen/ |
| H A D | DirectiveEmitter.h | 145 bool Cap = true; in getFormattedParserClassName() local 146 std::transform(N.begin(), N.end(), N.begin(), [&Cap](unsigned char C) { in getFormattedParserClassName() 147 if (Cap == true) { in getFormattedParserClassName() 149 Cap = false; in getFormattedParserClassName() 151 Cap = true; in getFormattedParserClassName()
|
| /openbsd-src/gnu/usr.bin/perl/cpan/podlators/t/data/ |
| H A D | termcap | 3 # Term::Cap 1.16 will try to fall back to infocmp or a dumb terminal setting 5 # Term::Cap (see <https://rt.cpan.org/Public/Bug/Display.html?id=96695>), but
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | ScopeInfo.cpp | 228 for (auto &Cap : Captures) in isVLATypeCaptured() local 229 if (Cap.isVLATypeCapture() && Cap.getCapturedVLAType() == VAT) in isVLATypeCaptured()
|
| H A D | SemaLambda.cpp | 1610 ExprResult Sema::BuildCaptureInit(const Capture &Cap, in BuildCaptureInit() argument 1614 if (Cap.isVLATypeCapture()) in BuildCaptureInit() 1618 if (Cap.isInitCapture()) in BuildCaptureInit() 1619 return cast<VarDecl>(Cap.getVariable())->getInit(); in BuildCaptureInit() 1625 ImplicitCaptureLoc.isValid() ? ImplicitCaptureLoc : Cap.getLocation(); in BuildCaptureInit() 1641 if (Cap.isThisCapture()) { in BuildCaptureInit() 1644 if (Cap.isCopyCapture()) in BuildCaptureInit() 1649 assert(Cap.isVariableCapture() && "unknown kind of capture"); in BuildCaptureInit() 1650 ValueDecl *Var = Cap.getVariable(); in BuildCaptureInit() 1667 Name, Cap.getCaptureType(), Loc); in BuildCaptureInit()
|
| H A D | SemaStmt.cpp | 4663 for (const sema::Capture &Cap : RSI->Captures) { in buildCapturedStmtCaptureList() local 4664 if (Cap.isInvalid()) in buildCapturedStmtCaptureList() 4668 ExprResult Init = S.BuildCaptureInit(Cap, Cap.getLocation(), in buildCapturedStmtCaptureList() 4675 FieldDecl *Field = S.BuildCaptureField(RSI->TheRecordDecl, Cap); in buildCapturedStmtCaptureList() 4678 if (Cap.isThisCapture()) { in buildCapturedStmtCaptureList() 4679 Captures.push_back(CapturedStmt::Capture(Cap.getLocation(), in buildCapturedStmtCaptureList() 4681 } else if (Cap.isVLATypeCapture()) { in buildCapturedStmtCaptureList() 4683 CapturedStmt::Capture(Cap.getLocation(), CapturedStmt::VCK_VLAType)); in buildCapturedStmtCaptureList() 4685 assert(Cap.isVariableCapture() && "unknown kind of capture"); in buildCapturedStmtCaptureList() 4688 S.setOpenMPCaptureKind(Field, Cap.getVariable(), RSI->OpenMPLevel); in buildCapturedStmtCaptureList() [all …]
|
| H A D | SemaExceptionSpec.cpp | 1196 Cap = Lambda->capture_init_begin(), in canThrow() local 1198 Cap != CapEnd; ++Cap) in canThrow() 1199 CT = mergeCanThrow(CT, canThrow(*Cap)); in canThrow()
|
| /openbsd-src/gnu/usr.bin/perl/cpan/podlators/lib/Pod/Text/ |
| H A D | Termcap.pm | 21 use Term::Cap; 47 # Get data from Term::Cap if possible. 50 my $term = Tgetent Term::Cap { TERM => undef, OSPEED => $ospeed }; 230 This module uses L<Term::Cap> to find the correct terminal settings. See the 250 Term::Cap was not able to find usable escape sequences, instead producing 273 L<Pod::Text>, L<Pod::Simple>, L<Term::Cap>
|
| /openbsd-src/gnu/usr.bin/perl/ext/re/ |
| H A D | re.pm | 42 require Term::Cap; 44 my $terminal = Tgetent Term::Cap ({OSPEED => 9600}); # Avoid warning.
|
| /openbsd-src/gnu/usr.bin/perl/dist/Term-ReadLine/lib/Term/ |
| H A D | ReadLine.pm | 378 require Term::Cap; 379 $terminal = Tgetent Term::Cap ({OSPEED => 9600}); # Avoid warning.
|
| /openbsd-src/usr.sbin/pkg_add/OpenBSD/ProgressMeter/ |
| H A D | Term.pm | 78 use Term::Cap; 105 Term::Cap->Tgetent({ OSPEED => $termios->getospeed});
|
| /openbsd-src/gnu/usr.bin/perl/ext/re/t/ |
| H A D | re.t | 78 package Term::Cap;
|
| /openbsd-src/lib/libelf/ |
| H A D | libelf_align.c | 64 [ELF_T_CAP] = MALIGN(Cap),
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/ |
| H A D | MachineFunction.h | 1028 MachineOperand *allocateOperandArray(OperandCapacity Cap) { 1029 return OperandRecycler.allocate(Cap, Allocator); 1035 void deallocateOperandArray(OperandCapacity Cap, MachineOperand *Array) { 1036 OperandRecycler.deallocate(Cap, Array);
|
| /openbsd-src/gnu/usr.bin/texinfo/doc/ |
| H A D | txi-es.tex | 21 \gdef\putwordChapter{Cap\'{\char16{}}tulo}
|
| H A D | txi-pt.tex | 23 \gdef\putwordChapter{Cap\'\ptexi tulo}
|
| /openbsd-src/gnu/llvm/clang/lib/Analysis/ |
| H A D | ThreadSafety.cpp | 900 CapabilityExpr Cap; member 927 const auto *Entry = FSet.findLock(FactMan, UnderlyingMutex.Cap); in handleRemovalFromIntersection() 932 Handler.handleMutexHeldEndOfScope(UnderlyingMutex.Cap.getKind(), in handleRemovalFromIntersection() 933 UnderlyingMutex.Cap.toString(), loc(), in handleRemovalFromIntersection() 943 lock(FSet, FactMan, UnderlyingMutex.Cap, entry.kind(), entry.loc(), in handleLock() 946 unlock(FSet, FactMan, UnderlyingMutex.Cap, entry.loc(), &Handler); in handleLock() 960 unlock(FSet, FactMan, UnderlyingMutex.Cap, UnlockLoc, TSHandler); in handleUnlock() 965 lock(FSet, FactMan, UnderlyingMutex.Cap, kind, UnlockLoc, TSHandler); in handleUnlock()
|
| /openbsd-src/regress/usr.bin/make/ |
| H A D | mk16 | 205 Term::Cap 3p lib/Term/Cap.pm \
|