Home
last modified time | relevance | path

Searched refs:If (Results 1 – 25 of 1957) sorted by relevance

12345678910>>...79

/llvm-project-15.0.7/compiler-rt/lib/fuzzer/
H A DFuzzerFlags.def13 FUZZER_FLAG_UNSIGNED(seed, 0, "Random seed. If 0, seed is generated.")
17 "If 0, libFuzzer tries to guess a good value based on the corpus "
30 FUZZER_FLAG_INT(cross_over, 1, "If 1, cross over inputs.")
84 FUZZER_FLAG_INT(minimize_crash, 0, "If 1, minimizes the provided"
141 "If 1, print statistics on corpus elements at exit.")
148 FUZZER_FLAG_INT(handle_bus, 1, "If 1, try to intercept SIGBUS.")
150 FUZZER_FLAG_INT(handle_ill, 1, "If 1, try to intercept SIGILL.")
151 FUZZER_FLAG_INT(handle_fpe, 1, "If 1, try to intercept SIGFPE.")
152 FUZZER_FLAG_INT(handle_int, 1, "If 1, try to intercept SIGINT.")
169 "If >= 2 will also print stack traces.")
[all …]
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/
H A DElseAfterReturnCheck.cpp91 return findUsage(If->getElse(), InitDecl->getID()); in checkInitDeclUsageInElse()
98 return findUsageRange(If->getElse(), DeclIdentifiers); in checkInitDeclUsageInElse()
102 if (const VarDecl *CondVar = If->getConditionVariable()) in checkConditionVarUsageInElse()
103 return findUsage(If->getElse(), CondVar->getID()); in checkConditionVarUsageInElse()
244 SourceLocation ElseLoc = If->getElseLoc(); in check()
251 bool IsLastInScope = OuterScope->body_back() == If; in check()
262 if (checkConditionVarUsageInElse(If) != nullptr) { in check()
271 if (checkInitDeclUsageInElse(If) != nullptr) { in check()
273 SourceRange(If->getIfLoc()), in check()
298 if (checkInitDeclUsageInElse(If) != nullptr) { in check()
[all …]
H A DMisleadingIndentationCheck.cpp20 ASTContext *Context, const IfStmt *If) { in getPrecedingIf() argument
21 auto Parents = Context->getParents(*If); in getPrecedingIf()
27 SM.getExpansionLineNumber(If->getIfLoc())) in getPrecedingIf()
35 const IfStmt *If) { in danglingElseCheck() argument
36 SourceLocation IfLoc = If->getIfLoc(); in danglingElseCheck()
37 SourceLocation ElseLoc = If->getElseLoc(); in danglingElseCheck()
42 if (SM.getExpansionLineNumber(If->getThen()->getEndLoc()) == in danglingElseCheck()
47 for (const auto *PrecedingIf = getPrecedingIf(SM, Context, If); PrecedingIf; in danglingElseCheck()
117 if (const auto *If = Result.Nodes.getNodeAs<IfStmt>("if")) in check() local
118 danglingElseCheck(*Result.SourceManager, Result.Context, If); in check()
H A DSimplifyBooleanExprCheck.cpp356 bool VisitIfStmt(IfStmt *If) { in VisitIfStmt() argument
358 if (If->hasInitStorage() || If->hasVarStorage()) in VisitIfStmt()
365 Expr *Cond = If->getCond()->IgnoreImplicit(); in VisitIfStmt()
368 Check->replaceWithThenStatement(Context, If, Cond); in VisitIfStmt()
373 if (If->getElse()) { in VisitIfStmt()
469 auto *If = cast<IfStmt>(*First); in VisitCompoundStmt() local
470 if (!If->hasInitStorage() && !If->hasVarStorage()) { in VisitCompoundStmt()
476 If->getElse() == nullptr) { in VisitCompoundStmt()
479 If, ThenReturnBool.Item); in VisitCompoundStmt()
738 If->getSourceRange(), Replacement); in replaceWithReturnCondition()
[all …]
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_flags.inc57 "\"stderr\". If unspecified, defaults to \"stderr\".")
115 "If set, uses alternate stack for signal handling.")
117 "If set, deadlock detection is enabled.")
157 "If false, do not attempt to read /proc/maps/statm."
167 "If non-empty, write 8bit counters to this file. ")
169 "If non-empty, write the coverage pc table to this file. ")
214 "If set, uses custom wrappers for strpbrk function "
223 "If set, uses custom wrappers for strndup functions "
229 "If set, uses custom wrappers for memcmp function "
240 "If set, uses custom wrappers for *stat functions "
[all …]
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DInterpreterProperties.td7 …Desc<"If true, regular expression alias commands will show the expanded command that will be execu…
11 …Desc<"If true, LLDB will prompt you before quitting if there are any live processes being debugged…
15 Desc<"If true, LLDB will save the session's transcripts before quitting.">;
22 Desc<"If true, LLDB will stop running a 'command source' script upon encountering an error.">;
26 Desc<"If true, blank lines will be printed between between REPL submissions.">;
30 Desc<"If true, commands will be echoed before they are evaluated.">;
34 Desc<"If true, commands will be echoed even if they are pure comment lines.">;
38 …Desc<"If true, LLDB will repeat the previous command if no command was passed to the interpreter.
42 …Desc<"If true, require --overwrite in 'command script add' before overwriting existing user comman…
/llvm-project-15.0.7/clang-tools-extra/clangd/refactor/tweaks/
H A DSwapIfBranches.cpp45 const IfStmt *If = nullptr; member in clang::clangd::__anonca4d099e0111::SwapIfBranches
52 N && !If; N = N->Parent) { in REGISTER_TWEAK()
56 If = dyn_cast_or_null<IfStmt>(N->ASTNode.get<Stmt>()); in REGISTER_TWEAK()
60 return If && isa_and_nonnull<CompoundStmt>(If->getThen()) && in REGISTER_TWEAK()
61 isa_and_nonnull<CompoundStmt>(If->getElse()); in REGISTER_TWEAK()
69 If->getThen()->getSourceRange()); in apply()
73 If->getElse()->getSourceRange()); in apply()
/llvm-project-15.0.7/llvm/include/llvm/Target/
H A DTargetCallingConv.td28 /// CCIfType - If the current argument is one of the specified types, apply
34 /// CCIf - If the predicate matches, apply A.
39 /// CCIfByVal - If the current argument has ByVal parameter attribute, apply
64 /// CCIfCFGuardTarget - If the current argument has cfguardtarget parameter
69 /// CCIfConsecutiveRegs - If the current argument has InConsecutiveRegs
78 /// CCIfInReg - If this argument is marked with the 'inreg' attribute, apply
82 /// CCIfNest - If this argument is marked with the 'nest' attribute, apply
90 /// CCIfSRet - If this argument is marked with the 'sret' attribute, apply
94 /// CCIfVarArg - If the current function is vararg - apply the action
100 /// CCIfPtrAddrSpace - If the top-level parent of the current argument has
[all …]
/llvm-project-15.0.7/lldb/docs/
H A Ddoxygen.cfg.in134 # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen
142 # If the QT_AUTOBRIEF tag is set to YES then Doxygen will
380 # documentation. If set to YES the scope will be hidden.
607 # If left blank NO is used.
671 # If FILTER_PATTERNS is specified, this tag will be
715 # If the REFERENCED_BY_RELATION tag is set to YES
721 # If the REFERENCES_RELATION tag is set to YES
1120 # executive. If left blank a4wide will be used.
1243 # If the GENERATE_XML tag is set to YES Doxygen will
1290 # If the GENERATE_PERLMOD tag is set to YES Doxygen will
[all …]
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/bugprone/
H A DBoolPointerImplicitConversionCheck.cpp37 const IfStmt *If, in checkImpl() argument
51 *If, *Result.Context) in checkImpl()
53 !match(findAll(arraySubscriptExpr(hasBase(RefMatcher))), *If, in checkImpl()
60 *If, *Result.Context) in checkImpl()
64 *If, *Result.Context) in checkImpl()
76 const auto *If = Result.Nodes.getNodeAs<IfStmt>("if"); in check() local
83 checkImpl(Result, E, If, M, *this); in check()
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DDialectBase.td56 // If this dialect overrides the hook for materializing constants.
59 /// If the dialect definition provides a non-default destructor.
60 /// If false, a default destructor implementation will be generated.
63 // If this dialect overrides the hook for verifying operation attributes.
66 // If this dialect overrides the hook for verifying region argument
70 // If this dialect overrides the hook for verifying region result attributes.
73 // If this dialect overrides the hook for op interface fallback.
82 // If this dialect should use default generated type parser boilerplate:
88 // If this dialect overrides the hook for canonicalization patterns.
95 // If emitting with prefix is specified then the attribute/operand's
[all …]
/llvm-project-15.0.7/openmp/runtime/doc/doxygen/
H A Dconfig150 # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen
158 # If the QT_AUTOBRIEF tag is set to YES then Doxygen will
453 # documentation. If set to YES the scope will be hidden.
699 # If left blank NO is used.
766 # If FILTER_PATTERNS is specified, this tag will be
818 # If the REFERENCED_BY_RELATION tag is set to YES
824 # If the REFERENCES_RELATION tag is set to YES
1279 # executive. If left blank a4wide will be used.
1415 # If the GENERATE_XML tag is set to YES Doxygen will
1462 # If the GENERATE_PERLMOD tag is set to YES Doxygen will
[all …]
/llvm-project-15.0.7/compiler-rt/lib/asan/
H A Dasan_flags.inc38 "If set, prints some debugging information and does additional checks.")
45 "If set, attempts to catch initialization order issues.")
48 "If set, uses custom wrappers and replacements for libc string functions "
75 "If set, user may manually mark memory regions as poisoned or "
94 "If set, explicitly unmaps the (huge) shadow at exit.")
103 "If set, prints ASan exit stats even after program terminates "
114 "If true, poison partially addressable 8-byte aligned words "
147 "If true, honor the container overflow annotations. See "
151 "If >=2, detect violation of One-Definition-Rule (ODR); "
152 "If ==1, detect ODR-violation only if the two variables "
[all …]
/llvm-project-15.0.7/compiler-rt/lib/memprof/
H A Dmemprof_flags.inc20 "If set, explicitly unmaps the (huge) shadow at exit.")
21 MEMPROF_FLAG(bool, protect_shadow_gap, true, "If set, mprotect the shadow gap")
24 "If set, prints MemProf exit stats even after program terminates "
28 "If set, prints thread creation stacks for the threads involved in the "
36 "POSIX standard). If set to false, realloc(p, 0) will return a "
39 "If set, prints the heap profile in text format. Else use the raw binary serialization format.")
41 … "If set, prints memory profile in a terse format. Only applicable if print_text = true.")
/llvm-project-15.0.7/llvm/docs/CommandGuide/
H A Dllvm-as.rst18 If *filename* is omitted or is ``-``, then **llvm-as** reads its input from
21 If an output file is not specified with the **-o** option, then
25 * If the input is standard input, then the output is standard output.
27 * If the input is a file that ends with ``.ll``, then the output file is of the
30 * If the input is a file that does not end with the ``.ll`` suffix, then the
46 Specify the output file name. If *filename* is ``-``, then **llvm-as**
52 If **llvm-as** succeeds, it will exit with 0. Otherwise, if an error occurs, it
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/bugprone/
H A Dmisplaced-widening-cast.rst7 type. If the intention of the cast is to avoid loss of precision then the cast
19 The result ``x * 1000`` is first calculated using ``int`` precision. If the
23 If there is no loss of precision then the cast can be removed or you can
26 If you want to avoid loss of precision then put the cast in a proper location,
39 common as misplacing it. If :option:`CheckImplicitCasts` is enabled the check
65 If `true`, enables detection of implicit casts. Default is `false`.
/llvm-project-15.0.7/llvm/docs/AMDGPU/
H A Dgfx7_vaddr_da1f09.rst17 * If only :ref:`addr64<amdgpu_synid_addr64>` is specified, this operand supplies a 64-bit address. …
18 * If only :ref:`idxen<amdgpu_synid_idxen>` is specified, this operand supplies an index. Size is 1 …
19 * If only :ref:`offen<amdgpu_synid_offen>` is specified, this operand supplies an offset. Size is 1…
20 * If both :ref:`idxen<amdgpu_synid_idxen>` and :ref:`offen<amdgpu_synid_offen>` are specified, inde…
21 * If none of these modifiers are specified, this operand must be set to :ref:`off<amdgpu_synid_off>…
/llvm-project-15.0.7/clang/docs/
H A Ddoxygen.cfg.in95 # If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief
122 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
446 # If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all
454 # If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all
469 # If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any
526 # name. If set to NO the members will appear in declaration order.
744 # Note: If this tag is empty the current directory is searched.
759 # If the value of the INPUT tag contains directories, you can use the
792 # If the value of the INPUT tag contains directories, you can use the
1248 # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
[all …]
/llvm-project-15.0.7/bolt/docs/
H A Ddoxygen.cfg.in95 # If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief
122 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
448 # If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all
456 # If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all
471 # If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any
528 # name. If set to NO the members will appear in declaration order.
746 # Note: If this tag is empty the current directory is searched.
764 # If the value of the INPUT tag contains directories, you can use the
797 # If the value of the INPUT tag contains directories, you can use the
1253 # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
[all …]
/llvm-project-15.0.7/polly/docs/
H A Ddoxygen.cfg.in95 # If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief
122 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
446 # If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all
454 # If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all
469 # If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any
526 # name. If set to NO the members will appear in declaration order.
744 # Note: If this tag is empty the current directory is searched.
759 # If the value of the INPUT tag contains directories, you can use the
792 # If the value of the INPUT tag contains directories, you can use the
1249 # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
[all …]
/llvm-project-15.0.7/llvm/docs/
H A Ddoxygen.cfg.in95 # If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief
122 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
447 # If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all
455 # If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all
470 # If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any
527 # name. If set to NO the members will appear in declaration order.
745 # Note: If this tag is empty the current directory is searched.
760 # If the value of the INPUT tag contains directories, you can use the
793 # If the value of the INPUT tag contains directories, you can use the
1249 # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
[all …]
/llvm-project-15.0.7/clang-tools-extra/docs/
H A Ddoxygen.cfg.in95 # If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief
122 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
446 # If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all
454 # If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all
469 # If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any
526 # name. If set to NO the members will appear in declaration order.
744 # Note: If this tag is empty the current directory is searched.
770 # If the value of the INPUT tag contains directories, you can use the
803 # If the value of the INPUT tag contains directories, you can use the
1259 # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
[all …]
/llvm-project-15.0.7/openmp/docs/
H A Ddoxygen.cfg.in95 # If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief
122 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
446 # If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all
454 # If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all
469 # If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any
526 # name. If set to NO the members will appear in declaration order.
744 # Note: If this tag is empty the current directory is searched.
760 # If the value of the INPUT tag contains directories, you can use the
793 # If the value of the INPUT tag contains directories, you can use the
1249 # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
[all …]
/llvm-project-15.0.7/mlir/docs/
H A Ddoxygen.cfg.in95 # If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief
122 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
447 # If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all
455 # If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all
470 # If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any
527 # name. If set to NO the members will appear in declaration order.
745 # Note: If this tag is empty the current directory is searched.
760 # If the value of the INPUT tag contains directories, you can use the
793 # If the value of the INPUT tag contains directories, you can use the
1249 # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
[all …]
/llvm-project-15.0.7/flang/docs/
H A Ddoxygen.cfg.in95 # If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief
122 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
448 # If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all
456 # If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all
471 # If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any
528 # name. If set to NO the members will appear in declaration order.
746 # Note: If this tag is empty the current directory is searched.
762 # If the value of the INPUT tag contains directories, you can use the
795 # If the value of the INPUT tag contains directories, you can use the
1251 # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
[all …]

12345678910>>...79