Searched refs:default_value (Results 1 - 25 of 174) sorted by relevance

1234567

/external/clang/test/CodeGenCXX/
H A Dcatch-undef-behavior2.cpp4 bool GetBool(bool default_value) { argument
8 return GetOptionalBool(&value) ? value : default_value;
/external/chromium_org/cloud_print/gcp20/prototype/
H A Dcommand_line_reader.h14 uint16 ReadHttpPort(uint16 default_value);
16 uint32 ReadTtl(uint32 default_value);
18 std::string ReadServiceNamePrefix(const std::string& default_value);
20 std::string ReadDomainName(const std::string& default_value);
22 std::string ReadStatePath(const std::string& default_value);
H A Dcommand_line_reader.cc19 uint16 ReadHttpPort(uint16 default_value) { argument
26 http_port = default_value;
30 http_port = default_value;
37 uint32 ReadTtl(uint32 default_value) { argument
43 ttl = default_value;
50 std::string ReadServiceNamePrefix(const std::string& default_value) { argument
54 return service_name.empty() ? default_value : service_name;
57 std::string ReadDomainName(const std::string& default_value) { argument
62 return default_value;
67 return default_value;
79 ReadStatePath(const std::string& default_value) argument
[all...]
/external/chromium_org/base/prefs/
H A Dpref_registry_simple.cc18 bool default_value) {
19 RegisterPreference(path, new base::FundamentalValue(default_value));
23 int default_value) {
24 RegisterPreference(path, new base::FundamentalValue(default_value));
28 double default_value) {
29 RegisterPreference(path, new base::FundamentalValue(default_value));
33 const std::string& default_value) {
34 RegisterPreference(path, new base::StringValue(default_value));
39 const base::FilePath& default_value) {
40 RegisterPreference(path, new base::StringValue(default_value
17 RegisterBooleanPref(const char* path, bool default_value) argument
22 RegisterIntegerPref(const char* path, int default_value) argument
27 RegisterDoublePref(const char* path, double default_value) argument
32 RegisterStringPref(const char* path, const std::string& default_value) argument
37 RegisterFilePathPref( const char* path, const base::FilePath& default_value) argument
47 RegisterListPref(const char* path, base::ListValue* default_value) argument
56 RegisterDictionaryPref( const char* path, base::DictionaryValue* default_value) argument
62 RegisterInt64Pref(const char* path, int64 default_value) argument
[all...]
H A Dpref_registry_simple.h24 void RegisterBooleanPref(const char* path, bool default_value);
25 void RegisterIntegerPref(const char* path, int default_value);
26 void RegisterDoublePref(const char* path, double default_value);
27 void RegisterStringPref(const char* path, const std::string& default_value);
29 const base::FilePath& default_value);
32 void RegisterListPref(const char* path, base::ListValue* default_value);
34 base::DictionaryValue* default_value);
36 int64 default_value);
/external/chromium_org/third_party/cld/encodings/compact_lang_det/win/
H A Dcld_commandlineflags.h15 #define DEFINE_bool(name, default_value, comment) \
16 const bool FLAGS_##name = default_value;
18 #define DEFINE_int32(name, default_value, comment) \
19 const int32 FLAGS_##name = default_value;
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_server_field_info.h19 std::string default_value; member in struct:autofill::AutofillServerFieldInfo
/external/chromium_org/components/pref_registry/
H A Dpref_registry_syncable.cc78 bool default_value,
81 base::Value::CreateBooleanValue(default_value),
86 int default_value,
89 base::Value::CreateIntegerValue(default_value),
94 double default_value,
97 base::Value::CreateDoubleValue(default_value),
102 const std::string& default_value,
105 base::Value::CreateStringValue(default_value),
111 const base::FilePath& default_value,
115 default_value
77 RegisterBooleanPref(const char* path, bool default_value, PrefSyncStatus sync_status) argument
85 RegisterIntegerPref(const char* path, int default_value, PrefSyncStatus sync_status) argument
93 RegisterDoublePref(const char* path, double default_value, PrefSyncStatus sync_status) argument
101 RegisterStringPref(const char* path, const std::string& default_value, PrefSyncStatus sync_status) argument
109 RegisterFilePathPref( const char* path, const base::FilePath& default_value, PrefSyncStatus sync_status) argument
124 RegisterListPref(const char* path, base::ListValue* default_value, PrefSyncStatus sync_status) argument
135 RegisterDictionaryPref( const char* path, base::DictionaryValue* default_value, PrefSyncStatus sync_status) argument
186 RegisterInt64Pref( const char* path, int64 default_value, PrefSyncStatus sync_status) argument
196 RegisterUint64Pref( const char* path, uint64 default_value, PrefSyncStatus sync_status) argument
206 RegisterSyncablePreference( const char* path, base::Value* default_value, PrefSyncStatus sync_status) argument
[all...]
H A Dpref_registry_syncable.h69 bool default_value,
72 int default_value,
75 double default_value,
78 const std::string& default_value,
81 const base::FilePath& default_value,
88 base::ListValue* default_value,
91 base::DictionaryValue* default_value,
106 int64 default_value,
109 uint64 default_value,
120 base::Value* default_value,
[all...]
/external/chromium_org/third_party/hwcplus/include/cutils/
H A Dproperties.h54 int property_get(const char *key, char *value, const char *default_value);
69 int property_get(const char *key, char *value, const char *default_value) { argument
74 return __property_get_real(key, value, default_value);
/external/lldb/source/Interpreter/
H A DOptionGroupBoolean.cpp25 bool default_value,
27 m_value (default_value, default_value)
20 OptionGroupBoolean(uint32_t usage_mask, bool required, const char *long_option, int short_option, const char *usage_text, bool default_value, bool no_argument_toggle_default) argument
H A DOptionGroupString.cpp27 const char *default_value) :
28 m_value (default_value, default_value)
20 OptionGroupString(uint32_t usage_mask, bool required, const char *long_option, int short_option, uint32_t completion_type, lldb::CommandArgumentType argument_type, const char *usage_text, const char *default_value) argument
H A DOptionGroupUInt64.cpp27 uint64_t default_value) :
28 m_value (default_value, default_value)
20 OptionGroupUInt64(uint32_t usage_mask, bool required, const char *long_option, int short_option, uint32_t completion_type, lldb::CommandArgumentType argument_type, const char *usage_text, uint64_t default_value) argument
/external/lldb/include/lldb/Interpreter/
H A DOptionValueString.h73 const char *default_value) :
83 if (default_value && default_value[0])
84 m_default_value.assign (default_value);
105 const char *default_value,
117 if (default_value && default_value[0])
118 m_default_value.assign (default_value);
72 OptionValueString(const char *current_value, const char *default_value) argument
104 OptionValueString(const char *current_value, const char *default_value, ValidatorCallback validator, void* baton = NULL) argument
/external/chromium_org/chrome/browser/profile_resetter/
H A Djtl_instructions.h19 #define OP_COMPARE_STORED_BOOL(name, value, default_value) \
20 std::string(1, '\x11') + name + value + default_value
22 #define OP_COMPARE_STORED_HASH(name, value, default_value) \
23 std::string(1, '\x13') + name + value + default_value
/external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
H A Ddefaults.h42 const char* default_value);
H A Ddefaults.cc47 const char* default_value) {
54 value = default_value;
46 GetEnvVarOrDefault(const char* env_var_name, const char* default_value) argument
/external/chromium_org/chrome/browser/chromeos/login/screens/
H A Dscreen_context.h50 bool GetBoolean(const KeyType& key, bool default_value);
52 int GetInteger(const KeyType& key, int default_value);
54 double GetDouble(const KeyType& key, double default_value);
56 std::string GetString(const KeyType& key, const std::string& default_value);
59 const base::string16& default_value);
96 T Get(const KeyType& key, const T& default_value) { argument
99 return default_value;
H A Dscreen_context.cc42 bool ScreenContext::GetBoolean(const KeyType& key, bool default_value) { argument
43 return Get(key, default_value);
50 int ScreenContext::GetInteger(const KeyType& key, int default_value) { argument
51 return Get(key, default_value);
58 double ScreenContext::GetDouble(const KeyType& key, double default_value) { argument
59 return Get(key, default_value);
67 const std::string& default_value) {
68 return Get(key, default_value);
76 const base::string16& default_value) {
77 return Get(key, default_value);
66 GetString(const KeyType& key, const std::string& default_value) argument
75 GetString16(const KeyType& key, const base::string16& default_value) argument
[all...]
/external/chromium_org/chrome/service/
H A Dservice_process_prefs.cc31 const std::string& default_value) const {
35 return default_value;
46 bool default_value) const {
50 return default_value;
60 int default_value) const {
62 int result = default_value;
64 return default_value;
/external/nanopb-c/generator/proto/
H A Dnanopb_pb2.py59 has_default_value=False, default_value=None,
67 has_default_value=False, default_value=None,
75 has_default_value=False, default_value=None,
83 has_default_value=False, default_value=None,
99 has_default_value=False, default_value=0,
106 has_default_value=False, default_value=0,
113 has_default_value=True, default_value=0,
120 has_default_value=True, default_value=True,
127 has_default_value=True, default_value=False,
H A Dplugin_pb2.py28 has_default_value=False, default_value=[],
35 has_default_value=False, default_value=unicode("", "utf-8"),
42 has_default_value=False, default_value=[],
70 has_default_value=False, default_value=unicode("", "utf-8"),
77 has_default_value=False, default_value=unicode("", "utf-8"),
84 has_default_value=False, default_value=unicode("", "utf-8"),
111 has_default_value=False, default_value=unicode("", "utf-8"),
118 has_default_value=False, default_value=[],
/external/chromium_org/extensions/common/
H A Dfeature_switch.cc106 DefaultValue default_value) {
107 Init(CommandLine::ForCurrentProcess(), switch_name, default_value); local
112 DefaultValue default_value) {
113 Init(command_line, switch_name, default_value);
118 DefaultValue default_value) {
121 default_value_ = default_value == DEFAULT_ENABLED;
105 FeatureSwitch(const char* switch_name, DefaultValue default_value) argument
110 FeatureSwitch(const CommandLine* command_line, const char* switch_name, DefaultValue default_value) argument
116 Init(const CommandLine* command_line, const char* switch_name, DefaultValue default_value) argument
/external/chromium_org/third_party/protobuf/
H A Ddescriptor_pb2.py187 has_default_value=False, default_value=[],
215 has_default_value=False, default_value=unicode("", "utf-8"),
222 has_default_value=False, default_value=unicode("", "utf-8"),
229 has_default_value=False, default_value=[],
236 has_default_value=False, default_value=[],
243 has_default_value=False, default_value=[],
250 has_default_value=False, default_value=[],
257 has_default_value=False, default_value=[],
264 has_default_value=False, default_value=None,
292 has_default_value=False, default_value
[all...]
/external/chromium_org/media/cast/test/utility/
H A Dinput_builder.h21 const std::string& default_value,

Completed in 850 milliseconds

1234567