OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:lastpathcomponent
(Results
1 - 25
of
45
) 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/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/Source/WebCore/inspector/
InspectorApplicationCacheAgent.cpp
94
value->setString("
lastPathComponent
", applicationCacheInfo.m_manifest.
lastPathComponent
());
/external/webkit/Source/WebCore/platform/chromium/
FileSystemChromiumMac.mm
41
return [path
lastPathComponent
];
PasteboardChromium.cpp
114
title = url.
lastPathComponent
();
/external/webkit/Tools/DumpRenderTree/win/
DumpRenderTreeWin.h
52
std::wstring
lastPathComponent
(const std::wstring&);
/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/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/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/WebKit2/PluginProcess/mac/
PluginProcessMac.mm
225
[[(NSString *)parameters.pluginPath
lastPathComponent
] stringByDeletingPathExtension],
/external/webkit/Source/WebKit2/UIProcess/Plugins/
PluginInfoStore.cpp
176
String filename = url.
lastPathComponent
();
/external/webkit/Source/WebCore/platform/wince/
PasteboardWinCE.cpp
169
title = url.
lastPathComponent
();
/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/Tools/WebKitLauncher/
WebKitNightlyEnabler.m
62
NSString *bundleFileName = [bundlePath
lastPathComponent
];
/external/chromium/chrome/browser/cocoa/
install_from_dmg.mm
402
NSString* application_name = [source_path
lastPathComponent
];
/external/webkit/Source/WebCore/html/
ImageDocument.cpp
162
String fileName = decodeURLEscapeSequences(document()->url().
lastPathComponent
());
/external/webkit/Source/WebCore/platform/
KURL.h
146
String
lastPathComponent
() const;
/external/webkit/Source/WebCore/platform/win/
PasteboardWin.cpp
177
title = url.
lastPathComponent
();
/external/webkit/Source/WebKit/mac/Plugins/Hosted/
NetscapePluginHostManager.mm
151
[[(NSString*)pluginPath
lastPathComponent
] stringByDeletingPathExtension], [[NSProcessInfo processInfo] processName]];
/external/webkit/Source/WebKit/mac/Plugins/
WebBasePluginPackage.mm
249
NSString *filename = [(NSString *)path
lastPathComponent
];
Completed in 1848 milliseconds
1
2