Searched refs:Spec (Results 1 - 25 of 56) sorted by relevance

123

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DFormatVariadic.cpp26 bool formatv_object_base::consumeFieldLayout(StringRef &Spec, AlignStyle &Where, argument
31 if (Spec.empty())
34 if (Spec.size() > 1) {
38 // If Spec[1] is a loc char, then Spec[0] is a pad char and Spec[2:...]
40 // Otherwise, if Spec[0] is a loc char, then Spec[1:...] contains the width.
41 // Otherwise, Spec[0:...] contains the width.
42 if (auto Loc = translateLocChar(Spec[
57 parseReplacementItem(StringRef Spec) argument
[all...]
H A DAArch64TargetParser.cpp222 bool AArch64::parseBranchProtection(StringRef Spec, ParsedBranchProtection &PBP, argument
225 if (Spec == "none")
228 if (Spec == "standard") {
235 Spec.split(Opts, "+");
H A DNativeFormatting.cpp183 SmallString<8> Spec; local
184 llvm::raw_svector_ostream Out(Spec);
216 len = format(Spec.c_str(), N).snprint(buf, sizeof(buf));
243 format(Spec.c_str(), N).snprint(Buf, sizeof(Buf));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFAbbreviationDeclaration.cpp132 for (const AttributeSpec &Spec : AttributeSpecs) {
133 OS << formatv("\t{0}\t{1}", Spec.Attr, Spec.Form);
134 if (Spec.isImplicitConst())
135 OS << '\t' << Spec.getImplicitConstValue();
163 for (const auto &Spec : AttributeSpecs) {
166 if (Spec.isImplicitConst())
167 return DWARFFormValue::createFromSValue(Spec.Form,
168 Spec.getImplicitConstValue());
170 DWARFFormValue FormValue(Spec
[all...]
H A DDWARFContext.cpp1160 DILineInfoSpecifier Spec) {
1167 getFunctionNameAndStartLineForAddress(CU, Address.Address, Spec.FNKind,
1169 if (Spec.FLIKind != FileLineInfoKind::None) {
1173 Spec.FLIKind, Result);
1180 object::SectionedAddress Address, uint64_t Size, DILineInfoSpecifier Spec) {
1188 getFunctionNameAndStartLineForAddress(CU, Address.Address, Spec.FNKind,
1193 if (Spec.FLIKind == FileLineInfoKind::None) {
1215 Spec.FLIKind, Result.FileName);
1228 DILineInfoSpecifier Spec) {
1241 if (Spec
1159 getLineInfoForAddress(object::SectionedAddress Address, DILineInfoSpecifier Spec) argument
1179 getLineInfoForAddressRange( object::SectionedAddress Address, uint64_t Size, DILineInfoSpecifier Spec) argument
1227 getInliningInfoForAddress(object::SectionedAddress Address, DILineInfoSpecifier Spec) argument
[all...]
/freebsd-11-stable/contrib/diff/lib/
H A Derror.h25 # define __attribute__(Spec) /* empty */
/freebsd-11-stable/gnu/usr.bin/grep/
H A Derror.h29 # define __attribute__(Spec) /* empty */
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormatVariadic.h49 : Type(ReplacementType::Literal), Spec(Literal) {}
50 ReplacementItem(StringRef Spec, size_t Index, size_t Align, AlignStyle Where, argument
52 : Type(ReplacementType::Format), Spec(Spec), Index(Index), Align(Align),
56 StringRef Spec; member in struct:llvm::ReplacementItem
84 static bool consumeFieldLayout(StringRef &Spec, AlignStyle &Where,
110 S << R.Spec;
114 S << R.Spec;
126 static Optional<ReplacementItem> parseReplacementItem(StringRef Spec);
H A DAArch64TargetParser.h132 bool parseBranchProtection(StringRef Spec, ParsedBranchProtection &PBP,
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/
H A DAtomicChange.cpp297 const ApplyChangesSpec &Spec) {
299 createReplacementsForHeaders(FilePath, Code, Changes, Spec.Style);
320 if (Spec.Cleanup) {
322 format::cleanupAroundReplacements(Code, AllReplaces, Spec.Style);
340 Spec.Style, *ChangedCode, AllReplaces.getAffectedRanges(), FilePath);
350 *ChangedCode, Spec.Style.ColumnLimit, Spec.Format, AllReplaces);
353 format::reformat(Spec.Style, *ChangedCode, FormatRanges, FilePath);
295 applyAtomicChanges(llvm::StringRef FilePath, llvm::StringRef Code, llvm::ArrayRef<AtomicChange> Changes, const ApplyChangesSpec &Spec) argument
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSectionMachO.h65 /// Parse the section specifier indicated by "Spec". This is a string that can
71 static std::string ParseSectionSpecifier(StringRef Spec, // In.
/freebsd-11-stable/contrib/sendmail/contrib/
H A Dqtool.pl11 use File::Spec;
292 $source_name = File::Spec->catfile("$source_dir_name",
299 $source_name = File::Spec->catfile("$source_dir_name", "qf",
305 $data_dir_name = File::Spec->catfile("$source_dir_name", "df");
310 $source_dir_name = File::Spec->catfile("$source_dir_name",
902 $qf_dest = File::Spec->catfile($destination, "qf");
905 $df_dest = File::Spec->catfile($destination, "df");
917 if (-e File::Spec->catfile($qf_dest, "$qprefix$self->{id}"))
1036 $control_dir = File::Spec->catfile($self->{queue_dir}, 'qf');
1040 $data_dir = File::Spec
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DTemplateDeduction.h302 void set(DeclAccessPair Found, Decl *Spec, DeductionFailureInfo Info) { argument
304 Specialization = Spec;
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DProgram.cpp237 for (const CXXBaseSpecifier &Spec : CD->bases()) {
238 if (Spec.isVirtual())
241 const RecordDecl *BD = Spec.getType()->castAs<RecordType>()->getDecl();
252 for (const CXXBaseSpecifier &Spec : CD->vbases()) {
253 const RecordDecl *BD = Spec.getType()->castAs<RecordType>()->getDecl();
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DBytesOutputStyle.cpp481 for (const auto &Spec : Specs) {
483 if (Spec.SI >= StreamPurposes.size()) {
484 P.formatLine("Stream {0}: Not present", Spec.SI);
487 P.formatMsfStreamData("Data", File, Spec.SI,
488 StreamPurposes[Spec.SI].getShortName(), Spec.Begin,
489 Spec.Size);
/freebsd-11-stable/contrib/amd/fsinfo/
H A Dnull_gram.c186 # define YY_ATTRIBUTE(Spec) __attribute__(Spec)
188 # define YY_ATTRIBUTE(Spec) /* empty */
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/
H A DAtomicChange.h173 const ApplyChangesSpec &Spec);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Index/
H A DUSRGeneration.cpp333 if (const VarTemplateSpecializationDecl *Spec
335 const TemplateArgumentList &Args = Spec->getTemplateArgs();
569 if (const ClassTemplateSpecializationDecl *Spec
571 const TemplateArgumentList &Args = Spec->getTemplateArgs();
845 if (const TemplateSpecializationType *Spec
848 VisitTemplateName(Spec->getTemplateName());
849 Out << Spec->getNumArgs();
850 for (unsigned I = 0, N = Spec->getNumArgs(); I != N; ++I)
851 VisitTemplateArgument(Spec->getArg(I));
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace/
H A DJDTrace.java77 ProbeDescription.Spec probespec;
85 ProbeDescription.Spec spec = ((req.probespec == null)
86 ? ProbeDescription.Spec.NAME
733 r.probespec = ProbeDescription.Spec.FUNCTION;
743 r.probespec = ProbeDescription.Spec.NAME;
760 r.probespec = ProbeDescription.Spec.MODULE;
767 r.probespec = ProbeDescription.Spec.NAME;
802 r.probespec = ProbeDescription.Spec.PROVIDER;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCSectionMachO.cpp177 /// ParseSectionSpecifier - Parse the section specifier indicated by "Spec".
182 std::string MCSectionMachO::ParseSectionSpecifier(StringRef Spec, // In. argument
191 Spec.split(SplitSpec, ',');
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DSpeculation.h183 Speculator &Spec, MangleAndInterner &Mangle,
186 S(Spec), Mangle(Mangle), QueryAnalysis(Interpreter) {}
182 IRSpeculationLayer(ExecutionSession &ES, IRCompileLayer &BaseLayer, Speculator &Spec, MangleAndInterner &Mangle, ResultEval Interpreter) argument
/freebsd-11-stable/usr.sbin/config/
H A Dconfig.y120 Many_specs Spec
125 Spec: label
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DX86RecognizableInstr.cpp69 Spec = &tables.specForUID(UID);
378 Spec->operands[operandIndex].encoding = ENCODING_DUP;
379 Spec->operands[operandIndex].type =
389 Spec->operands[operandIndex].encoding = encoding;
390 Spec->operands[operandIndex].type = typeFromString(typeName,
398 Spec->name = Name;
400 Spec->insnContext = insnContext();
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp2967 if (const TemplateSpecializationType *Spec
2969 return Spec->getTemplateName().getAsTemplateDecl() != nullptr;
5292 ClassTemplatePartialSpecializationDecl *Spec, TemplateDeductionInfo &Info) {
5293 ClassTemplateDecl *Primary = Spec->getSpecializedTemplate();
5295 QualType PartialT = Spec->getInjectedSpecializationType();
5298 if (!isAtLeastAsSpecializedAs(*this, PrimaryT, PartialT, Spec, Info))
5303 Spec->getAssociatedConstraints(SpecAC);
5305 if (IsAtLeastAsConstrained(Spec, SpecAC, Primary, PrimaryAC,
5310 if (IsAtLeastAsConstrained(Primary, PrimaryAC, Spec, SpecAC,
5356 VarTemplatePartialSpecializationDecl *Spec, TemplateDeductionInf
[all...]
H A DSemaTemplateInstantiate.cpp75 VarTemplateSpecializationDecl *Spec = local
77 if (Spec && !Spec->isClassScopeExplicitSpecialization()) {
79 if (Spec->getSpecializationKind() == TSK_ExplicitSpecialization &&
80 !isa<VarTemplatePartialSpecializationDecl>(Spec))
83 Result.addOuterTemplateArguments(&Spec->getTemplateInstantiationArgs());
87 assert(Spec->getSpecializedTemplate() && "No variable template?");
90 = Spec->getSpecializedTemplateOrPartial();
120 ClassTemplateSpecializationDecl *Spec local
122 if (Spec
[all...]

Completed in 390 milliseconds

123