Home
last modified time | relevance | path

Searched refs:Strict (Results 1 – 25 of 37) sorted by relevance

12

/llvm-project-15.0.7/llvm/lib/Support/
H A DUnicodeNameToCodepoint.cpp125 if (Strict) { in startsWith()
180 compareNode(uint32_t Offset, StringRef Name, bool Strict, in compareNode() argument
186 N.IsRoot || startsWith(Name, N.Name, Strict, Consummed, in compareNode()
201 compareNode(ChildOffset, Name.substr(Consummed), Strict, in compareNode()
218 return compareNode(Offset, Name, Strict, 0, 0, Buffer); in compareNode()
261 static std::size_t findSyllable(StringRef Name, bool Strict, in findSyllable() argument
304 if (!Strict) { in nameToHangulCodePoint()
360 if (Strict && in nameToGeneratedCodePoint()
365 if (!Strict) { in nameToGeneratedCodePoint()
381 Res = nameToGeneratedCodePoint(Name, Strict, Buffer); in nameToCodepoint()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/BinaryFormat/
H A DAMDGPUMetadataVerifier.h46 bool Strict; variable
68 MetadataVerifier(bool Strict) : Strict(Strict) {} in MetadataVerifier() argument
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/
H A DInconsistentDeclarationParameterNameCheck.cpp91 bool nameMatch(StringRef L, StringRef R, bool Strict) { in nameMatch() argument
92 if (Strict) in nameMatch()
104 bool Strict) { in findDifferingParamsInDeclaration() argument
117 if (!nameMatch(SourceParamName, OtherParamName, Strict)) { in findDifferingParamsInDeclaration()
140 SourceManager &SM, bool Strict) { in findInconsistentDeclarations() argument
151 OriginalDeclaration, Strict); in findInconsistentDeclarations()
292 Options.store(Opts, "Strict", Strict); in storeOptions()
315 *Result.SourceManager, Strict); in check()
H A DInconsistentDeclarationParameterNameCheck.h31 Strict(Options.getLocalOrGlobal("Strict", false)) {} in InconsistentDeclarationParameterNameCheck()
45 const bool Strict; variable
/llvm-project-15.0.7/polly/include/polly/Support/
H A DISLTools.h107 isl::map beforeScatter(isl::map Map, bool Strict);
110 isl::union_map beforeScatter(isl::union_map UMap, bool Strict);
121 isl::map afterScatter(isl::map Map, bool Strict);
124 isl::union_map afterScatter(const isl::union_map &UMap, bool Strict);
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUTargetStreamer.h81 virtual bool EmitHSAMetadata(msgpack::Document &HSAMetadata, bool Strict) = 0;
141 bool EmitHSAMetadata(msgpack::Document &HSAMetadata, bool Strict) override;
201 bool EmitHSAMetadata(msgpack::Document &HSAMetadata, bool Strict) override;
H A DAMDGPUTargetStreamer.cpp283 msgpack::Document &HSAMetadataDoc, bool Strict) { in EmitHSAMetadata() argument
284 HSAMD::V3::MetadataVerifier Verifier(Strict); in EmitHSAMetadata()
773 bool Strict) { in EmitHSAMetadata() argument
774 HSAMD::V3::MetadataVerifier Verifier(Strict); in EmitHSAMetadata()
/llvm-project-15.0.7/polly/lib/Support/
H A DISLTools.cpp85 isl::map polly::beforeScatter(isl::map Map, bool Strict) { in beforeScatter() argument
88 Strict ? isl::map::lex_gt(RangeSpace) : isl::map::lex_ge(RangeSpace); in beforeScatter()
92 isl::union_map polly::beforeScatter(isl::union_map UMap, bool Strict) { in beforeScatter() argument
96 isl::map After = beforeScatter(Map, Strict); in beforeScatter()
103 isl::map polly::afterScatter(isl::map Map, bool Strict) { in afterScatter() argument
106 Strict ? isl::map::lex_lt(RangeSpace) : isl::map::lex_le(RangeSpace); in afterScatter()
110 isl::union_map polly::afterScatter(const isl::union_map &UMap, bool Strict) { in afterScatter() argument
113 isl::map After = afterScatter(Map, Strict); in afterScatter()
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DConfig.h91 enum UnusedIncludesPolicy { Strict, None }; enumerator
H A DIncludeCleaner.cpp475 if (Cfg.Diagnostics.UnusedIncludes != Config::UnusedIncludesPolicy::Strict || in issueUnusedIncludesDiagnostics()
/llvm-project-15.0.7/llvm/include/llvm/Target/
H A DTargetOptions.h39 Strict // Never fuse FP-ops. enumerator
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/readability/
H A Dinconsistent-declaration-parameter-name.rst60 .. option:: Strict
/llvm-project-15.0.7/clang/lib/Format/
H A DContinuationIndenter.h147 bool Strict);
H A DContinuationIndenter.cpp1994 bool Strict = false; in handleEndOfLine() local
1999 Current, State, AllowBreak, /*DryRun=*/true, Strict); in handleEndOfLine()
2008 Strict = StrictPenalty <= Penalty; in handleEndOfLine()
2009 if (Strict) { in handleEndOfLine()
2018 Strict); in handleEndOfLine()
2157 bool DryRun, bool Strict) { in breakProtrudingToken() argument
2298 if (!ContinueOnLine && !Strict) { in breakProtrudingToken()
/llvm-project-15.0.7/llvm/docs/
H A DAddingConstrainedIntrinsics.rst27 Strict version name must be a concatenation of prefix ``STRICT_`` and the name
/llvm-project-15.0.7/llvm/lib/BinaryFormat/
H A DAMDGPUMetadataVerifier.cpp35 if (Strict) in verifyScalar()
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUBaseInfo.h757 bool Strict = true);
761 const MCSubtargetInfo &STI, bool Strict = true);
H A DAMDGPUBaseInfo.cpp1567 bool Strict) { in isValidMsgOp() argument
1570 if (!Strict) in isValidMsgOp()
1593 const MCSubtargetInfo &STI, bool Strict) { in isValidMsgStream() argument
1594 assert(isValidMsgOp(MsgId, OpId, STI, Strict)); in isValidMsgStream()
1596 if (!Strict) in isValidMsgStream()
/llvm-project-15.0.7/mlir/test/Dialect/LLVMIR/
H A Dlayout.mlir181 // Strict alignment is applied
/llvm-project-15.0.7/llvm/test/Transforms/LoopVectorize/AArch64/
H A Dsve-epilog-vect-strict-reductions.ll5 ; Strict fadd reduction with interleaving
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DParsedAttr.h188 SourceLocation Strict, const Expr *ReplaceExpr) in AvailabilityData()
189 : StrictLoc(Strict), Replacement(ReplaceExpr) { in AvailabilityData()
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeFloatTypes.cpp1668 bool Strict = N->isStrictFPOpcode(); in ExpandFloatRes_XINT_TO_FP() local
1669 SDValue Src = N->getOperand(Strict ? 1 : 0); in ExpandFloatRes_XINT_TO_FP()
1674 SDValue Chain = Strict ? N->getOperand(0) : DAG.getEntryNode(); in ExpandFloatRes_XINT_TO_FP()
1687 if (Strict) { in ExpandFloatRes_XINT_TO_FP()
1709 if (Strict) in ExpandFloatRes_XINT_TO_FP()
1716 if (Strict) in ExpandFloatRes_XINT_TO_FP()
1752 if (Strict) { in ExpandFloatRes_XINT_TO_FP()
/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/
H A DConfigCompileTests.cpp265 Config::UnusedIncludesPolicy::Strict); in TEST_F()
/llvm-project-15.0.7/llvm/cmake/modules/
H A DLLVMDistributionSupport.cmake232 "Strict distribution errors (turn off LLVM_STRICT_DISTRIBUTIONS to bypass):\n"
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DCommandFlags.cpp290 clEnumValN(FPOpFusion::Strict, "off", in CGOPT()

12