HomeSort by relevance Sort by last modified time
    Searched full:default_value (Results 26 - 50 of 273) sorted by null

12 3 4 5 6 7 8 91011

  /external/srec/tools/thirdparty/OpenFst/fst/lib/
compat.h 81 : address(addr), doc_string(doc), type_name(type), default_value(val) {}
86 const T default_value; member in struct:FlagDescription
153 void ShowDefault(bool default_value) const {
155 std::cout << (default_value ? "true" : "false");
157 void ShowDefault(const string &default_value) const {
159 std::cout << "\"" << default_value << "\""; local
161 template<typename V> void ShowDefault(const V& default_value) const {
163 std::cout << default_value; local
174 ShowDefault(desc.default_value);
  /external/chromium/chrome/browser/extensions/
extension_context_menu_api.h 28 // not present, |result| is set to |default_value| and the return value is
31 const ExtensionMenuItem::Type& default_value,
37 bool default_value,
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-port.cc 209 // the given flag; if it's not set, returns default_value.
212 bool BoolFromGTestEnv(const char* flag, bool default_value) {
216 default_value : strcmp(string_value, "0") != 0;
262 // doesn't represent a valid 32-bit integer, returns default_value.
263 Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) {
268 return default_value;
271 Int32 result = default_value;
275 (Message() << default_value).GetString().c_str());
277 return default_value;
284 // the given flag; if it's not set, returns default_value
    [all...]
  /external/chromium_org/net/proxy/
proxy_config_service_ios.cc 26 bool default_value) {
30 return default_value;
36 return default_value;
  /system/core/include/cutils/
properties.h 45 int property_get(const char *key, char *value, const char *default_value);
60 int property_get(const char *key, char *value, const char *default_value) {
65 return __property_get_real(key, value, default_value);
  /frameworks/rs/
rsCompatibilityLib.h 34 int property_get(const char *key, char *value, const char *default_value);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/env/
modifier.hpp 37 nfp::keyword<struct default_value_t> default_value; member in namespace:boost::BOOST_RT_PARAM_NAMESPACE::environment::__anon33330
  /external/chromium/chrome/browser/debugger/
devtools_remote_message.cc 32 const std::string& default_value) const {
35 return default_value;
devtools_remote_message.h 63 // Returns the header value providing default_value if the header is absent.
65 const std::string& default_value) const;
  /external/chromium_org/media/cast/test/utility/
input_helper.cc 18 const std::string& default_value,
22 default_value_(default_value),
input_helper.h 21 const std::string& default_value,
  /external/chromium_org/ui/aura/
window_property.h 76 T default_value; member in struct:aura::WindowProperty
86 value == property->default_value ? NULL : property->deallocator,
88 WindowPropertyCaster<T>::ToInt64(property->default_value));
90 old != WindowPropertyCaster<T>::ToInt64(property->default_value)) {
98 property, WindowPropertyCaster<T>::ToInt64(property->default_value)));
103 SetProperty(property, property->default_value);
  /external/chromium_org/third_party/protobuf/python/google/protobuf/
descriptor_pool.py 372 default_value=None,
413 field_desc.default_value = []
414 elif field_proto.HasField('default_value'):
418 field_desc.default_value = float(field_proto.default_value)
420 field_desc.default_value = field_proto.default_value
422 field_desc.default_value = field_proto.default_value.lower() == 'true'
424 field_desc.default_value = field_desc.enum_type.values_by_name
    [all...]
  /external/chromium/chrome/browser/prefs/
pref_service.cc 262 bool default_value) {
263 RegisterPreference(path, Value::CreateBooleanValue(default_value));
266 void PrefService::RegisterIntegerPref(const char* path, int default_value) {
267 RegisterPreference(path, Value::CreateIntegerValue(default_value));
270 void PrefService::RegisterDoublePref(const char* path, double default_value) {
271 RegisterPreference(path, Value::CreateDoubleValue(default_value));
275 const std::string& default_value) {
276 RegisterPreference(path, Value::CreateStringValue(default_value));
280 const FilePath& default_value) {
281 RegisterPreference(path, Value::CreateStringValue(default_value.value()))
    [all...]
pref_service.h 176 void RegisterBooleanPref(const char* path, bool default_value);
177 void RegisterIntegerPref(const char* path, int default_value);
178 void RegisterDoublePref(const char* path, double default_value);
179 void RegisterStringPref(const char* path, const std::string& default_value);
180 void RegisterFilePathPref(const char* path, const FilePath& default_value);
183 // These take ownership of the default_value:
184 void RegisterListPref(const char* path, ListValue* default_value);
185 void RegisterDictionaryPref(const char* path, DictionaryValue* default_value);
235 void RegisterInt64Pref(const char* path, int64 default_value);
311 // Registers a new preference at |path|. The |default_value| must not b
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiAbstractTextAttributeNode.java 36 protected static final String DEFAULT_VALUE = ""; //$NON-NLS-1$
41 private String mCurrentValue = DEFAULT_VALUE;
81 mCurrentValue = DEFAULT_VALUE;
  /external/chromium_org/net/quic/
quic_config.cc 28 void QuicNegotiableUint32::set(uint32 max, uint32 default_value) {
29 DCHECK_LE(default_value, max);
31 default_value_ = default_value;
122 QuicTag default_value) {
123 DCHECK(std::find(possible.begin(), possible.end(), default_value) !=
126 default_value_ = default_value;
  /external/chromium_org/chrome/browser/chromeos/options/
network_property_ui_data_unittest.cc 24 property.default_value()));
26 EXPECT_FALSE(property.default_value());
network_property_ui_data.h 40 const base::Value* default_value() const { return default_value_.get(); } function in class:chromeos::NetworkPropertyUIData
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
defaults.cc 47 const char* default_value) {
54 value = default_value;
  /external/harfbuzz/contrib/tables/
unicode_parse_common.py 31 def unicode_file_parse(input, map, default_value = None):
40 if value == default_value:
  /external/chromium_org/base/prefs/
pref_registry.h 51 void RegisterPreference(const char* path, base::Value* default_value);
  /external/chromium_org/google_apis/gaia/
gaia_urls.cc 53 const char* default_value,
59 *output_value = default_value;
64 const char* default_value) {
66 GetSwitchValueWithDefault(switch_value, default_value, &string_value);
  /external/jsilver/src/org/clearsilver/
DelegatedHdf.java 100 int default_value) {
101 return getHdf().getIntValue(hdfname, default_value);
104 public String getValue(String hdfname, String default_value) {
105 return getHdf().getValue(hdfname, default_value);
  /external/protobuf/src/google/protobuf/compiler/
parser_unittest.cc 361 " field { type:TYPE_INT32 default_value:\"1\" "ETC" }"
362 " field { type:TYPE_INT32 default_value:\"-2\" "ETC" }"
363 " field { type:TYPE_INT64 default_value:\"3\" "ETC" }"
364 " field { type:TYPE_INT64 default_value:\"-4\" "ETC" }"
365 " field { type:TYPE_UINT32 default_value:\"5\" "ETC" }"
366 " field { type:TYPE_UINT64 default_value:\"6\" "ETC" }"
367 " field { type:TYPE_FLOAT default_value:\"7.5\" "ETC" }"
368 " field { type:TYPE_FLOAT default_value:\"-8.5\" "ETC" }"
369 " field { type:TYPE_FLOAT default_value:\"9\" "ETC" }"
370 " field { type:TYPE_DOUBLE default_value:\"10.5\" "ETC" }
    [all...]

Completed in 410 milliseconds

12 3 4 5 6 7 8 91011