Exemple #1
0
void
URL::GetHostname(nsString& aHostname) const
{
  URL_GETTER(aHostname, GetHost);
}
Exemple #2
0
void
URL::GetPassword(nsString& aPassword) const
{
  URL_GETTER(aPassword, GetPassword);
}
Exemple #3
0
void
URL::GetHost(nsString& aHost) const
{
  URL_GETTER(aHost, GetHostPort);
}
Exemple #4
0
void
URLMainThread::GetHost(nsAString& aHost, ErrorResult& aRv) const
{
  URL_GETTER(aHost, GetHostPort);
}
Exemple #5
0
void
URL::GetUsername(nsString& aUsername) const
{
  URL_GETTER(aUsername, GetUsername);
}
Exemple #6
0
void
URLMainThread::GetUsername(nsAString& aUsername, ErrorResult& aRv) const
{
  URL_GETTER(aUsername, GetUsername);
}
Exemple #7
0
void
URLMainThread::GetPassword(nsAString& aPassword, ErrorResult& aRv) const
{
  URL_GETTER(aPassword, GetPassword);
}
Exemple #8
0
void
URL::GetHost(nsString& aHost, ErrorResult& aRv) const
{
  URL_GETTER(aHost, GetHostPort);
}
Exemple #9
0
void
URL::GetPassword(nsString& aPassword, ErrorResult& aRv) const
{
  URL_GETTER(aPassword, GetPassword);
}
Exemple #10
0
void
URL::GetUsername(nsString& aUsername, ErrorResult& aRv) const
{
  URL_GETTER(aUsername, GetUsername);
}
Exemple #11
0
void URL::GetProtocol(nsAString& aProtocol) const {
  URL_GETTER(aProtocol, GetScheme);
  aProtocol.Append(char16_t(':'));
}
Exemple #12
0
void URL::GetHref(nsAString& aHref) const { URL_GETTER(aHref, GetSpec); }