Home
last modified time | relevance | path

Searched refs:fileURL (Results 1 – 5 of 5) sorted by relevance

/third_party/node/test/parallel/
Dtest-url-fileurltopath.js57 { path: 'C:\\foo', fileURL: 'file:///C:/foo' }, property
59 { path: 'C:\\FOO', fileURL: 'file:///C:/FOO' }, property
61 { path: 'C:\\dir\\foo', fileURL: 'file:///C:/dir/foo' }, property
63 { path: 'C:\\dir\\', fileURL: 'file:///C:/dir/' }, property
65 { path: 'C:\\foo.mjs', fileURL: 'file:///C:/foo.mjs' }, property
67 { path: 'C:\\foo bar', fileURL: 'file:///C:/foo%20bar' }, property
69 { path: 'C:\\foo?bar', fileURL: 'file:///C:/foo%3Fbar' }, property
71 { path: 'C:\\foo#bar', fileURL: 'file:///C:/foo%23bar' }, property
73 { path: 'C:\\foo&bar', fileURL: 'file:///C:/foo&bar' }, property
75 { path: 'C:\\foo=bar', fileURL: 'file:///C:/foo=bar' }, property
[all …]
Dtest-url-pathtofileurl.js7 const fileURL = url.pathToFileURL('test/').href; constant
8 assert.ok(fileURL.startsWith('file:///'));
9 assert.ok(fileURL.endsWith('/'));
13 const fileURL = url.pathToFileURL('test\\').href; constant
14 assert.ok(fileURL.startsWith('file:///'));
16 assert.ok(fileURL.endsWith('/'));
18 assert.ok(fileURL.endsWith('%5C'));
22 const fileURL = url.pathToFileURL('test/%').href; constant
23 assert.ok(fileURL.includes('%25'));
41 const fileURL = url.pathToFileURL('\\\\nas\\share\\path.txt').href; constant
[all …]
/third_party/skia/src/ports/
DSkOSFile_ios.h31 sk_cfp<CFURLRef> fileURL(CFBundleCopyResourceURL(mainBundle, pathRef.get(), in ios_get_path_in_bundle()
33 if (!fileURL) { in ios_get_path_in_bundle()
41 sk_cfp<CFStringRef> filePath(CFURLCopyFileSystemPath(fileURL.get(), kCFURLPOSIXPathStyle)); in ios_get_path_in_bundle()
/third_party/flutter/skia/third_party/externals/sdl/src/video/uikit/
DSDL_uikitappdelegate.m504 NSURL *fileURL = url.filePathURL;
505 if (fileURL != nil) {
506 SDL_SendDropFile(NULL, fileURL.path.UTF8String);
/third_party/flutter/skia/third_party/externals/sdl/src/video/cocoa/
DSDL_cocoawindow.m138 NSURL *fileURL = [NSURL fileURLWithPath:path];
141 [fileURL getResourceValue:&isAlias forKey:NSURLIsAliasFileKey error:nil];
146 NSData *bookmark = [NSURL bookmarkDataWithContentsOfURL:fileURL error:nil];
155 fileURL = resolvedURL;
170 if (!SDL_SendDropFile(sdlwindow, [[fileURL path] UTF8String])) {