• Home
  • Raw
  • Download

Lines Matching refs:BString

125     BString str = m_protectionSpace.host();  in host()
133 if (BString(authenticationMethod) == BString(WebURLAuthenticationMethodDefault)) in coreScheme()
135 else if (BString(authenticationMethod) == BString(WebURLAuthenticationMethodHTTPBasic)) in coreScheme()
137 else if (BString(authenticationMethod) == BString(WebURLAuthenticationMethodHTTPDigest)) in coreScheme()
139 else if (BString(authenticationMethod) == BString(WebURLAuthenticationMethodHTMLForm)) in coreScheme()
153 static BString& webURLProtectionSpaceHTTPBString = *new BString(WebURLProtectionSpaceHTTP); in initWithHost()
154 static BString& webURLProtectionSpaceHTTPSBString = *new BString(WebURLProtectionSpaceHTTPS); in initWithHost()
155 static BString& webURLProtectionSpaceFTPBString = *new BString(WebURLProtectionSpaceFTP); in initWithHost()
156 static BString& webURLProtectionSpaceFTPSBString = *new BString(WebURLProtectionSpaceFTPS); in initWithHost()
159 if (BString(protocol) == webURLProtectionSpaceHTTPBString) in initWithHost()
161 else if (BString(protocol) == webURLProtectionSpaceHTTPSBString) in initWithHost()
163 else if (BString(protocol) == webURLProtectionSpaceFTPBString) in initWithHost()
165 else if (BString(protocol) == webURLProtectionSpaceFTPSBString) in initWithHost()
181 …static BString& webURLProtectionSpaceHTTPProxyBString = *new BString(WebURLProtectionSpaceHTTPProx… in initWithProxyHost()
182 …static BString& webURLProtectionSpaceHTTPSProxyBString = *new BString(WebURLProtectionSpaceHTTPSPr… in initWithProxyHost()
183 …static BString& webURLProtectionSpaceFTPProxyBString = *new BString(WebURLProtectionSpaceFTPProxy); in initWithProxyHost()
184 …static BString& webURLProtectionSpaceSOCKSProxyBString = *new BString(WebURLProtectionSpaceSOCKSPr… in initWithProxyHost()
187 if (BString(proxyType) == webURLProtectionSpaceHTTPProxyBString) in initWithProxyHost()
189 else if (BString(proxyType) == webURLProtectionSpaceHTTPSProxyBString) in initWithProxyHost()
191 else if (BString(proxyType) == webURLProtectionSpaceFTPProxyBString) in initWithProxyHost()
193 else if (BString(proxyType) == webURLProtectionSpaceSOCKSProxyBString) in initWithProxyHost()
267 BString bstring = m_protectionSpace.realm(); in realm()