OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PrefValueMap
(Results
1 - 4
of
4
) sorted by null
/external/chromium/chrome/browser/prefs/
pref_value_map.h
18
class
PrefValueMap
{
23
PrefValueMap
();
24
virtual ~
PrefValueMap
();
62
void GetDifferingKeys(const
PrefValueMap
* other,
70
DISALLOW_COPY_AND_ASSIGN(
PrefValueMap
);
pref_value_map.cc
12
PrefValueMap
::
PrefValueMap
() {}
14
PrefValueMap
::~
PrefValueMap
() {
18
bool
PrefValueMap
::GetValue(const std::string& key, const Value** value) const {
29
bool
PrefValueMap
::GetValue(const std::string& key, Value** value) {
40
bool
PrefValueMap
::SetValue(const std::string& key, Value* value) {
56
bool
PrefValueMap
::RemoveValue(const std::string& key) {
67
void
PrefValueMap
::Clear() {
72
PrefValueMap
::iterator PrefValueMap::begin()
[
all
...]
/external/chromium_org/base/prefs/
pref_value_map.h
20
class BASE_PREFS_EXPORT
PrefValueMap
{
25
PrefValueMap
();
26
virtual ~
PrefValueMap
();
46
void Swap(
PrefValueMap
* other);
77
void GetDifferingKeys(const
PrefValueMap
* other,
85
DISALLOW_COPY_AND_ASSIGN(
PrefValueMap
);
pref_value_map.cc
12
PrefValueMap
::
PrefValueMap
() {}
14
PrefValueMap
::~
PrefValueMap
() {
18
bool
PrefValueMap
::GetValue(const std::string& key,
30
bool
PrefValueMap
::GetValue(const std::string& key, base::Value** value) {
41
bool
PrefValueMap
::SetValue(const std::string& key, base::Value* value) {
57
bool
PrefValueMap
::RemoveValue(const std::string& key) {
68
void
PrefValueMap
::Clear() {
73
void
PrefValueMap
::Swap(PrefValueMap* other)
[
all
...]
Completed in 524 milliseconds