Lines Matching refs:GetImpl
111 flags_internal::Flag<T>& GetImpl() const {
133 bool IsRetired() const { return GetImpl().IsRetired(); }
134 absl::string_view Name() const { return GetImpl().Name(); }
135 std::string Help() const { return GetImpl().Help(); }
136 bool IsModified() const { return GetImpl().IsModified(); }
138 return GetImpl().IsSpecifiedOnCommandLine();
140 std::string Filename() const { return GetImpl().Filename(); }
141 std::string DefaultValue() const { return GetImpl().DefaultValue(); }
142 std::string CurrentValue() const { return GetImpl().CurrentValue(); }
145 return GetImpl().template IsOfType<U>();
148 return flags_internal::FlagImplPeer::InvokeGet<T>(GetImpl());
151 flags_internal::FlagImplPeer::InvokeSet(GetImpl(), v);
153 void InvokeCallback() { GetImpl().InvokeCallback(); }
156 return flags_internal::FlagImplPeer::InvokeReflect(GetImpl());
297 #define ABSL_FLAG_IMPL_FLAG_PTR(flag) flag.GetImpl()