Home
last modified time | relevance | path

Searched refs:Is (Results 1 – 25 of 314) sorted by relevance

12345678910>>...13

/openbsd-src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/
H A DMM.pm54 my %Is = ();
55 $Is{VMS} = $^O eq 'VMS';
56 $Is{OS2} = $^O eq 'os2';
57 $Is{MacOS} = $^O eq 'MacOS';
59 _is_win95() ? $Is{Win95} = 1 : $Is{Win32} = 1;
61 $Is{UWIN} = $^O =~ /^uwin(-nt)?$/;
62 $Is{Cygwin} = $^O eq 'cygwin';
63 $Is{NW5} = $Config{osname} eq 'NetWare'; # intentional
64 $Is{BeOS} = ($^O =~ /beos/i or $^O eq 'haiku');
65 $Is{DOS} = $^O eq 'dos';
[all …]
H A DMM_Unix.pm25 my %Is;
27 $Is{OS2} = $^O eq 'os2';
28 $Is{Win32} = $^O eq 'MSWin32' || $Config{osname} eq 'NetWare';
29 $Is{Dos} = $^O eq 'dos';
30 $Is{VMS} = $^O eq 'VMS';
31 $Is{OSF} = $^O eq 'dec_osf';
32 $Is{IRIX} = $^O eq 'irix';
33 $Is{NetBSD} = $^O eq 'netbsd';
34 $Is{Interix} = $^O eq 'interix';
35 $Is{SunOS4} = $^O eq 'sunos';
[all …]
/openbsd-src/gnu/llvm/libcxx/benchmarks/
H A DVariantBenchmarks.h30 template <std::size_t N, std::size_t... Is>
31 static auto genVariants(std::index_sequence<Is...>) { in genVariants() argument
32 using V = std::variant<S<Is>...>; in genVariants()
34 static constexpr F fs[] = {[] { return V(std::in_place_index<Is>); }...}; in genVariants()
38 v = fs[getRandomInteger(0ul, sizeof...(Is) - 1)](); in genVariants()
H A DCartesianBenchmarks.h39 template <class B, class Args, size_t... Is>
40 void makeBenchmarkFromValuesImpl(const Args& A, std::index_sequence<Is...>) { in makeBenchmarkFromValuesImpl() argument
42 B Bench{std::get<Is>(V)...}; in makeBenchmarkFromValuesImpl()
/openbsd-src/gnu/llvm/clang/include/clang/Tooling/Refactoring/
H A DRefactoringActionRulesInternal.h46 template <typename RuleType, typename... RequirementTypes, size_t... Is>
50 std::index_sequence<Is...>) { in invokeRuleAfterValidatingRequirements() argument
53 std::make_tuple(std::get<Is>(Requirements).evaluate(Context)...); in invokeRuleAfterValidatingRequirements()
54 auto Err = findError(std::get<Is>(Values)...); in invokeRuleAfterValidatingRequirements()
60 RuleType::initiate(Context, std::move((*std::get<Is>(Values)))...); in invokeRuleAfterValidatingRequirements()
86 template <typename... RequirementTypes, size_t... Is>
90 std::index_sequence<Is...>) { in visitRefactoringOptions() argument
91 visitRefactoringOptionsImpl(Visitor, std::get<Is>(Requirements)...); in visitRefactoringOptions()
/openbsd-src/gnu/llvm/llvm/lib/Target/M68k/
H A DM68k.td23 "Is M68000 ISA supported">;
27 "Is M68010 ISA supported",
32 "Is M68020 ISA supported",
37 "Is M68030 ISA supported",
42 "Is M68040 ISA supported",
47 "Is M68060 ISA supported",
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DInterleavedLoadCombinePass.cpp666 std::set<Instruction *> Is; member
766 Result.Is.insert(Old.Is.begin(), Old.Is.end()); in computeFromBCI()
767 Result.Is.insert(BCI); in computeFromBCI()
825 Result.Is.insert(LHS.Is.begin(), LHS.Is.end()); in computeFromSVI()
829 Result.Is.insert(RHS.Is.begin(), RHS.Is.end()); in computeFromSVI()
831 Result.Is.insert(SVI); in computeFromSVI()
883 Result.Is.insert(LI); in computeFromLI()
1126 std::set<Instruction *> Is; in combine() local
1144 Is.insert(VI.Is.begin(), VI.Is.end()); in combine()
1157 for (const auto &I : Is) { in combine()
[all …]
/openbsd-src/gnu/llvm/llvm/tools/llvm-objcopy/
H A Dllvm-objcopy.cpp77 auto Is = [=](StringRef Tool) { in getDriverConfig() local
89 if (Is("bitcode-strip") || Is("bitcode_strip")) in getDriverConfig()
91 else if (Is("strip")) in getDriverConfig()
93 else if (Is("install-name-tool") || Is("install_name_tool")) in getDriverConfig()
/openbsd-src/gnu/usr.bin/perl/cpan/Text-Tabs/t/
H A Dtabs.t36 This Is a test of a line with many embedded tabs
38 This Is a test of a line with many embedded tabs
41 This Is a test of a line with many embedded tabs
43 This Is a test of a line with many embedded tabs
/openbsd-src/gnu/llvm/llvm/tools/llvm-driver/
H A Dllvm-driver.cpp51 auto Is = [=](StringRef Tool) { in findTool() local
64 if (Is(tool)) \ in findTool()
68 if (Is("llvm")) in findTool()
/openbsd-src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/t/
H A DMM_Unix.t29 my $os = ($ExtUtils::MM_Unix::Is{OS2} || 0)
30 + ($ExtUtils::MM_Unix::Is{Win32} || 0)
31 + ($ExtUtils::MM_Unix::Is{Dos} || 0)
32 + ($ExtUtils::MM_Unix::Is{VMS} || 0);
/openbsd-src/gnu/usr.bin/cvs/os2/
H A Dtest-makefile9 CINC = -Is:/ibmcpp/include -Is:/toolkt21/c/os2h
31 CFLAGS += -DTCPIP_IBM -Is:\ibmtcpip\include
/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DFormat.h93 template <std::size_t... Is>
95 std::index_sequence<Is...>) const {
97 return _snprintf(Buffer, BufferSize, Fmt, std::get<Is>(Vals)...);
99 return snprintf(Buffer, BufferSize, Fmt, std::get<Is>(Vals)...);
/openbsd-src/gnu/llvm/llvm/include/llvm/MC/
H A DMachineLocation.h48 void setIsRegister(bool Is) { IsRegister = Is; } in setIsRegister() argument
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DEHScopeStack.h201 template <std::size_t... Is>
202 T restore(CodeGenFunction &CGF, std::index_sequence<Is...>) {
205 return T{DominatingValue<As>::restore(CGF, std::get<Is>(Saved))...};
/openbsd-src/gnu/usr.bin/binutils-2.17/binutils/
H A Dconfigure.in102 [Is fopen64 available?])
117 [Is stat64 available?])
136 [Is the type time_t defined in <time.h>?])
146 [Is the type time_t defined in <sys/types.h>?])
156 [Is the prototype for getopt in <unistd.h> in the expected format?])
H A Dconfig.in46 /* Is the prototype for getopt in <unistd.h> in the expected format? */
75 /* Is fopen64 available? */
135 /* Is stat64 available? */
177 /* Is the type time_t defined in <time.h>? */
180 /* Is the type time_t defined in <sys/types.h>? */
/openbsd-src/gnu/usr.bin/perl/dist/Exporter/t/
H A DExporter.t73 BEGIN {*is = \&Is};
74 sub Is { 'Is' };
/openbsd-src/regress/lib/libcrypto/x509/bettertls/certificates/
H A D2977.crt20 gHw7nQaQLorwZs+a8a+6IKxMhdsCunC1snLUv9yTvv2kzI9xvQOAD3SQ/Is+Lh3n
H A D2547.key13 Yjqo07ECgYEA/VYvhZxo+3643aFkopE7IbtMd4xnBUjL83H07/3/2Is/cEeN7XJG
H A D71.key6 laMYNdMrtKdy9YXyTxiN9e0aNBKF774b1ihSJ8Dq6u4KIi2QYhoEj62zxIuyX/Is
H A D465.key12 bpIJnSEOMdEWp524JsGN8GevKR1wGYkA3MJ+YgrhGPGMLZc2rHt8l6A1RiYFf/Is
/openbsd-src/gnu/usr.bin/perl/lib/perl5db/t/
H A Dtest-a-statement-115 9012345678901Is this yet another test?
/openbsd-src/gnu/usr.bin/binutils/binutils/
H A Dconfig.in166 /* Is fopen64 available? */
172 /* Is the type time_t defined in <time.h>? */
175 /* Is the type time_t defined in <sys/types.h>? */
/openbsd-src/regress/bin/ksh/
H A Dtrap.t33 /Is a directory/
47 /Is a directory/

12345678910>>...13