Home
last modified time | relevance | path

Searched refs:init_ (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/third-party/benchmark/src/
H A Dre.h63 Regex() : init_(false) {} in Regex()
77 bool init_;
97 init_ = true; in Init()
106 return init_; in Init()
112 if (!init_) { in Match()
138 init_ = true; in Init()
143 if (init_) { in ~Regex()
149 if (!init_) { in Match()
/llvm-project-15.0.7/flang/include/flang/Semantics/
H A Dsymbol.h192 MaybeExpr &init() { return init_; } in init()
193 const MaybeExpr &init() const { return init_; } in init()
194 void set_init(MaybeExpr &&expr) { init_ = std::move(expr); } in set_init()
221 MaybeExpr init_;
262 std::optional<const Symbol *> init() const { return init_; } in init()
263 void set_init(const Symbol &symbol) { init_ = &symbol; } in set_init()
264 void set_init(std::nullptr_t) { init_ = nullptr; } in set_init()
268 std::optional<const Symbol *> init_; variable
379 MaybeIntExpr &init() { return init_; } in init()
380 const MaybeIntExpr &init() const { return init_; } in init()
[all …]
/llvm-project-15.0.7/flang/lib/Semantics/
H A Dsymbol.cpp382 DumpExpr(os, "init", x.init_); in operator <<()