Searched defs:default_value (Results 26 - 50 of 96) sorted by relevance

1234

/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/lldb/source/Interpreter/
H A DOptionValueFileSpec.cpp46 const FileSpec &default_value) :
49 m_default_value (default_value),
45 OptionValueFileSpec(const FileSpec &current_value, const FileSpec &default_value) argument
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_enum_field.cc51 const EnumValueDescriptor* default_value = descriptor->default_value_enum(); local
53 (*variables)["default"] = SimpleItoa(default_value->number());
/external/chromium_org/chrome/browser/chromeos/policy/
H A Ddevice_cloud_policy_manager_chromeos.cc78 // |default_value| if not present.
79 bool GetMachineFlag(const std::string& key, bool default_value) { argument
80 bool value = default_value;
84 return default_value;
H A Ddevice_cloud_policy_initializer.cc38 // |default_value| if not present.
39 bool GetMachineFlag(const std::string& key, bool default_value) { argument
40 bool value = default_value;
44 return default_value;
/external/chromium_org/chrome/browser/ui/views/autofill/
H A Ddecorated_textfield.cc29 const base::string16& default_value,
38 SetText(default_value);
28 DecoratedTextfield( const base::string16& default_value, const base::string16& placeholder, views::TextfieldController* controller) argument
H A Dexpanding_textfield.cc27 const base::string16& default_value,
38 SetText(default_value);
26 ExpandingTextfield( const base::string16& default_value, const base::string16& placeholder, bool multiline, views::TextfieldController* controller) argument
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_field.h66 const std::string& default_value() const { return default_value_; } function in class:autofill::AutofillField
/external/chromium_org/components/cloud_devices/common/
H A Ddescription_items.h75 // Represents CDD capability stored as JSON list with default_value value.
133 // Ex: "<CAPABILITY_NAME>": { "default_value": true }
148 bool default_value() const { return default_value_; } function in class:cloud_devices::BooleanCapability
/external/chromium_org/components/pref_registry/
H A Dpref_registry_syncable.cc78 bool default_value,
81 path, new base::FundamentalValue(default_value), sync_status);
85 int default_value,
88 path, new base::FundamentalValue(default_value), sync_status);
92 double default_value,
95 path, new base::FundamentalValue(default_value), sync_status);
99 const std::string& default_value,
102 path, new base::StringValue(default_value), sync_status);
107 const base::FilePath& default_value,
110 path, new base::StringValue(default_value
77 RegisterBooleanPref(const char* path, bool default_value, PrefSyncStatus sync_status) argument
84 RegisterIntegerPref(const char* path, int default_value, PrefSyncStatus sync_status) argument
91 RegisterDoublePref(const char* path, double default_value, PrefSyncStatus sync_status) argument
98 RegisterStringPref(const char* path, const std::string& default_value, PrefSyncStatus sync_status) argument
105 RegisterFilePathPref( const char* path, const base::FilePath& default_value, PrefSyncStatus sync_status) argument
118 RegisterListPref(const char* path, base::ListValue* default_value, PrefSyncStatus sync_status) argument
129 RegisterDictionaryPref( const char* path, base::DictionaryValue* default_value, PrefSyncStatus sync_status) argument
180 RegisterInt64Pref( const char* path, int64 default_value, PrefSyncStatus sync_status) argument
190 RegisterUint64Pref( const char* path, uint64 default_value, PrefSyncStatus sync_status) argument
200 RegisterSyncablePreference( const char* path, base::Value* default_value, PrefSyncStatus sync_status) argument
[all...]
/external/chromium_org/extensions/common/
H A Dfeature_switch.cc120 DefaultValue default_value) {
121 Init(CommandLine::ForCurrentProcess(), switch_name, default_value); local
126 DefaultValue default_value) {
127 Init(command_line, switch_name, default_value);
132 DefaultValue default_value) {
135 default_value_ = default_value == DEFAULT_ENABLED;
119 FeatureSwitch(const char* switch_name, DefaultValue default_value) argument
124 FeatureSwitch(const CommandLine* command_line, const char* switch_name, DefaultValue default_value) argument
130 Init(const CommandLine* command_line, const char* switch_name, DefaultValue default_value) argument
/external/chromium_org/net/proxy/
H A Dproxy_config_service_mac.cc29 bool default_value) {
33 return default_value;
39 return default_value;
27 GetBoolFromDictionary(CFDictionaryRef dict, CFStringRef key, bool default_value) argument
/external/chromium_org/third_party/cld/base/
H A Dcommandlineflags.h91 string default_value; // the default value, as a string member in struct:CommandLineFlagInfo
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/primitives/
H A Dinput_helpers.cc101 InputBuilder& InputBuilder::WithDefault(const std::string& default_value) { argument
102 assert(input_validator_->InputOk(default_value));
103 default_value_ = default_value;
/external/chromium_org/chrome/browser/chromeos/options/
H A Dnetwork_config_view.cc304 void ChildNetworkConfigView::GetShareStateForLoginState(bool* default_value, argument
306 *default_value = !LoginState::Get()->UserHasNetworkProfile();
/external/chromium_org/components/domain_reliability/
H A Dscheduler.cc28 unsigned default_value) {
30 return default_value;
38 return default_value;
27 GetUnsignedFieldTrialValueOrDefault(std::string field_trial_name, unsigned default_value) argument
/external/chromium_org/content/browser/battery_status/
H A Dbattery_status_manager_mac.cc27 // Returns |default_value| if the dictionary does not contain |key|, the
31 SInt64 default_value) {
39 return default_value;
44 bool default_value) {
48 return boolean ? CFBooleanGetValue(boolean) : default_value;
29 GetValueAsSInt64(CFDictionaryRef description, CFStringRef key, SInt64 default_value) argument
42 GetValueAsBoolean(CFDictionaryRef description, CFStringRef key, bool default_value) argument
/external/chromium_org/extensions/browser/api/bluetooth_low_energy/
H A Dbluetooth_low_energy_apitest.cc149 std::vector<uint8> default_value; local
157 default_value.assign(kTestCharacteristicDefaultValue0,
160 ON_CALL(*chrc0_, GetValue()).WillByDefault(ReturnRefOfCopy(default_value));
169 default_value.assign(kTestCharacteristicDefaultValue1,
172 ON_CALL(*chrc1_, GetValue()).WillByDefault(ReturnRefOfCopy(default_value));
188 default_value.assign(
191 ON_CALL(*desc0_, GetValue()).WillByDefault(ReturnRefOfCopy(default_value));
199 default_value.assign(
202 ON_CALL(*desc1_, GetValue()).WillByDefault(ReturnRefOfCopy(default_value));
/external/chromium_org/media/cast/net/
H A Dcast_transport_sender_impl.cc20 int default_value) {
25 return default_value;
18 LookupOptionWithDefault(const base::DictionaryValue& options, const std::string& path, int default_value) argument
/external/chromium_org/net/dns/
H A Ddns_config_service_win_unittest.cc400 bool default_value = (base::win::GetVersion() < base::win::VERSION_VISTA); local
408 { { false, 0 }, default_value },
/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DOptimize.c154 static PyObject* __Pyx_PyDict_GetItemDefault(PyObject* d, PyObject* key, PyObject* default_value); /*proto*/
158 static PyObject* __Pyx_PyDict_GetItemDefault(PyObject* d, PyObject* key, PyObject* default_value) { argument
165 value = default_value;
173 value = default_value;
177 if (default_value == Py_None)
178 default_value = NULL;
180 d, PYIDENT("get"), key, default_value, NULL);
189 static CYTHON_INLINE PyObject *__Pyx_PyDict_SetDefault(PyObject *d, PyObject *key, PyObject *default_value, int is_safe_type); /*proto*/
194 static CYTHON_INLINE PyObject *__Pyx_PyDict_SetDefault(PyObject *d, PyObject *key, PyObject *default_value, argument
200 value = PyDict_SetDefault(d, key, default_value);
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Ddynamic_message.cc292 string* default_value = local
296 new(field_ptr) string*(default_value);
/external/chromium_org/ui/gfx/win/
H A Ddpi.cc97 DWORD default_value) {
106 return default_value;
94 ReadRegistryValue(HKEY root, const wchar_t* base_key, const wchar_t* value_name, DWORD default_value) argument
/external/jsilver/src/org/clearsilver/
H A DDelegatedHdf.java100 int default_value) {
101 return getHdf().getIntValue(hdfname, default_value);
104 public String getValue(String hdfname, String default_value) { argument
105 return getHdf().getValue(hdfname, default_value);
99 getIntValue(String hdfname, int default_value) argument
/external/openfst/src/include/fst/
H A Dflags.h67 default_value(val) {}
73 const T default_value; member in struct:FlagDescription
153 usage += GetDefault(desc.default_value) + "\n ";
167 string GetDefault(bool default_value) const {
168 return default_value ? "true" : "false";
171 string GetDefault(const string &default_value) const {
172 return "\"" + default_value + "\"";
175 template<typename V> string GetDefault(const V& default_value) const {
177 strm << default_value; local

Completed in 928 milliseconds

1234