Searched defs:LibNode (Results 1 – 1 of 1) sorted by relevance
990 struct LibNode { struct992 enum Type {999 Type type;1000 String value;1001 std::vector<String> needed_libs;1003 LibNode() : type(NODE_NONE), value(), needed_libs() {} in LibNode() argument1005 explicit LibNode(const String& path) in LibNode() argument1008 void Set(Type type_p, const String& value_p) { in Set()