Lines Matching +refs:std +refs:dev

38 INTERFACE void error(int,const std::string&);
39 INTERFACE std::string to_string(int);
42 std::string _message;
43 virtual const std::string message()const {return _message;} in message()
44 Exception(const std::string& Message) in Exception()
51 std::string _cmd;
53 const std::string message()const;
55 Exception_CS(const std::string& Message, const CS& cmd);
58 std::string _key;
59 Exception_No_Match(const std::string& key) in Exception_No_Match()
65 std::string _device, _key, _scope;
66 Exception_Cant_Find(const std::string& dev, const std::string& key, const std::string& scope) in Exception_Cant_Find()
67 :Exception(dev + ": can't find: " + key + " in " + scope), in Exception_Cant_Find()
68 _device(dev), _key(key), _scope(scope) { in Exception_Cant_Find()
70 Exception_Cant_Find(const std::string& dev, const std::string& key) in Exception_Cant_Find()
71 :Exception(dev + ": can't find: " + key), in Exception_Cant_Find()
72 _device(dev), _key(key), _scope("") { in Exception_Cant_Find()
84 std::string _device, _name, _need_type;
85 Exception_Type_Mismatch(const std::string& dev, const std::string& name, in Exception_Type_Mismatch()
86 const std::string& type) in Exception_Type_Mismatch()
87 :Exception(dev + ": " + name + " is not a " + type), in Exception_Type_Mismatch()
88 _device(dev), _name(name), _need_type(type) { in Exception_Type_Mismatch()
92 std::string _device, _modelname, _need_type;
93 Exception_Model_Type_Mismatch(const std::string& d, const std::string& m, in Exception_Model_Type_Mismatch()
94 const std::string& n) in Exception_Model_Type_Mismatch()
100 Exception_End_Of_Input(const std::string& Message) in Exception_End_Of_Input()
105 Exception_Quit(const std::string& Message) in Exception_Quit()
110 Exception_File_Open(const std::string& Message) in Exception_File_Open()