| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
| H A D | FormatVariadic.cpp | 27 bool formatv_object_base::consumeFieldLayout(StringRef &Spec, AlignStyle &Where, in consumeFieldLayout() argument 32 if (Spec.empty()) in consumeFieldLayout() 35 if (Spec.size() > 1) { in consumeFieldLayout() 43 if (auto Loc = translateLocChar(Spec[1])) { in consumeFieldLayout() 44 Pad = Spec[0]; in consumeFieldLayout() 46 Spec = Spec.drop_front(2); in consumeFieldLayout() 47 } else if (auto Loc = translateLocChar(Spec[0])) { in consumeFieldLayout() 49 Spec = Spec.drop_front(1); in consumeFieldLayout() 53 bool Failed = Spec.consumeInteger(0, Align); in consumeFieldLayout() 58 formatv_object_base::parseReplacementItem(StringRef Spec) { in parseReplacementItem() argument [all …]
|
| H A D | AArch64TargetParser.cpp | 234 bool AArch64::parseBranchProtection(StringRef Spec, ParsedBranchProtection &PBP, in parseBranchProtection() argument 237 if (Spec == "none") in parseBranchProtection() 240 if (Spec == "standard") { in parseBranchProtection() 247 Spec.split(Opts, "+"); in parseBranchProtection()
|
| H A D | NativeFormatting.cpp | 182 SmallString<8> Spec; in write_double() local 183 llvm::raw_svector_ostream Out(Spec); in write_double() 215 len = format(Spec.c_str(), N).snprint(buf, sizeof(buf)); in write_double() 242 format(Spec.c_str(), N).snprint(Buf, sizeof(Buf)); in write_double()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/test/recipes/ |
| H A D | 15-test_out_option.t | 13 use File::Spec; 33 my $path = File::Spec->canonpath('./'); 40 my $path = File::Spec->canonpath('randomname.bin'); 52 } while (-d File::Spec->catdir('.', $rand_path)); 55 my $path = File::Spec->canonpath($rand_path); 65 my $path = File::Spec->canonpath(File::Spec->devnull());
|
| H A D | 04-test_provider_pkey.t | 10 use File::Spec; 16 $ENV{OPENSSL_CONF} = File::Spec->devnull();
|
| H A D | 04-test_provider_fallback.t | 10 use File::Spec; 16 $ENV{OPENSSL_CONF} = File::Spec->devnull();
|
| H A D | 90-test_store.t | 9 use File::Spec::Functions; 555 ($vol, $dir, $file) = File::Spec->splitpath($file, $isdir // 0); 558 $dir = join('/', File::Spec->splitdir($dir)); 596 return File::Spec->rel2abs($file);
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/test/recipes/ |
| H A D | 15-test_out_option.t | 13 use File::Spec; 33 my $path = File::Spec->canonpath('./'); 40 my $path = File::Spec->canonpath('randomname.bin'); 52 } while (-d File::Spec->catdir('.', $rand_path)); 55 my $path = File::Spec->canonpath($rand_path); 65 my $path = File::Spec->canonpath(File::Spec->devnull());
|
| H A D | 90-test_store.t | 9 use File::Spec::Functions; 445 ($vol, $dir, $file) = File::Spec->splitpath($file, $isdir // 0); 448 $dir = join('/', File::Spec->splitdir($dir)); 486 return File::Spec->rel2abs($file);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFAbbreviationDeclaration.cpp | 132 for (const AttributeSpec &Spec : AttributeSpecs) { in dump() local 133 OS << formatv("\t{0}\t{1}", Spec.Attr, Spec.Form); in dump() 134 if (Spec.isImplicitConst()) in dump() 135 OS << '\t' << Spec.getImplicitConstValue(); in dump() 173 const AttributeSpec &Spec = AttributeSpecs[*MatchAttrIndex]; in getAttributeValue() local 174 if (Spec.isImplicitConst()) in getAttributeValue() 175 return DWARFFormValue::createFromSValue(Spec.Form, in getAttributeValue() 176 Spec.getImplicitConstValue()); in getAttributeValue() 178 DWARFFormValue FormValue(Spec.Form); in getAttributeValue()
|
| H A D | DWARFContext.cpp | 1228 DILineInfoSpecifier Spec) { in getLineInfoForAddress() argument 1236 CU, Address.Address, Spec.FNKind, Spec.FLIKind, Result.FunctionName, in getLineInfoForAddress() 1238 if (Spec.FLIKind != FileLineInfoKind::None) { in getLineInfoForAddress() 1242 Spec.FLIKind, Result); in getLineInfoForAddress() 1249 object::SectionedAddress Address, uint64_t Size, DILineInfoSpecifier Spec) { in getLineInfoForAddressRange() argument 1259 getFunctionNameAndStartLineForAddress(CU, Address.Address, Spec.FNKind, in getLineInfoForAddressRange() 1260 Spec.FLIKind, FunctionName, in getLineInfoForAddressRange() 1265 if (Spec.FLIKind == FileLineInfoKind::None) { in getLineInfoForAddressRange() 1289 Spec.FLIKind, Result.FileName); in getLineInfoForAddressRange() 1304 DILineInfoSpecifier Spec) { in getInliningInfoForAddress() argument [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| H A D | FormatVariadic.h | 50 : Type(ReplacementType::Literal), Spec(Literal) {} in ReplacementItem() 51 ReplacementItem(StringRef Spec, size_t Index, size_t Align, AlignStyle Where, in ReplacementItem() 53 : Type(ReplacementType::Format), Spec(Spec), Index(Index), Align(Align), in ReplacementItem() 57 StringRef Spec; member 70 static bool consumeFieldLayout(StringRef &Spec, AlignStyle &Where, 89 S << R.Spec; in format() 93 S << R.Spec; in format() 105 static Optional<ReplacementItem> parseReplacementItem(StringRef Spec);
|
| /netbsd-src/external/gpl3/autoconf/dist/lib/Autom4te/ |
| H A D | Configure_ac.pm | 74 File::Spec->canonpath (File::Spec->catfile ($directory, 'configure.ac')); 76 File::Spec->canonpath (File::Spec->catfile ($directory, 'configure.in'));
|
| H A D | FileUtils.pm | 100 use File::Spec; 108 return File::Spec->canonpath ($file_name) 111 if (!File::Spec->file_name_is_absolute ($file_name)) 115 return File::Spec->canonpath (File::Spec->catfile ($path, $file_name)) 116 if -e File::Spec->catfile ($path, $file_name)
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | TFUtils.cpp | 91 const auto &Spec = LoggedSpec.Spec; in writeRawTensorsAsFeatureLists() local 95 if (Spec.isElementType<int64_t>()) { in writeRawTensorsAsFeatureLists() 98 writeTensorValues<int64_t>(OutFile, Data, Spec.getElementCount()); in writeRawTensorsAsFeatureLists() 100 } else if (Spec.isElementType<int32_t>()) { in writeRawTensorsAsFeatureLists() 103 writeTensorValues<int32_t>(OutFile, Data, Spec.getElementCount()); in writeRawTensorsAsFeatureLists() 106 } else if (Spec.isElementType<float>()) { in writeRawTensorsAsFeatureLists() 109 writeTensorValues<float>(OutFile, Data, Spec.getElementCount()); in writeRawTensorsAsFeatureLists() 119 << (LoggedSpec.LoggingName ? *LoggedSpec.LoggingName : Spec.name()) in writeRawTensorsAsFeatureLists() 122 size_t TensorByteSize = Spec.getElementCount() * Spec.getElementByteSize(); in writeRawTensorsAsFeatureLists() 482 size_t Tensor0Size = FeatureSpecs[0].Spec.getElementCount() * in print() [all …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/ |
| H A D | configdata.pm.in | 9 use File::Spec::Unix; 10 use File::Spec; 24 (my $vol, my $dirs, my $file) = File::Spec->splitpath($path); 25 my @dirs = File::Spec->splitdir($dirs); 29 $dirs = File::Spec::Unix->catdir('', $vol, @dirs); 30 $path = File::Spec::Unix->catpath('', $dirs, $file); 36 return _fixup_path(File::Spec->catdir($config{sourcedir}, @_)) 39 return _fixup_path(File::Spec->catfile($config{sourcedir}, @_)) 78 use File::Spec::Functions; 128 use File::Spec::Functions;
|
| /netbsd-src/external/gpl3/gdb/dist/sim/testsuite/frv/fr400/ |
| H A D | csdiv.cgs | 24 ; Special case from the Arch Spec Vol 2 43 ; Special case from the Arch Spec Vol 2 62 ; Special case from the Arch Spec Vol 2 87 ; Special case from the Arch Spec Vol 2 97 ; Special case from the Arch Spec Vol 2 116 ; Special case from the Arch Spec Vol 2 141 ; Special case from the Arch Spec Vol 2 166 ; Special case from the Arch Spec Vol 2
|
| /netbsd-src/external/gpl3/gdb/dist/sim/testsuite/frv/ |
| H A D | csdiv.cgs | 24 ; Special case from the Arch Spec Vol 2 44 ; Special case from the Arch Spec Vol 2 63 ; Special case from the Arch Spec Vol 2 88 ; Special case from the Arch Spec Vol 2 99 ; Special case from the Arch Spec Vol 2 118 ; Special case from the Arch Spec Vol 2 143 ; Special case from the Arch Spec Vol 2 168 ; Special case from the Arch Spec Vol 2
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Rename/ |
| H A D | USRFindingAction.cpp | 133 for (const auto *Spec : PartialSpecs) in handleClassTemplateDecl() local 134 addUSRsOfCtorDtors(Spec); in handleClassTemplateDecl() 148 llvm::for_each(VTD->specializations(), [&](const auto *Spec) { in handleVarTemplateDecl() argument 149 USRSet.insert(getUSRForDecl(Spec)); in handleVarTemplateDecl() 153 llvm::for_each(PartialSpecs, [&](const auto *Spec) { in handleVarTemplateDecl() argument 154 USRSet.insert(getUSRForDecl(Spec)); in handleVarTemplateDecl()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/ |
| H A D | AtomicChange.cpp | 303 const ApplyChangesSpec &Spec) { in applyAtomicChanges() argument 305 createReplacementsForHeaders(FilePath, Code, Changes, Spec.Style); in applyAtomicChanges() 326 if (Spec.Cleanup) { in applyAtomicChanges() 328 format::cleanupAroundReplacements(Code, AllReplaces, Spec.Style); in applyAtomicChanges() 346 Spec.Style, *ChangedCode, AllReplaces.getAffectedRanges(), FilePath); in applyAtomicChanges() 356 *ChangedCode, Spec.Style.ColumnLimit, Spec.Format, AllReplaces); in applyAtomicChanges() 359 format::reformat(Spec.Style, *ChangedCode, FormatRanges, FilePath); in applyAtomicChanges()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/ |
| H A D | BytesOutputStyle.cpp | 481 for (const auto &Spec : Specs) { in dumpStreamBytes() local 483 if (Spec.SI >= StreamPurposes.size()) { in dumpStreamBytes() 484 P.formatLine("Stream {0}: Not present", Spec.SI); in dumpStreamBytes() 487 P.formatMsfStreamData("Data", File, Spec.SI, in dumpStreamBytes() 488 StreamPurposes[Spec.SI].getShortName(), Spec.Begin, in dumpStreamBytes() 489 Spec.Size); in dumpStreamBytes()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/Interp/ |
| H A D | Program.cpp | 237 for (const CXXBaseSpecifier &Spec : CD->bases()) { in getOrCreateRecord() local 238 if (Spec.isVirtual()) in getOrCreateRecord() 241 const RecordDecl *BD = Spec.getType()->castAs<RecordType>()->getDecl(); in getOrCreateRecord() 252 for (const CXXBaseSpecifier &Spec : CD->vbases()) { in getOrCreateRecord() local 253 const RecordDecl *BD = Spec.getType()->castAs<RecordType>()->getDecl(); in getOrCreateRecord()
|
| /netbsd-src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/ |
| H A D | templates.cc | 604 class Spec { class 611 T1 Spec<T1, T2>::spec (T2 t2) in spec() 617 class Spec<T, T*> { class 624 T Spec<T, T*>::spec (T * tp) in spec() 815 Spec<int, char> sic; in main() 816 Spec<int, int *> siip; in main()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/providers/common/der/ |
| H A D | oids_to_c.pm | 15 use File::Spec; 72 my $input = File::Spec->catfile($opts{dir}, $file);
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Index/ |
| H A D | USRGeneration.cpp | 334 if (const VarTemplateSpecializationDecl *Spec in VisitVarDecl() local 336 const TemplateArgumentList &Args = Spec->getTemplateArgs(); in VisitVarDecl() 570 if (const ClassTemplateSpecializationDecl *Spec in VisitTagDecl() local 572 const TemplateArgumentList &Args = Spec->getTemplateArgs(); in VisitTagDecl() 852 if (const TemplateSpecializationType *Spec in VisitType() local 855 VisitTemplateName(Spec->getTemplateName()); in VisitType() 856 Out << Spec->getNumArgs(); in VisitType() 857 for (unsigned I = 0, N = Spec->getNumArgs(); I != N; ++I) in VisitType() 858 VisitTemplateArgument(Spec->getArg(I)); in VisitType()
|