Home
last modified time | relevance | path

Searched refs:tmp_value (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectExpression.cpp65 bool tmp_value = OptionArgParser::ToBoolean(option_arg, true, &success); in SetOptionValue() local
67 ignore_breakpoints = tmp_value; in SetOptionValue()
77 bool tmp_value = OptionArgParser::ToBoolean(option_arg, true, &success); in SetOptionValue() local
79 allow_jit = tmp_value; in SetOptionValue()
97 bool tmp_value = OptionArgParser::ToBoolean(option_arg, true, &success); in SetOptionValue() local
99 unwind_on_error = tmp_value; in SetOptionValue()
133 bool tmp_value = OptionArgParser::ToBoolean(option_arg, true, &success); in SetOptionValue() local
135 auto_apply_fixits = tmp_value ? eLazyBoolYes : eLazyBoolNo; in SetOptionValue()
H A DCommandObjectProcess.cpp1655 bool tmp_value = OptionArgParser::ToBoolean(option, false, &success); in VerifyCommandOptionValue() local
1657 if (success && tmp_value) in VerifyCommandOptionValue()
1659 else if (success && !tmp_value) in VerifyCommandOptionValue()
H A DCommandObjectThread.cpp1450 bool tmp_value = in SetOptionValue() local
1453 m_from_expression = tmp_value; in SetOptionValue()
/llvm-project-15.0.7/lldb/test/API/lang/cpp/dynamic-value/
H A Dpass-to-base.cpp26 int tmp_value = anotherA.Value(); in doSomething() local
27 printf ("Also have another A at %p: %d.\n", &anotherA, tmp_value); // Break here in doSomething. in doSomething()
/llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/
H A Dpr24546.ll36 %tmp_value.1 = phi double [ %div, %php_intpow10.exit ], [ %mul, %if.else ]
37 ret double %tmp_value.1, !dbg !57
74 !16 = !DILocalVariable(name: "tmp_value", scope: !6, file: !1, line: 18, type: !4)
/llvm-project-15.0.7/lldb/source/Core/
H A DValueObject.cpp337 Value tmp_value(m_value); in ResolveValue() local
338 scalar = tmp_value.ResolveValue(&exe_ctx); in ResolveValue()