Home
last modified time | relevance | path

Searched refs:expected_value (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/command/
H A DStepValueInfo.py10 def __init__(self, step_index, watch_info, expected_value): argument
13 self.expected_value = expected_value
16 … return '{}:{}: expected value:{}'.format(self.step_index, self.watch_info, self.expected_value)
20 and self.expected_value == other.expected_value)
23 return hash(self.watch_info.expression, self.expected_value)
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/command/commands/
H A DDexExpectWatchBase.py188 expected_value = self._maybe_fix_float(step_info.expected_value)
195 self.resolve_value(v) == expected_value):
201 if expected_value not in self.values and matching_address is None:
206 value_to_remove = matching_address if matching_address is not None else expected_value
217 actual_values = [self._maybe_fix_float(w.expected_value) for w in actual_watches]
271 expected_value = self._maybe_fix_float(watch.expected_value)
272 all_expected_values.append(expected_value)
273 if expected_value != prev_value:
275 prev_value = expected_value
/llvm-project-15.0.7/openmp/libomptarget/test/mapping/
H A Dmap_back_race.cpp20 const float expected_value{N0}; in test_parallel_for__target() local
30 if (!almost_equal(counter_N0, expected_value, 0.01)) { in test_parallel_for__target()
31 std::cerr << "Expected: " << expected_value << " Got: " << counter_N0 in test_parallel_for__target()
/llvm-project-15.0.7/openmp/libomptarget/test/offloading/
H A Dtaskloop_offload_nowait.cpp22 constexpr const float expected_value{N0 * N1}; in main() local
37 if (!almost_equal(counter_N0, expected_value, 0.1)) { in main()
38 std::cerr << "Expected: " << expected_value << " Got: " << counter_N0 in main()
/llvm-project-15.0.7/lldb/test/API/lang/cpp/global_operators/
H A DTestCppGlobalOperators.py71 expected_value = frame.FindValue(
73 self.assertTrue(expected_value.IsValid())
75 expected_value_addr = expected_value.AddressOf()
/llvm-project-15.0.7/lldb/test/API/python_api/value/change_values/
H A DTestChangeValueAPI.py144 expected_value = "Val - 12345 Mine - 55, 98765, 55555555. Ptr - 66, 98765, 66666666"
147 expected_value in stdout,
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/heuristic/
H A DHeuristic.py489 if result.expected_value not in step_value_results:
490 … step_value_results[result.expected_value] = PenaltyLineRanges(result.step_index, penalty)
492 … step_value_results[result.expected_value].add_step(result.step_index, penalty)
/llvm-project-15.0.7/lldb/source/Breakpoint/
H A DBreakpoint.cpp1143 if (auto expected_value = llvm::json::parse(ss.str())) { in GetStatistics() local
1144 bp.try_emplace("details", std::move(*expected_value)); in GetStatistics()
1146 std::string details_error = toString(expected_value.takeError()); in GetStatistics()
/llvm-project-15.0.7/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal.h201 const std::string& expected_value,