HomeSort by relevance Sort by last modified time
    Searched defs:fsPath (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/platform/android/
FileSystemAndroid.cpp 96 String fsPath = String(fsRep.data());
97 return fsPath.substring(fsPath.reverseFind('/') + 1);
  /external/webkit/Source/WebCore/platform/win/
ClipboardWin.cpp 261 String fsPath;
280 fsPath = filesystemPathFromUrlOrTitle(url, preferredTitle, extension.charactersWithNullTermination(), false);
282 if (fsPath.length() <= 0) {
288 int maxSize = min(fsPath.length(), WTF_ARRAY_LENGTH(fgd->fgd[0].cFileName));
289 CopyMemory(fgd->fgd[0].cFileName, (LPCWSTR)fsPath.characters(), maxSize * sizeof(UChar));
724 String fsPath = filesystemPathFromUrlOrTitle(url, titleStr, L".URL", true);
727 if (fsPath.length() <= 0)
746 unsigned maxSize = min(fsPath.length(), WTF_ARRAY_LENGTH(fgd->fgd[0].cFileName));
747 CopyMemory(fgd->fgd[0].cFileName, fsPath.characters(), maxSize * sizeof(UChar));

Completed in 83 milliseconds