Home
last modified time | relevance | path

Searched refs:locationString (Results 1 – 3 of 3) sorted by relevance

/external/webkit/Source/WebKit/mac/WebView/
DWebPreferences.mm650 NSString *locationString = [self _stringValueForKey: WebKitUserStyleSheetLocationPreferenceKey];
652 if ([locationString _webkit_looksLikeAbsoluteURL]) {
653 return [NSURL _web_URLWithDataAsString:locationString];
655 locationString = [locationString stringByExpandingTildeInPath];
656 return [NSURL fileURLWithPath:locationString];
662 NSString *locationString;
665 locationString = [[URL path] _web_stringByAbbreviatingWithTildeInPath];
667 locationString = [URL _web_originalDataAsString];
670 if (!locationString)
671 locationString = @"";
[all …]
/external/webkit/Source/WebCore/bindings/v8/
DV8DOMWindowShell.cpp643 void V8DOMWindowShell::setLocation(DOMWindow* window, const String& locationString) in setLocation() argument
646 window->setLocation(locationString, state->activeWindow(), state->firstWindow()); in setLocation()
/external/webkit/Source/WebCore/bindings/js/
DJSDOMWindowCustom.cpp481 UString locationString = value.toString(exec); in setLocation() local
485 … impl()->setLocation(ustringToString(locationString), activeDOMWindow(exec), firstDOMWindow(exec)); in setLocation()