Home | History | Annotate | Download | only in shill

Lines Matching defs:string

22 #include <string>
44 using std::string;
65 const brillo::Any PropertyStoreTest::kStringV = brillo::Any(string());
98 string()) {
138 PropertyStore* store, const string& name, Error* error);
192 PropertyStore* store, const string& name, Error* error) {
198 PropertyStore* store, const string& name, Error* error) {
204 PropertyStore* store, const string& name, Error* error) {
209 template<> bool PropertyStoreTypedTest<string>::SetProperty(
210 PropertyStore* store, const string& name, Error* error) {
211 string new_value = "new value";
216 PropertyStore* store, const string& name, Error* error) {
223 PropertyStore* store, const string& name, Error* error) {
230 PropertyStore* store, const string& name, Error* error) {
237 PropertyStore* store, const string& name, Error* error) {
243 PropertyStore* store, const string& name, Error* error) {
249 PropertyStore* store, const string& name, Error* error) {
255 PropertyStore* store, const string& name, Error* error) {
337 const string keys[] = {"boolp1", "boolp2"};
358 const string keys[] = {"int16p1", "int16p2"};
379 const string keys[] = {"int32p1", "int32p2"};
400 const string keys[] = {"stringp1", "stringp2"};
401 string values[] = {"noooo", "yesss"};
405 ReadablePropertyConstIterator<string> it = store.GetStringPropertiesIter();
415 string test_value;
421 const string keys[] = {"stringmapp1", "stringmapp2"};
445 const string keys[] = {"stringmapsp1", "stringmapsp2"};
473 const string keys[] = {"stringsp1", "stringsp2"};
475 string element;
500 const string keys[] = {"uint8p1", "uint8p2"};
521 const string keys[] = {"uint16p", "uint16p1"};
550 const string key = "boolp";
568 const string key = "int16p";
586 const string key = "int32p";
604 const string key = "stringp";
605 string value = "noooo";
609 string test_value;
615 string new_value = "yesss";
622 const string key = "stringmapp";
642 const string key = "stringsp";
644 string element;
657 string new_element;
666 const string key = "uint8p";
684 const string key = "uint16p";
702 const string key = "uint32p";
721 const string key = "keyvaluestorep";
742 const string kBoolKey = "boolp";
743 const string kKeyValueStoreKey = "keyvaluestorep";
744 const string kInt16Key = "int16p";
745 const string kInt32Key = "int32p";
746 const string kStringKey = "stringp";
747 const string kStringsKey = "stringsp";
748 const string kStringmapKey = "stringmapp";
749 const string kUint8Key = "uint8p";
750 const string kUint16Key = "uint16p";
751 const string kUint32Key = "uint32p";
755 string string_value = "string";
789 string new_string_value = "strings";
826 EXPECT_EQ(new_string_value, result_dict[kStringKey].Get<string>());