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

1 2

  /external/libchrome/base/json/
json_value_converter.cc 17 return value.GetAsString(field);
22 return value.GetAsString(field);
json_reader_unittest.cc 55 EXPECT_TRUE(root->GetAsString(&value));
208 EXPECT_TRUE(root->GetAsString(&str_val));
216 EXPECT_TRUE(root->GetAsString(&str_val));
224 EXPECT_TRUE(root->GetAsString(&str_val));
232 EXPECT_TRUE(root->GetAsString(&str_val));
478 EXPECT_TRUE(root->GetAsString(&str_val));
502 EXPECT_TRUE(root->GetAsString(&str_val));
509 EXPECT_TRUE(root->GetAsString(&str_val));
544 EXPECT_TRUE(root->GetAsString(&str_val));
622 EXPECT_TRUE(dict_string_0->GetAsString(&s))
    [all...]
json_writer.cc 115 bool result = node.GetAsString(&value);
json_parser.cc 142 bool GetAsString(std::string* out_value) const override {
146 bool GetAsString(string16* out_value) const override {
155 return other->IsType(TYPE_STRING) && other->GetAsString(&other_string) &&
json_parser_unittest.cc 56 EXPECT_TRUE(value->GetAsString(&str));
json_value_converter.h 226 return value.GetAsString(&string_value) &&
json_value_serializer_unittest.cc 390 ASSERT_TRUE(elt && elt->GetAsString(&value));
  /external/libchrome/dbus/
dbus_statistics.h 20 // Enum to specify what level of detail to show in GetAsString
27 // Enum to specify how to format the display in GetAsString
61 CHROME_DBUS_EXPORT std::string GetAsString(ShowInString show,
dbus_statistics.cc 181 std::string GetAsString(ShowInString show, FormatString format) {
values_util.cc 239 bool success = value.GetAsString(&string_value);
  /external/libchrome/base/
values.h 88 virtual bool GetAsString(std::string* out_value) const;
89 virtual bool GetAsString(string16* out_value) const;
90 virtual bool GetAsString(const StringValue** out_value) const;
164 bool GetAsString(std::string* out_value) const override;
165 bool GetAsString(string16* out_value) const override;
166 bool GetAsString(const StringValue** out_value) const override;
values.cc 112 bool Value::GetAsString(std::string* /* out_value */) const {
116 bool Value::GetAsString(string16* /* out_value */) const {
120 bool Value::GetAsString(const StringValue** /* out_value */) const {
280 bool StringValue::GetAsString(std::string* out_value) const {
286 bool StringValue::GetAsString(string16* out_value) const {
292 bool StringValue::GetAsString(const StringValue** out_value) const {
306 return GetAsString(&lhs) && other->GetAsString(&rhs) && lhs == rhs;
556 return value->GetAsString(out_value);
565 return value->GetAsString(out_value)
    [all...]
values_unittest.cc 151 // Test overloaded GetAsString.
155 ASSERT_TRUE(narrow_value->GetAsString(&narrow));
156 ASSERT_TRUE(narrow_value->GetAsString(&utf16));
157 ASSERT_TRUE(narrow_value->GetAsString(&string_value));
162 ASSERT_TRUE(utf16_value->GetAsString(&narrow));
163 ASSERT_TRUE(utf16_value->GetAsString(&utf16));
164 ASSERT_TRUE(utf16_value->GetAsString(&string_value));
170 ASSERT_TRUE(narrow_value->GetAsString(static_cast<string16*>(NULL)));
171 ASSERT_TRUE(narrow_value->GetAsString(static_cast<std::string*>(NULL)));
172 ASSERT_TRUE(narrow_value->GetAsString(
    [all...]
  /external/libweave/third_party/chromium/base/json/
json_reader_unittest.cc 50 EXPECT_TRUE(root->GetAsString(&value));
203 EXPECT_TRUE(root->GetAsString(&str_val));
211 EXPECT_TRUE(root->GetAsString(&str_val));
219 EXPECT_TRUE(root->GetAsString(&str_val));
227 EXPECT_TRUE(root->GetAsString(&str_val));
473 EXPECT_TRUE(root->GetAsString(&str_val));
497 EXPECT_TRUE(root->GetAsString(&str_val));
504 EXPECT_TRUE(root->GetAsString(&str_val));
539 EXPECT_TRUE(root->GetAsString(&str_val));
599 EXPECT_TRUE(dict_string_0->GetAsString(&s))
    [all...]
json_writer.cc 115 bool result = node.GetAsString(&value);
json_parser.cc 141 bool GetAsString(std::string* out_value) const override {
150 return other->IsType(TYPE_STRING) && other->GetAsString(&other_string) &&
  /external/libweave/third_party/chromium/base/
values.cc 112 bool Value::GetAsString(std::string* /* out_value */) const {
116 bool Value::GetAsString(const StringValue** out_value) const {
271 bool StringValue::GetAsString(std::string* out_value) const {
277 bool StringValue::GetAsString(const StringValue** out_value) const {
291 return GetAsString(&lhs) && other->GetAsString(&rhs) && lhs == rhs;
531 return value->GetAsString(out_value);
662 return value->GetAsString(out_value);
928 return value->GetAsString(out_value);
values.h 87 virtual bool GetAsString(std::string* out_value) const;
88 virtual bool GetAsString(const StringValue** out_value) const;
159 bool GetAsString(std::string* out_value) const override;
160 bool GetAsString(const StringValue** out_value) const override;
  /external/libbrillo/brillo/
value_conversion.h 47 return in_value.GetAsString(out_value);
  /external/libchrome/base/trace_event/
trace_event_memory_overhead.cc 81 value.GetAsString(&string_value);
trace_event_argument.cc 270 value.GetAsString(&string_value);
324 value.GetAsString(&string_value);
memory_allocator_dump_unittest.cc 81 EXPECT_TRUE(attr_value->GetAsString(&attr_str_value));
  /external/libchrome/base/test/
trace_event_analyzer.cc 96 if (it.value().GetAsString(&str)) {
256 bool is_str = GetAsString(event, &str_value);
321 if (!left().GetAsString(event, &lhs) || !right().GetAsString(event, &rhs))
410 bool Query::GetAsString(const TraceEvent& event, std::string* str) const {
  /external/dbus-binding-generator/chromeos-dbus-bindings/
generate_chromeos_dbus_bindings.cc 112 if (!item->GetAsString(&interface_name)) {
  /system/connectivity/shill/
json_store.cc 140 value.GetAsString(unwrapped_string.get());
227 value.GetAsString(&native_string);

Completed in 1189 milliseconds

1 2