Home
last modified time | relevance | path

Searched defs:LibNode (Results 1 – 1 of 1) sorted by relevance

/ndk/sources/host-tools/ndk-depends/
Dndk-depends.cc990 struct LibNode { struct
992 enum Type {
999 Type type;
1000 String value;
1001 std::vector<String> needed_libs;
1003 LibNode() : type(NODE_NONE), value(), needed_libs() {} in LibNode() argument
1005 explicit LibNode(const String& path) in LibNode() argument
1008 void Set(Type type_p, const String& value_p) { in Set()