Searched refs:unresolved_name (Results 1 – 3 of 3) sorted by relevance
443 AidlTypeSpecifier::AidlTypeSpecifier(const AidlLocation& location, const string& unresolved_name, in AidlTypeSpecifier() argument449 unresolved_name_(unresolved_name), in AidlTypeSpecifier()451 split_name_(Split(unresolved_name, ".")) {} in AidlTypeSpecifier()1488 std::optional<std::string> AidlDocument::ResolveName(const std::string& unresolved_name) const { in ResolveName()1490 const auto first_dot = unresolved_name.find_first_of('.'); in ResolveName()1492 (first_dot == std::string::npos) ? unresolved_name : unresolved_name.substr(0, first_dot); in ResolveName()1508 return unresolved_name; in ResolveName()
555 const string unresolved_name = type->GetUnresolvedName(); in load_and_validate_aidl() local556 const std::optional<string> canonical_name = doc->ResolveName(unresolved_name); in load_and_validate_aidl()
357 AidlTypeSpecifier(const AidlLocation& location, const string& unresolved_name, bool is_array,