Home
last modified time | relevance | path

Searched refs:defaultvalue (Results 1 – 9 of 9) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/ps/core/
Dfile_configuration.cc44 std::string FileConfiguration::Get(const std::string &key, const std::string &defaultvalue) const { in Get()
47 return defaultvalue; in Get()
53 std::string FileConfiguration::GetString(const std::string &key, const std::string &defaultvalue) c… in GetString()
56 return defaultvalue; in GetString()
Dconfiguration.h49 virtual std::string Get(const std::string &key, const std::string &defaultvalue) const = 0;
52 virtual std::string GetString(const std::string &key, const std::string &defaultvalue) const = 0;
58 virtual void Put(const std::string &key, const std::string &defaultvalue) = 0;
Dfile_configuration.h57 std::string Get(const std::string &key, const std::string &defaultvalue) const override;
59 std::string GetString(const std::string &key, const std::string &defaultvalue) const override;
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
Dvertexconversion.h179 OutputType defaultvalue)
189 out[elementindex] = defaultvalue;
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
Dvertexconversion.h179 OutputType defaultvalue)
189 out[elementindex] = defaultvalue;
/third_party/glib/gio/tests/
D.gitignore23 defaultvalue
Dmeson.build57 'defaultvalue' : {'extra_sources' : [giotypefuncs_inc]},
/third_party/python/Objects/
Dabstract.c91 PyObject_LengthHint(PyObject *o, Py_ssize_t defaultvalue) in PyObject_LengthHint() argument
115 return defaultvalue; in PyObject_LengthHint()
123 return defaultvalue; in PyObject_LengthHint()
129 return defaultvalue; in PyObject_LengthHint()
/third_party/python/Doc/c-api/
Dobject.rst314 .. c:function:: Py_ssize_t PyObject_LengthHint(PyObject *o, Py_ssize_t defaultvalue)
319 equivalent to the Python expression ``operator.length_hint(o, defaultvalue)``.