Home
last modified time | relevance | path

Searched refs:current_value (Results 1 – 17 of 17) sorted by relevance

/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DOptionValueString.h38 OptionValueString(const char *current_value, const char *default_value) { in OptionValueString() argument
39 if (current_value && current_value[0]) in OptionValueString()
40 m_current_value.assign(current_value); in OptionValueString()
54 OptionValueString(const char *current_value, const char *default_value,
57 if (current_value && current_value[0]) in m_validator()
58 m_current_value.assign(current_value); in m_validator()
H A DOptionValueChar.h21 OptionValueChar(char current_value, char default_value) in OptionValueChar() argument
22 : m_current_value(current_value), m_default_value(default_value) {} in OptionValueChar()
H A DOptionValueBoolean.h20 OptionValueBoolean(bool current_value, bool default_value) in OptionValueBoolean() argument
21 : m_current_value(current_value), m_default_value(default_value) {} in OptionValueBoolean()
H A DOptionValueFormat.h22 OptionValueFormat(lldb::Format current_value, lldb::Format default_value) in OptionValueFormat() argument
23 : m_current_value(current_value), m_default_value(default_value) {} in OptionValueFormat()
H A DOptionValueLanguage.h23 OptionValueLanguage(lldb::LanguageType current_value, in OptionValueLanguage() argument
25 : m_current_value(current_value), m_default_value(default_value) {} in OptionValueLanguage()
H A DOptionValueUInt64.h24 OptionValueUInt64(uint64_t current_value, uint64_t default_value) in OptionValueUInt64() argument
25 : m_current_value(current_value), m_default_value(default_value) {} in OptionValueUInt64()
H A DOptionValueArch.h29 OptionValueArch(const ArchSpec &current_value, const ArchSpec &default_value) in OptionValueArch() argument
30 : m_current_value(current_value), m_default_value(default_value) {} in OptionValueArch()
H A DOptionValueSInt64.h24 OptionValueSInt64(int64_t current_value, int64_t default_value) in OptionValueSInt64() argument
25 : m_current_value(current_value), m_default_value(default_value) {} in OptionValueSInt64()
H A DOptionValueFileSpec.h26 OptionValueFileSpec(const FileSpec &current_value,
/llvm-project-15.0.7/libcxx/test/std/language.support/support.coroutines/end.to.end/
H A Dgenerator.pass.cpp23 Ty current_value; member
25 this->current_value = value; in yield_value()
54 Ty const &operator*() const { return Coro_.promise().current_value; } in operator *()
82 int current_value; member
84 this->current_value = value; in yield_value()
98 int current_value() { return p.promise().current_value; } in current_value() function
150 sum += g.current_value(); in test_mini_generator()
/llvm-project-15.0.7/libcxx/test/std/experimental/language.support/support.coroutines/end.to.end/
H A Dgenerator.pass.cpp23 Ty current_value; member
25 this->current_value = value; in yield_value()
54 Ty const &operator*() const { return _Coro.promise().current_value; } in operator *()
82 int current_value; member
84 this->current_value = value; in yield_value()
98 int current_value() { return p.promise().current_value; } in current_value() function
150 sum += g.current_value(); in test_mini_generator()
/llvm-project-15.0.7/libc/test/src/math/exhaustive/
H A Dexhaustive_test.cpp29 T current_value = start; in test_full_range() local
38 if (current_value == stop) in test_full_range()
41 range_begin = current_value; in test_full_range()
42 if (stop >= increment && stop - increment >= current_value) { in test_full_range()
43 range_end = current_value + increment; in test_full_range()
46 current_value = range_end; in test_full_range()
/llvm-project-15.0.7/llvm/test/tools/llvm-profgen/
H A Dcoroutine.test35 int current_value;
43 current_value = value;
48 int current_value() { return coro.promise().current_value; }
80 ans += g.current_value();
/llvm-project-15.0.7/clang/test/CodeGenCoroutines/
H A Dcoro-halo.cpp9 T current_value; member
11 this->current_value = value; in yield_value()
39 T const &operator*() const { return _Coro.promise().current_value; } in operator *()
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DOptionValueFileSpec.cpp28 OptionValueFileSpec::OptionValueFileSpec(const FileSpec &current_value, in OptionValueFileSpec() argument
31 : m_current_value(current_value), m_default_value(default_value), in OptionValueFileSpec()
/llvm-project-15.0.7/llvm/docs/
H A DCoroutines.rst732 int current_value;
733 <designate current_value to be coroutine promise>
736 current_value = i; <SUSPEND>; // corresponds to "yield i"
/llvm-project-15.0.7/mlir/include/mlir/Dialect/MemRef/IR/
H A DMemRefOps.td722 ^bb0(%current_value : f32):
724 %inc = arith.addf %c1, %current_value : f32