Home | History | Annotate | Download | only in update_manager

Lines Matching defs:source

2 // Copyright (C) 2014 The Android Open Source Project
40 int source = 5;
41 PollCopyVariable<int> var("var", source);
49 // Assign a different value to the source variable.
50 source = 42;
61 int source = 5;
63 PollCopyVariable<int> var("var", source, &is_set);
90 const CopyConstructorTestClass source;
91 ASSERT_FALSE(source.copied_);
93 PollCopyVariable<CopyConstructorTestClass> var("var", source);
104 int source = 5;
105 ConstCopyVariable<int> var("var", source);
109 source = 42;