Lines Matching refs:FQName

27 FQName::FQName() : mIsIdentifier(false) {}  in FQName()  function in android::FQName
29 bool FQName::parse(const std::string& s, FQName* into) { in parse()
33 FQName::FQName(const std::string& package, const std::string& version, const std::string& name, in FQName() function in android::FQName
40 bool FQName::setTo(const std::string& package, size_t majorVer, size_t minorVer, in setTo()
48 FQName other; in setTo()
55 FQName::FQName(const FQName& other) in FQName() function in android::FQName
63 bool FQName::isIdentifier() const { in isIdentifier()
67 bool FQName::isFullyQualified() const { in isFullyQualified()
71 bool FQName::isValidValueName() const { in isValidValueName()
76 bool FQName::isInterfaceName() const { in isInterfaceName()
120 bool FQName::setTo(const std::string &s) { in setTo()
208 std::string FQName::getRelativeFQName(const FQName& relativeTo) const { in getRelativeFQName()
233 const std::string& FQName::package() const { in package()
237 std::string FQName::version() const { in version()
244 std::string FQName::sanitizedVersion() const { in sanitizedVersion()
251 std::string FQName::atVersion() const { in atVersion()
256 void FQName::clear() { in clear()
264 void FQName::clearVersion(size_t* majorVer, size_t* minorVer) { in clearVersion()
268 bool FQName::parseVersion(const std::string& majorStr, const std::string& minorStr, in parseVersion()
278 bool FQName::parseVersion(const std::string& v, size_t* majorVer, size_t* minorVer) { in parseVersion()
289 bool FQName::setVersion(const std::string& v) { in setVersion()
293 void FQName::clearVersion() { in clearVersion()
297 bool FQName::parseVersion(const std::string& majorStr, const std::string& minorStr) { in parseVersion()
301 const std::string& FQName::name() const { in name()
305 std::vector<std::string> FQName::names() const { in names()
315 const std::string& FQName::valueName() const { in valueName()
319 FQName FQName::typeName() const { in typeName()
320 return FQName(mPackage, version(), mName); in typeName()
323 void FQName::applyDefaults( in applyDefaults()
339 std::string FQName::string() const { in string()
358 bool FQName::operator<(const FQName &other) const { in operator <()
362 bool FQName::operator==(const FQName &other) const { in operator ==()
366 bool FQName::operator!=(const FQName &other) const { in operator !=()
370 const std::string& FQName::getInterfaceName() const { in getInterfaceName()
376 std::string FQName::getInterfaceBaseName() const { in getInterfaceBaseName()
381 std::string FQName::getInterfaceAdapterName() const { in getInterfaceAdapterName()
385 std::string FQName::getInterfaceHwName() const { in getInterfaceHwName()
389 std::string FQName::getInterfaceProxyName() const { in getInterfaceProxyName()
393 std::string FQName::getInterfaceStubName() const { in getInterfaceStubName()
397 std::string FQName::getInterfacePassthroughName() const { in getInterfacePassthroughName()
401 FQName FQName::getInterfaceProxyFqName() const { in getInterfaceProxyFqName()
402 return FQName(package(), version(), getInterfaceProxyName()); in getInterfaceProxyFqName()
405 FQName FQName::getInterfaceAdapterFqName() const { in getInterfaceAdapterFqName()
406 return FQName(package(), version(), getInterfaceAdapterName()); in getInterfaceAdapterFqName()
409 FQName FQName::getInterfaceStubFqName() const { in getInterfaceStubFqName()
410 return FQName(package(), version(), getInterfaceStubName()); in getInterfaceStubFqName()
413 FQName FQName::getInterfacePassthroughFqName() const { in getInterfacePassthroughFqName()
414 return FQName(package(), version(), getInterfacePassthroughName()); in getInterfacePassthroughFqName()
417 FQName FQName::getTypesForPackage() const { in getTypesForPackage()
418 return FQName(package(), version(), "types"); in getTypesForPackage()
421 FQName FQName::getPackageAndVersion() const { in getPackageAndVersion()
422 return FQName(package(), version(), ""); in getPackageAndVersion()
425 FQName FQName::getTopLevelType() const { in getTopLevelType()
432 return FQName(mPackage, version(), mName.substr(0, idx)); in getTopLevelType()
435 std::string FQName::tokenName() const { in tokenName()
447 std::string FQName::cppNamespace() const { in cppNamespace()
452 std::string FQName::cppLocalName() const { in cppLocalName()
459 std::string FQName::cppName() const { in cppName()
472 std::string FQName::javaPackage() const { in javaPackage()
477 std::string FQName::javaName() const { in javaName()
482 std::vector<std::string> FQName::getPackageComponents() const { in getPackageComponents()
486 std::vector<std::string> FQName::getPackageAndVersionComponents(bool sanitized) const { in getPackageAndVersionComponents()
498 bool FQName::hasVersion() const { in hasVersion()
502 std::pair<size_t, size_t> FQName::getVersion() const { in getVersion()
506 FQName FQName::withVersion(size_t major, size_t minor) const { in withVersion()
507 FQName ret(*this); in withVersion()
513 size_t FQName::getPackageMajorVersion() const { in getPackageMajorVersion()
519 size_t FQName::getPackageMinorVersion() const { in getPackageMinorVersion()
525 bool FQName::endsWith(const FQName &other) const { in endsWith()
561 bool FQName::inPackage(const std::string &package) const { in inPackage()
578 FQName FQName::downRev() const { in downRev()
579 FQName ret(*this); in downRev()
585 FQName FQName::upRev() const { in upRev()
586 FQName ret(*this); in upRev()