Home
last modified time | relevance | path

Searched refs:set_value (Results 1 – 25 of 56) sorted by relevance

123

/llvm-project-15.0.7/lldb/examples/python/
H A Ddisassembly_mode.py23 def set_value(self, setting, value): member in DisassemblyMode
31 self.set_value("stop-disassembly-display","always")
32 self.set_value("stop-disassembly-count", "8")
33 self.set_value("stop-line-count-before", "0")
34 self.set_value("stop-line-count-after", "0")
38 self.set_value("stop-disassembly-display",self.dis_display)
39 self.set_value("stop-disassembly-count", self.dis_count)
40 self.set_value("stop-line-count-before", self.before_count)
41 self.set_value("stop-line-count-after", self.after_count)
/llvm-project-15.0.7/libunwind/test/
H A Dlibunwind_01.pass.cpp123 const unw_word_t set_value = 7; in test_reg_get_set() local
124 if (unw_set_reg(&cursor, i, set_value) != UNW_ESUCCESS) in test_reg_get_set()
131 if (set_value != get_value) in test_reg_get_set()
145 const unw_fpreg_t set_value = 7; in test_fpreg_get_set() local
146 if (unw_set_fpreg(&cursor, i, set_value) != UNW_EBADREG) in test_fpreg_get_set()
/llvm-project-15.0.7/libcxx/test/std/language.support/support.coroutines/end.to.end/
H A Dawait_result.pass.cpp46 void set_value(int x) { in set_value() function
52 set_value(0); in f()
57 set_value(42); in f()
/llvm-project-15.0.7/libcxx/test/std/experimental/language.support/support.coroutines/end.to.end/
H A Dawait_result.pass.cpp47 void set_value(int x) { in set_value() function
53 set_value(0); in f()
58 set_value(42); in f()
/llvm-project-15.0.7/libcxx/test/std/thread/futures/futures.promise/
H A Dset_value_const.pass.cpp38 p.set_value(i); in main()
45 p.set_value(i); in main()
62 p.set_value(i); in main()
H A Dset_rvalue.pass.cpp38 p.set_value(std::move(i)); in main()
42 p.set_value(std::move(i)); in main()
57 p.set_value(std::move(i)); in main()
H A Ddtor.pass.cpp31 p.set_value(3); in main()
63 p.set_value(i); in main()
94 p.set_value(); in main()
H A Dset_value_void.pass.cpp30 p.set_value(); in main()
34 p.set_value(); in main()
H A Dset_lvalue.pass.cpp30 p.set_value(i); in main()
38 p.set_value(i); in main()
/llvm-project-15.0.7/libcxx/test/std/thread/futures/futures.unique_future/
H A Dwait.pass.cpp28 p.set_value(3); in func1()
37 p.set_value(j); in func3()
43 p.set_value(); in func5()
H A Dwait_for.pass.cpp37 p.set_value(3); in func1()
46 p.set_value(j); in func3()
52 p.set_value(); in func5()
H A Dwait_until.pass.cpp47 p.set_value(3); in func1()
57 p.set_value(j); in func3()
64 p.set_value(); in func5()
H A Dget.pass.cpp29 p.set_value(3); in func1()
44 p.set_value(j); in func3()
56 p.set_value(); in func5()
/llvm-project-15.0.7/llvm/unittests/ExecutionEngine/Orc/
H A DExecutionSessionWrapperFunctionCallsTest.cpp55 RP.set_value(std::move(SerializationErr)); in TEST()
70 RP.set_value(std::move(SerializationErr)); in TEST()
71 RP.set_value(std::move(R)); in TEST()
112 RP.set_value(Result); in TEST()
H A DLookupAndRecordAddrsTest.cpp30 lookupAndRecordAddrs([&](Error Err) { ErrP.set_value(std::move(Err)); }, ES, in TEST_F()
45 lookupAndRecordAddrs([&](Error Err) { ErrP.set_value(std::move(Err)); }, ES, in TEST_F()
60 lookupAndRecordAddrs([&](Error Err) { ErrP.set_value(std::move(Err)); }, ES, in TEST_F()
H A DMemoryMapperTest.cpp23 M.reserve(NumBytes, [&](auto R) { P.set_value(std::move(R)); }); in reserve()
31 M.initialize(AI, [&](auto R) { P.set_value(std::move(R)); }); in initialize()
39 M.deinitialize(Allocations, [&](auto R) { P.set_value(std::move(R)); }); in deinitialize()
46 M.release(Reservations, [&](auto R) { P.set_value(std::move(R)); }); in release()
/llvm-project-15.0.7/libcxx/test/std/thread/futures/futures.shared_future/
H A Dwait.pass.cpp28 p.set_value(3); in func1()
37 p.set_value(j); in func3()
43 p.set_value(); in func5()
H A Dwait_until.pass.cpp47 p.set_value(3); in func1()
57 p.set_value(j); in func3()
64 p.set_value(); in func5()
H A Dget.pass.cpp29 p.set_value(3); in func1()
44 p.set_value(j); in func3()
56 p.set_value(); in func5()
H A Dwait_for.pass.cpp35 p.set_value(3); in func1()
44 p.set_value(j); in func3()
50 p.set_value(); in func5()
/llvm-project-15.0.7/clang/test/Sema/
H A Dwarn-thread-safety-analysis.c67 void set_value(int *a, int value) EXCLUSIVE_LOCKS_REQUIRED(foo_.mu_) { in set_value() function
104set_value(&a_, 0); // expected-warning{{calling function 'set_value' requires holding mutex 'foo_.… in main()
107 set_value(&a_, 1); in main()
/llvm-project-15.0.7/libcxx/src/
H A Dfuture.cpp83 __assoc_sub_state::set_value() in set_value() function in __assoc_sub_state
219 promise<void>::set_value() in set_value() function in promise
223 __state_->set_value(); in set_value()
/llvm-project-15.0.7/llvm/include/llvm/ExecutionEngine/Orc/
H A DExecutorProcessControl.h127 [&](Error Err) { ResultP.set_value(std::move(Err)); }); in writeUInt8s()
135 [&](Error Err) { ResultP.set_value(std::move(Err)); }); in writeUInt16s()
143 [&](Error Err) { ResultP.set_value(std::move(Err)); }); in writeUInt32s()
151 [&](Error Err) { ResultP.set_value(std::move(Err)); }); in writeUInt64s()
159 [&](Error Err) { ResultP.set_value(std::move(Err)); }); in writeBuffers()
305 RP.set_value(std::move(R)); in callWrapper()
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DTaskQueue.h48 P->set_value(C()); in invokeCallbackAndSetPromise()
53 P->set_value(); in invokeCallbackAndSetPromise()
/llvm-project-15.0.7/libcxx/include/
H A Dfuture77 void set_value(const R& r);
78 void set_value(R&& r);
107 void set_value(R& r);
135 void set_value();
582 void set_value();
918 this->set_value();
1009 this->set_value();
1373 __state_->set_value(__r);
1461 void set_value(_Rp& __r);
1587 void set_value();
[all …]

123