Home | History | Annotate | Download | only in win

Lines Matching full:bstring

31 #include <WebCore/BString.h>
125 BString str = m_protectionSpace.host();
133 if (BString(authenticationMethod) == BString(WebURLAuthenticationMethodDefault))
135 else if (BString(authenticationMethod) == BString(WebURLAuthenticationMethodHTTPBasic))
137 else if (BString(authenticationMethod) == BString(WebURLAuthenticationMethodHTTPDigest))
139 else if (BString(authenticationMethod) == BString(WebURLAuthenticationMethodHTMLForm))
153 static BString& webURLProtectionSpaceHTTPBString = *new BString(WebURLProtectionSpaceHTTP);
154 static BString& webURLProtectionSpaceHTTPSBString = *new BString(WebURLProtectionSpaceHTTPS);
155 static BString& webURLProtectionSpaceFTPBString = *new BString(WebURLProtectionSpaceFTP);
156 static BString& webURLProtectionSpaceFTPSBString = *new BString(WebURLProtectionSpaceFTPS);
159 if (BString(protocol) == webURLProtectionSpaceHTTPBString)
161 else if (BString(protocol) == webURLProtectionSpaceHTTPSBString)
163 else if (BString(protocol) == webURLProtectionSpaceFTPBString)
165 else if (BString(protocol) == webURLProtectionSpaceFTPSBString)
181 static BString& webURLProtectionSpaceHTTPProxyBString = *new BString(WebURLProtectionSpaceHTTPProxy);
182 static BString& webURLProtectionSpaceHTTPSProxyBString = *new BString(WebURLProtectionSpaceHTTPSProxy);
183 static BString& webURLProtectionSpaceFTPProxyBString = *new BString(WebURLProtectionSpaceFTPProxy);
184 static BString& webURLProtectionSpaceSOCKSProxyBString = *new BString(WebURLProtectionSpaceSOCKSProxy);
187 if (BString(proxyType) == webURLProtectionSpaceHTTPProxyBString)
189 else if (BString(proxyType) == webURLProtectionSpaceHTTPSProxyBString)
191 else if (BString(proxyType) == webURLProtectionSpaceFTPProxyBString)
193 else if (BString(proxyType) == webURLProtectionSpaceSOCKSProxyBString)
267 BString bstring = m_protectionSpace.realm();
268 *result = bstring.release();