HomeSort by relevance Sort by last modified time
    Searched refs:lastPathComponent (Results 1 - 25 of 42) sorted by null

1 2

  /external/webkit/Source/WebCore/loader/mac/
LoaderNSURLExtras.mm 54 // Get the filename from the URL. Try the lastPathComponent first.
55 NSString *lastPathComponent = [[url path] lastPathComponent];
56 NSString *filename = filenameByFixingIllegalCharacters(lastPathComponent);
59 if ([filename length] == 0 || [lastPathComponent isEqualToString:@"/"]) {
60 // lastPathComponent is no good, try the host.
68 // Save the extension for later correction. Only correct the extension of the lastPathComponent.
  /external/webkit/Source/WebCore/platform/chromium/
FileSystemChromiumMac.mm 41 return [path lastPathComponent];
PasteboardChromium.cpp 114 title = url.lastPathComponent();
  /external/webkit/Source/WebKit/mac/Misc/
WebNSFileManagerExtras.m 158 NSString *filename = [[path lastPathComponent] _webkit_filenameByFixingIllegalCharacters];
165 NSString *lastPathComponent = [path lastPathComponent];
166 NSRange periodRange = [lastPathComponent rangeOfString:@"."];
171 extensions = [lastPathComponent substringFromIndex:periodRange.location + 1];
172 lastPathComponent = [lastPathComponent substringToIndex:periodRange.location];
173 pathWithoutExtensions = [[path stringByDeletingLastPathComponent] stringByAppendingPathComponent:lastPathComponent];
WebNSPasteboardExtras.mm 161 title = [[URL path] lastPathComponent];
  /external/webkit/Tools/DumpRenderTree/win/
DumpRenderTreeWin.h 52 std::wstring lastPathComponent(const std::wstring&);
ResourceLoadDelegate.cpp 342 printf("%S has MIME type %S\n", lastPathComponent(url).c_str(), mimeType.c_str());
DumpRenderTree.cpp 171 wstring lastPathComponent(const wstring& urlString)
177 RetainPtr<CFStringRef> lastPathComponent(CFURLCopyLastPathComponent(url.get()));
179 return cfStringRefToWString(lastPathComponent.get());
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
ApplicationCacheItemsView.js 151 var lastPathComponent = applicationCaches.lastPathComponent;
171 this._treeElement.subtitle = WebInspector.UIString("%s (%s)", lastPathComponent, totalSizeString);
Resource.js 132 this.lastPathComponent = "";
143 this.lastPathComponent = path.substring(lastSlashIndex + 1);
145 this.lastPathComponentLowerCase = this.lastPathComponent.toLowerCase();
162 this._displayName = this.lastPathComponent;
inspector.js     [all...]
  /external/webkit/Source/WebKit/chromium/tests/
KURLTest.cpp 74 const char* lastPathComponent;
95 EXPECT_EQ(cases[i].lastPathComponent, kurl.lastPathComponent());
109 EXPECT_EQ(cases[i].lastPathComponent, kurl.lastPathComponent());
146 EXPECT_EQ(cases[i].lastPath, kurl.lastPathComponent());
  /external/webkit/Source/WebCore/inspector/
InspectorApplicationCacheAgent.cpp 94 value->setString("lastPathComponent", applicationCacheInfo.m_manifest.lastPathComponent());
  /external/webkit/Source/WebCore/platform/mac/
WebCoreNSStringExtras.mm 94 NSString *directoryName = [[path stringByDeletingPathExtension] lastPathComponent];
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
WebDragClientMac.mm 140 title = [[URL path] lastPathComponent];
302 return [NSArray arrayWithObject:[path lastPathComponent]];
  /external/webkit/Source/WebKit2/PluginProcess/mac/
PluginProcessMac.mm 225 [[(NSString *)parameters.pluginPath lastPathComponent] stringByDeletingPathExtension],
  /external/webkit/Tools/WebKitLauncher/
WebKitNightlyEnabler.m 62 NSString *bundleFileName = [bundlePath lastPathComponent];
  /external/webkit/Source/WebCore/platform/
KURL.h 146 String lastPathComponent() const;
  /external/webkit/Source/WebCore/platform/wince/
PasteboardWinCE.cpp 169 title = url.lastPathComponent();
  /external/webkit/Source/WebKit2/UIProcess/Plugins/
PluginInfoStore.cpp 176 String filename = url.lastPathComponent();
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
NetscapePluginHostManager.mm 151 [[(NSString*)pluginPath lastPathComponent] stringByDeletingPathExtension], [[NSProcessInfo processInfo] processName]];
  /external/webkit/Tools/DumpRenderTree/mac/
ResourceLoadDelegate.mm 209 printf("%s has MIME type %s\n", [[[[response URL] relativePath] lastPathComponent] UTF8String], [[response MIMEType] UTF8String]);
UIDelegate.mm 67 message = [[message substringToIndex:range.location] stringByAppendingString:[[message substringFromIndex:NSMaxRange(range)] lastPathComponent]];
  /external/webkit/Source/WebCore/html/
ImageDocument.cpp 162 String fileName = decodeURLEscapeSequences(document()->url().lastPathComponent());
  /external/webkit/Source/WebCore/platform/win/
PasteboardWin.cpp 177 title = url.lastPathComponent();

Completed in 1441 milliseconds

1 2