OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BaseVariable
(Results
1 - 7
of
7
) sorted by null
/system/update_engine/update_manager/
variable.h
56
class
BaseVariable
{
64
virtual void ValueChanged(
BaseVariable
* variable) = 0;
67
virtual ~
BaseVariable
() {
95
virtual void AddObserver(
BaseVariable
::ObserverInterface* observer) {
102
virtual void RemoveObserver(
BaseVariable
::ObserverInterface* observer) {
107
// Creates a
BaseVariable
using the default polling interval (5 minutes).
108
BaseVariable
(const std::string& name, VariableMode mode)
109
:
BaseVariable
(name, mode,
112
// Creates a
BaseVariable
with mode kVariableModePoll and the provided
114
BaseVariable
(const std::string& name, base::TimeDelta poll_interval
[
all
...]
variable_unittest.cc
88
class BaseVariableObserver : public
BaseVariable
::ObserverInterface {
90
void ValueChanged(
BaseVariable
* variable) {
95
vector<
BaseVariable
*> calls_;
137
class BaseVariableObserverRemover : public
BaseVariable
::ObserverInterface {
141
void ValueChanged(
BaseVariable
* variable) override {
148
void OnCallRemoveObserver(
BaseVariable
::ObserverInterface* observer) {
155
vector<
BaseVariable
::ObserverInterface*> remove_observers_;
evaluation_context.h
66
private
BaseVariable
::ObserverInterface {
133
//
BaseVariable
::ObserverInterface override.
134
void ValueChanged(
BaseVariable
* var) override;
153
typedef std::map<
BaseVariable
*, BoxedValue> ValueCacheMap;
evaluation_context-inl.h
49
static_cast<
BaseVariable
*>(var), BoxedValue(result));
generic_variables_unittest.cc
186
class CallCounterObserver : public
BaseVariable
::ObserverInterface {
188
void ValueChanged(
BaseVariable
* variable) {
evaluation_context.cc
111
void EvaluationContext::ValueChanged(
BaseVariable
* var) {
/external/swiftshader/third_party/subzero/src/
IceCfg.cpp
[
all
...]
Completed in 670 milliseconds