Home | History | Annotate | Download | only in win

Lines Matching refs:url

82 void LayoutTestController::addDisallowedURL(JSStringRef url)
206 JSStringRef LayoutTestController::pathToLocalResource(JSContextRef context, JSStringRef url)
208 wstring input(JSStringGetCharactersPtr(url), JSStringGetLength(url));
229 void LayoutTestController::queueLoad(JSStringRef url, JSStringRef target)
240 if (FAILED(response->URL(&responseURLBSTR)))
245 // FIXME: We should do real relative URL resolution here.
250 wstring wURL = jsStringRefToWString(url);
590 RetainPtr<CFURLRef> url(AdoptCF, CFURLCreateWithString(0, urlString.get(), 0));
591 if (!url)
595 RetainPtr<CFStringRef> pathCF(AdoptCF, CFURLCopyFileSystemPath(url.get(), kCFURLPOSIXPathStyle));
612 url = CFURLCreateFromFileSystemRepresentation(0, (const UInt8*)utf8Vector.data(), utf8Vector.size() - 1, false);
613 if (!url)
616 resultPath = cfStringRefToWString(CFURLGetString(url.get()));