Home
last modified time | relevance | path

Searched refs:What (Results 1 – 25 of 382) sorted by relevance

12345678910>>...16

/openbsd-src/gnu/usr.bin/perl/dist/Tie-File/
H A DChangeLog5 What's new in version 1.06
13 What's new in version 1.05
16 What's new in version 1.04
19 What's new in version 1.03
28 What's new in version 1.01:
32 What's new in version 1.00:
35 What's new in version 0.99:
38 What's new in version 0.98:
41 What's new in version 0.97_01:
51 What's new in version 0.96:
[all …]
/openbsd-src/gnu/usr.bin/cvs/lib/
H A Dstrstr.c18 char *strstr(Source, What) in strstr() argument
20 register const char *What;
27 if ((WhatChar = *What++) != 0) {
28 Length = strlen(What);
35 } while (strncmp(Source, What, Length) != 0);
/openbsd-src/gnu/usr.bin/perl/cpan/Pod-Simple/t/
H A Dverb_fmt.t25 # What do you want? i like pie. [or whatever]
32 What do you want? i like pie. [or whatever]
38 }) => qq{<Document><VerbatimFormatted\nxml:space="preserve"> <VerbatimB>What do you want?</VerbatimB> i like pie. <VerbatimI>[or whatever]</VerbatimI>\n Hooboy.</VerbatimFormatted></Document>}
45 What do you want? i like pie. [or whatever]
51 }) => qq{<Document><VerbatimFormatted\nxml:space="preserve"> <VerbatimB>What do you want?</VerbatimB> i like pie. <VerbatimI>[or whatever]</VerbatimI>\n Hooboy.</VerbatimFormatted></Document>}
58 What do you want? i like pie. [or whatever]
63 }) => qq{<Document><VerbatimFormatted\nxml:space="preserve"> <VerbatimB>What do you want?</VerbatimB> i like pie. <VerbatimI>[or whatever]</VerbatimI></VerbatimFormatted></Document>}
70 What do you want? i like pie. [or whatever]
72 ) => qq{<Document><VerbatimFormatted\nxml:space="preserve"> <VerbatimB>What do you want?</VerbatimB> i like pie. <VerbatimI>[or whatever]</VerbatimI></VerbatimFormatted></Document>}
79 What d
[all...]
/openbsd-src/gnu/usr.bin/perl/cpan/perlfaq/lib/
H A Dperlfaq.pod41 =head2 What if my question isn't answered in the FAQ?
79 What is Perl?
91 What is Raku (Perl 6)?
119 What's the difference between "perl" and "Perl"?
123 What is a JAPH?
140 What machines support Perl? Where do I get it?
160 What modules and extensions are available for Perl? What is CPAN?
168 What is perl.com? Perl Mongers? pm.org? perl.org? cpan.org?
188 What mailin
[all...]
H A Dperlfaq2.pod19 =head2 What machines support Perl? Where do I get it?
84 =head2 What modules and extensions are available for Perl? What is CPAN?
126 =head2 What is perl.com? Perl Mongers? pm.org? perl.org? cpan.org?
161 See L<What is CPAN?|/"What modules and extensions are available for Perl? What is CPAN?">.
200 =head2 What mailing lists are there for Perl?
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DRangedConstraintManager.h197 RangeSet intersect(RangeSet What, llvm::APSInt Lower, llvm::APSInt Upper);
205 RangeSet intersect(RangeSet What, llvm::APSInt Point);
239 RangeSet negate(RangeSet What);
261 RangeSet castTo(RangeSet What, APSIntType Ty);
262 RangeSet castTo(RangeSet What, QualType T);
281 ContainerType truncateTo(RangeSet What, APSIntType Ty);
287 ContainerType convertTo(RangeSet What, APSIntType Ty);
292 ContainerType promoteTo(RangeSet What, APSIntType Ty);
/openbsd-src/gnu/usr.bin/perl/cpan/podlators/t/data/snippets/text/
H A Dc-with-spaces7 What does C<< this. >> end up looking like?
11 What does "this." end up looking like?
/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DMemorySSAUpdater.h128 void moveBefore(MemoryUseOrDef *What, MemoryUseOrDef *Where);
129 void moveAfter(MemoryUseOrDef *What, MemoryUseOrDef *Where);
130 void moveToPlace(MemoryUseOrDef *What, BasicBlock *BB,
247 void moveTo(MemoryUseOrDef *What, BasicBlock *BB, WhereType Where);
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp474 RangeSet RangeSet::Factory::intersect(RangeSet What, llvm::APSInt Lower, in intersect() argument
476 if (What.isEmpty() || !What.pin(Lower, Upper)) in intersect()
492 if (What.getMaxValue() < Lower || Upper < What.getMinValue()) in intersect()
505 if (What.getMaxValue() < Lower && Upper < What.getMinValue()) in intersect()
514 return intersect(*What.Impl, DummyContainer); in intersect()
611 RangeSet RangeSet::Factory::negate(RangeSet What) { in negate() argument
612 if (What.isEmpty()) in negate()
615 const llvm::APSInt SampleValue = What.getMinValue(); in negate()
620 Result.reserve(What.size() + (SampleValue == MIN)); in negate()
623 const_iterator It = What.begin(); in negate()
[all …]
/openbsd-src/gnu/usr.bin/perl/pod/
H A Dperlunifaq.pod19 =head2 What character encodings does Perl support?
34 =head2 What about binary data, like images?
42 appropriate encoding, then join them with binary strings. See also: "What if I
51 =head2 What if I don't decode?
64 =head2 What if I don't encode?
112 =head2 What if I don't know which encoding was used?
214 =head2 What are C<decode_utf8> and C<encode_utf8>?
219 L</What's the difference between UTF-8 and utf8?> below.
221 =head2 What is a "wide character"?
238 =head2 What is "the UTF8 flag"?
[all …]
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DVforkChecker.cpp57 void reportBug(const char *What, CheckerContext &C,
123 void VforkChecker::reportBug(const char *What, CheckerContext &C, in reportBug() argument
133 os << What << " is prohibited after a successful vfork"; in reportBug()
/openbsd-src/regress/bin/ksh/
H A Dbrkcont.t53 What if break used outside of any loops
64 What if break N used when only N-1 loops
156 What if continue used outside of any loops
167 What if continue N used when only N-1 loops
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DMemorySSAUpdater.cpp1166 void MemorySSAUpdater::moveTo(MemoryUseOrDef *What, BasicBlock *BB, in moveTo() argument
1169 for (auto *U : What->users()) in moveTo()
1174 What->replaceAllUsesWith(What->getDefiningAccess()); in moveTo()
1177 MSSA->moveTo(What, BB, Where); in moveTo()
1180 if (auto *MD = dyn_cast<MemoryDef>(What)) in moveTo()
1183 insertUse(cast<MemoryUse>(What), /*RenameUses=*/true); in moveTo()
1191 void MemorySSAUpdater::moveBefore(MemoryUseOrDef *What, MemoryUseOrDef *Where) { in moveBefore() argument
1192 moveTo(What, Where->getBlock(), Where->getIterator()); in moveBefore()
1196 void MemorySSAUpdater::moveAfter(MemoryUseOrDef *What, MemoryUseOrDef *Where) { in moveAfter() argument
1197 moveTo(What, Where->getBlock(), ++Where->getIterator()); in moveAfter()
[all …]
H A DMemorySSA.cpp1618 void MemorySSA::insertIntoListsBefore(MemoryAccess *What, const BasicBlock *BB, in insertIntoListsBefore() argument
1622 Accesses->insert(AccessList::iterator(InsertPt), What); in insertIntoListsBefore()
1623 if (!isa<MemoryUse>(What)) { in insertIntoListsBefore()
1630 Defs->push_back(*What); in insertIntoListsBefore()
1632 Defs->insert(InsertPt->getDefsIterator(), *What); in insertIntoListsBefore()
1638 Defs->push_back(*What); in insertIntoListsBefore()
1640 Defs->insert(InsertPt->getDefsIterator(), *What); in insertIntoListsBefore()
1646 void MemorySSA::prepareForMoveTo(MemoryAccess *What, BasicBlock *BB) { in prepareForMoveTo() argument
1648 removeFromLists(What, false); in prepareForMoveTo()
1653 if (auto *MD = dyn_cast<MemoryDef>(What)) in prepareForMoveTo()
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/API/
H A DHOWTO.pod10 =head2 What distribution contains a particular module?
20 =head2 What modules does a particular distribution contain?
/openbsd-src/gnu/usr.bin/cvs/doc/
H A Dcvs.info-9163 * Contributors (CVS program): What is CVS?.
171 * Credits (CVS program): What is CVS?.
178 * CVS, history of: What is CVS?.
179 * CVS, introduction to: What is CVS?.
311 * History of CVS: What is CVS?.
331 * Introduction to CVS: What is CVS?.
353 * List, mailing list: What is CVS?.
377 * Mailing list: What is CVS?.
413 * Newsgroups: What is CVS?.
537 * Source, getting CVS source: What is CVS?.
[all …]
/openbsd-src/gnu/usr.bin/binutils/bfd/doc/
H A Dbfd.texinfo126 * What BFD Version 2 Can Do:: What BFD Version 2 Can Do
152 @node How It Works, What BFD Version 2 Can Do, History, Overview
203 @node What BFD Version 2 Can Do, , How It Works, Overview
204 @section What BFD Version 2 Can Do
298 * What to Put Where::
309 @node What to Put Where, aout, BFD back ends, BFD back ends
312 @node aout, coff, What to Put Where, BFD back ends
/openbsd-src/gnu/usr.bin/binutils-2.17/bfd/doc/
H A Dbfd.texinfo113 * What BFD Version 2 Can Do:: What BFD Version 2 Can Do
139 @node How It Works, What BFD Version 2 Can Do, History, Overview
190 @node What BFD Version 2 Can Do, , How It Works, Overview
191 @section What BFD Version 2 Can Do
285 * What to Put Where::
296 @node What to Put Where, aout, BFD back ends, BFD back ends
299 @node aout, coff, What to Put Where, BFD back ends
/openbsd-src/gnu/gcc/libstdc++-v3/docs/html/27_io/
H A Dbinary_iostreams_kanze.txt40 |> What do you think about this choice?
42 What other choice is possible? It's not reasonable to ask the standard
/openbsd-src/gnu/usr.bin/perl/Porting/
H A Dsecurity_template.pod35 =head2 What is the nature of the vulnerability?
39 =head2 What potential exploits are enabled by this vulnerability?
/openbsd-src/gnu/lib/libstdc++/libstdc++/docs/html/27_io/
H A Dbinary_iostreams_kanze.txt40 |> What do you think about this choice?
42 What other choice is possible? It's not reasonable to ask the standard
/openbsd-src/gnu/usr.bin/texinfo/
H A DREADME107 Makefile.am What Automake uses to make a Makefile.in.
108 Makefile.in What `configure' uses to make a Makefile,
110 configure.ac What Autoconf uses to create `configure'.
/openbsd-src/regress/usr.bin/dc/
H A Dt7.in3 from "Through the Looking-Glass and What Alice Found There", 1872]s.
/openbsd-src/gnu/lib/libstdc++/libstdc++/docs/html/
H A Dabi.txt6 I. What is an ABI? What's covered? What's not?
10 - What's the deal with C++? Why can't different compiler's object
17 - What's an ABI?
31 - How can this complexity be managed? What does C++ versioning mean?
190 - What configure options impact symbol versioning?
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dunwind-dw2-fde-glibc.c170 # error What is DW_EH_PE_datarel base on this platform? in _Unwind_IteratePhdrCallback()
174 # error What is DW_EH_PE_textrel base on this platform? in _Unwind_IteratePhdrCallback()

12345678910>>...16