HomeSort by relevance Sort by last modified time
    Searched refs:out_value (Results 1 - 25 of 71) sorted by null

1 2 3

  /frameworks/av/libvideoeditor/osal/src/
M4OSA_Random.c 62 * @fn M4OSA_ERR M4OSA_rand(M4OSA_Int32* out_value, M4OSA_UInt32 max_value)
65 * returns this number in out_value. For instance, a max_value
68 * @param out_value (OUT): on return, points to random result
74 M4OSA_ERR M4OSA_rand(M4OSA_Int32* out_value, M4OSA_UInt32 max_value)
76 if( (out_value == M4OSA_NULL) || (max_value < 1) )
81 (*out_value) = rand();
85 (*out_value) = (((*out_value) * max_value) / ((M4OSA_UInt32)RAND_MAX + 1)) + 1;
  /external/chromium_org/ppapi/shared_impl/
socket_option_data.cc 19 bool SocketOptionData::GetBool(bool* out_value) const {
20 if (!out_value || type_ != TYPE_BOOL)
22 *out_value = value_ != 0;
26 bool SocketOptionData::GetInt32(int32_t* out_value) const {
27 if (!out_value || type_ != TYPE_INT32)
29 *out_value = value_;
socket_option_data.h 26 bool GetBool(bool* out_value) const;
27 bool GetInt32(int32_t* out_value) const;
  /external/chromium/chrome/browser/prefs/
proxy_prefs.cc 37 bool IntToProxyMode(int in_value, ProxyMode* out_value) {
38 DCHECK(out_value);
41 *out_value = static_cast<ProxyMode>(in_value);
46 bool StringToProxyMode(const std::string& in_value, ProxyMode* out_value) {
47 DCHECK(out_value);
50 return IntToProxyMode(i, out_value);
proxy_prefs.h 47 bool IntToProxyMode(int in_value, ProxyMode* out_value);
49 ProxyMode* out_value);
  /external/chromium_org/chrome/browser/prefs/
proxy_prefs.cc 33 bool IntToProxyMode(int in_value, ProxyMode* out_value) {
34 DCHECK(out_value);
37 *out_value = static_cast<ProxyMode>(in_value);
41 bool StringToProxyMode(const std::string& in_value, ProxyMode* out_value) {
42 DCHECK(out_value);
45 return IntToProxyMode(i, out_value);
proxy_prefs.h 62 bool IntToProxyMode(int in_value, ProxyMode* out_value);
63 bool StringToProxyMode(const std::string& in_value, ProxyMode* out_value);
  /external/chromium_org/base/
values.h 90 // returned through the |out_value| parameter and true is returned;
91 // otherwise, false is returned and |out_value| is unchanged.
92 virtual bool GetAsBoolean(bool* out_value) const;
93 virtual bool GetAsInteger(int* out_value) const;
94 virtual bool GetAsDouble(double* out_value) const;
95 virtual bool GetAsString(std::string* out_value) const;
96 virtual bool GetAsString(string16* out_value) const;
97 virtual bool GetAsList(ListValue** out_value);
98 virtual bool GetAsList(const ListValue** out_value) const;
99 virtual bool GetAsDictionary(DictionaryValue** out_value);
    [all...]
values.cc 114 bool Value::GetAsBoolean(bool* out_value) const {
118 bool Value::GetAsInteger(int* out_value) const {
122 bool Value::GetAsDouble(double* out_value) const {
126 bool Value::GetAsString(std::string* out_value) const {
130 bool Value::GetAsString(string16* out_value) const {
134 bool Value::GetAsList(ListValue** out_value) {
138 bool Value::GetAsList(const ListValue** out_value) const {
142 bool Value::GetAsDictionary(DictionaryValue** out_value) {
146 bool Value::GetAsDictionary(const DictionaryValue** out_value) const {
202 bool FundamentalValue::GetAsBoolean(bool* out_value) const
    [all...]
  /external/chromium/base/
values.h 89 // the value is returned through the |out_value| parameter and true is
90 // returned; otherwise, false is returned and |out_value| is unchanged.
91 virtual bool GetAsBoolean(bool* out_value) const;
92 virtual bool GetAsInteger(int* out_value) const;
93 virtual bool GetAsDouble(double* out_value) const;
94 virtual bool GetAsString(std::string* out_value) const;
95 virtual bool GetAsString(string16* out_value) const;
96 virtual bool GetAsList(ListValue** out_value);
134 virtual bool GetAsBoolean(bool* out_value) const;
135 virtual bool GetAsInteger(int* out_value) const
    [all...]
values.cc 102 bool Value::GetAsBoolean(bool* out_value) const {
106 bool Value::GetAsInteger(int* out_value) const {
110 bool Value::GetAsDouble(double* out_value) const {
114 bool Value::GetAsString(std::string* out_value) const {
118 bool Value::GetAsString(string16* out_value) const {
122 bool Value::GetAsList(ListValue** out_value) {
167 bool FundamentalValue::GetAsBoolean(bool* out_value) const {
168 if (out_value && IsType(TYPE_BOOLEAN))
169 *out_value = boolean_value_;
173 bool FundamentalValue::GetAsInteger(int* out_value) const
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_scoped_prefs.h 24 bool* out_value) const = 0;
29 int* out_value) const = 0;
34 std::string* out_value) const = 0;
39 const base::ListValue** out_value) const = 0;
45 const base::DictionaryValue** out_value) const = 0;
  /external/chromium_org/chromeos/network/
managed_state.cc 74 bool* out_value) {
80 if (*out_value == new_value)
82 *out_value = new_value;
88 int* out_value) {
94 if (*out_value == new_value)
96 *out_value = new_value;
102 std::string* out_value) {
108 if (*out_value == new_value)
110 *out_value = new_value;
116 uint32* out_value) {
    [all...]
  /external/chromium_org/content/browser/webui/
web_ui_message_handler.cc 29 double* out_value) {
32 return base::StringToDouble(string_value, out_value);
33 if (value->GetDouble(0, out_value))
  /external/chromium/chrome/browser/chromeos/
cros_settings.h 45 // Gets settings value of given |path| to |out_value|.
46 // Note that the caller owns |out_value| returned.
47 bool Get(const std::string& path, Value** out_value) const;
59 bool GetBoolean(const std::string& path, bool* out_value) const;
60 bool GetInteger(const std::string& path, int* out_value) const;
61 bool GetDouble(const std::string& path, double* out_value) const;
62 bool GetString(const std::string& path, std::string* out_value) const;
cros_settings_provider.h 22 // Gets settings value of given |path| to |out_value|.
23 // Note that |out_value| is owned by the caller, not this class.
24 virtual bool Get(const std::string& path, Value** out_value) const = 0;
  /external/chromium_org/chrome/browser/extensions/api/signedin_devices/
signedin_devices_api.cc 29 const base::DictionaryValue* out_value = NULL; local
33 &out_value) || out_value == NULL) {
37 out_value = dictionary.get();
44 return out_value;
  /external/chromium_org/remoting/host/
host_config.h 49 std::string* out_value) const = 0;
50 virtual bool GetBoolean(const std::string& path, bool* out_value) const = 0;
in_memory_host_config.h 29 std::string* out_value) const OVERRIDE;
31 bool* out_value) const OVERRIDE;
in_memory_host_config.cc 19 std::string* out_value) const {
21 return values_->GetString(path, out_value);
25 bool* out_value) const {
27 return values_->GetBoolean(path, out_value);
  /frameworks/av/libvideoeditor/osal/inc/
M4OSA_Memory.h 48 M4OSAL_MEMORY_EXPORT_TYPE extern M4OSA_ERR M4OSA_rand(M4OSA_Int32* out_value,
  /external/chromium_org/chrome/common/extensions/
manifest.h 132 bool Get(const std::string& path, const base::Value** out_value) const;
133 bool GetBoolean(const std::string& path, bool* out_value) const;
134 bool GetInteger(const std::string& path, int* out_value) const;
135 bool GetString(const std::string& path, std::string* out_value) const;
136 bool GetString(const std::string& path, string16* out_value) const;
138 const base::DictionaryValue** out_value) const;
140 const base::ListValue** out_value) const;
manifest.cc 187 const std::string& path, const base::Value** out_value) const {
188 return CanAccessPath(path) && value_->Get(path, out_value);
192 const std::string& path, bool* out_value) const {
193 return CanAccessPath(path) && value_->GetBoolean(path, out_value);
197 const std::string& path, int* out_value) const {
198 return CanAccessPath(path) && value_->GetInteger(path, out_value);
202 const std::string& path, std::string* out_value) const {
203 return CanAccessPath(path) && value_->GetString(path, out_value);
207 const std::string& path, string16* out_value) const {
208 return CanAccessPath(path) && value_->GetString(path, out_value);
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/chromeos/login/
base_screen_handler_utils.h 29 inline bool ParseValue(const Value* value, T* out_value);
32 inline bool ParseValue<bool>(const Value* value, bool* out_value) {
33 return value->GetAsBoolean(out_value);
37 inline bool ParseValue<int>(const Value* value, int* out_value) {
38 return value->GetAsInteger(out_value);
42 inline bool ParseValue<double>(const Value* value, double* out_value) {
43 return value->GetAsDouble(out_value);
48 std::string* out_value) {
49 return value->GetAsString(out_value);
54 base::string16* out_value) {
    [all...]
  /external/chromium_org/chrome/browser/chromeos/settings/
cros_settings.h 78 bool GetBoolean(const std::string& path, bool* out_value) const;
79 bool GetInteger(const std::string& path, int* out_value) const;
80 bool GetDouble(const std::string& path, double* out_value) const;
81 bool GetString(const std::string& path, std::string* out_value) const;
83 const base::ListValue** out_value) const;
85 const base::DictionaryValue** out_value) const;

Completed in 901 milliseconds

1 2 3