/external/webkit/Source/WebCore/platform/win/ |
H A D | FileSystemWin.cpp | 198 char tempPath[MAX_PATH]; local 199 int tempPathLength = ::GetTempPathA(WTF_ARRAY_LENGTH(tempPath), tempPath); 200 if (tempPathLength <= 0 || tempPathLength > WTF_ARRAY_LENGTH(tempPath)) 222 if (!PathCombineA(proposedPath, tempPath, tempFile)) 305 WCHAR tempPath[MAX_PATH]; 306 if (!GetTempFileNameW(tempDirPath, L"WEBKIT", 0, tempPath)) 309 HANDLE tempFileHandle = CreateFileW(tempPath, GENERIC_READ | GENERIC_WRITE, 0, 0, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0); 322 if (!MoveFileExW(tempPath, destination.charactersWithNullTermination(), MOVEFILE_REPLACE_EXISTING | MOVEFILE_COPY_ALLOWED))
|
H A D | ClipboardWin.cpp | 208 WCHAR tempPath[MAX_PATH]; 210 if (!::GetTempPath(WTF_ARRAY_LENGTH(tempPath), tempPath)) 212 if (!::PathAppend(tempPath, fileName.charactersWithNullTermination())) 214 LPCWSTR foundExtension = ::PathFindExtension(tempPath); 220 ::PathRemoveExtension(tempPath); 222 if (swprintf_s(filePath, MAX_PATH, TEXT("%s-%d%s"), tempPath, i, extension) == -1)
|
/external/webkit/Source/WebCore/platform/wince/ |
H A D | FileSystemWinCE.cpp | 194 wchar_t tempPath[MAX_PATH]; local 195 int tempPathLength = ::GetTempPath(WTF_ARRAY_LENGTH(tempPath), tempPath); 196 if (tempPathLength <= 0 || tempPathLength > WTF_ARRAY_LENGTH(tempPath)) 219 proposedPath = pathByAppendingComponent(String(tempPath), String(tempFile));
|
/external/webkit/Tools/Scripts/ |
H A D | svn-unapply | 182 my ($fh, $tempPath) = tempfile(basename($fullPath) . "-XXXXXXXX", 187 rename($fullPath, $tempPath); 189 rename($tempPath, $fullPath);
|
/external/clang/lib/ARCMigrate/ |
H A D | FileRemapper.cpp | 149 SmallString<64> tempPath; local 150 tempPath = path::filename(origFE->getName()); 151 tempPath += "-%%%%%%%%"; 152 tempPath += path::extension(origFE->getName()); 154 if (fs::unique_file(tempPath.str(), fd, tempPath) != llvm::errc::success) 155 return report("Could not create file: " + tempPath.str(), Diag); 162 const FileEntry *newE = FileMgr->getFile(tempPath);
|
/external/webkit/Source/WebCore/platform/brew/ |
H A D | FileSystemBrew.cpp | 193 String tempPath("fs:/~/tmp"); 198 IFILEMGR_MkDir(fileMgr.get(), tempPath.utf8().data()); 205 builder.append(tempPath);
|
/external/webkit/Source/WebCore/platform/gtk/ |
H A D | FileSystemGtk.cpp | 233 GOwnPtr<gchar> tempPath(g_build_filename(g_get_tmp_dir(), filename.get(), NULL)); 234 GRefPtr<GFile> file = adoptGRef(g_file_new_for_path(tempPath.get())); 239 return String::fromUTF8(tempPath.get());
|
/external/webkit/Source/WebCore/platform/qt/ |
H A D | FileSystemQt.cpp | 120 QTemporaryFile* tempFile = new QTemporaryFile(QDir::tempPath() + QLatin1Char('/') + QString(prefix));
|
/external/webkit/Source/WebKit/qt/tests/qwebplugindatabase/ |
H A D | tst_qwebplugindatabase.cpp | 117 database->addSearchPath(QDir::tempPath()); 119 QVERIFY(database->searchPaths().contains(QDir::tempPath())); 120 directories.append(QDir::tempPath());
|
/external/webkit/Tools/DumpRenderTree/chromium/ |
H A D | LayoutTestController.cpp | 854 OwnArrayPtr<WCHAR> tempPath = adoptArrayPtr(new WCHAR[bufferSize]); local 855 DWORD tempLength = ::GetTempPathW(bufferSize, tempPath.get()); 858 tempPath = adoptArrayPtr(new WCHAR[bufferSize]); 859 tempLength = GetTempPathW(bufferSize, tempPath.get()); 862 string resultPath(WebString(tempPath.get(), tempLength).utf8());
|
/external/webkit/Source/WebKit/qt/tests/qdeclarativewebview/ |
H A D | tst_qdeclarativewebview.cpp | 52 static QString tmpd = QDir::tempPath() + "/tst_qdeclarativewebview-"
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
H A D | org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
H A D | org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
/external/sqlite/dist/orig/ |
H A D | sqlite3.c | 23522 UniChar tempPath[CCHMAXPATH]; local 23532 if( UniStrToUcs( ucUtf8, tempPath, (char *)in, CCHMAXPATH ) != ULS_SUCCESS ) 23536 UniStrFromUcs( uclCp, out, tempPath, CCHMAXPATH ); 23551 UniChar tempPath[CCHMAXPATH]; local 23561 if( UniStrToUcs( uclCp, tempPath, (char *)in, CCHMAXPATH ) != ULS_SUCCESS ) 23565 UniStrFromUcs( ucUtf8, out, tempPath, CCHMAXPATH ); [all...] |
/external/sqlite/dist/ |
H A D | sqlite3.c | 23522 UniChar tempPath[CCHMAXPATH]; local 23532 if( UniStrToUcs( ucUtf8, tempPath, (char *)in, CCHMAXPATH ) != ULS_SUCCESS ) 23536 UniStrFromUcs( uclCp, out, tempPath, CCHMAXPATH ); 23551 UniChar tempPath[CCHMAXPATH]; local 23561 if( UniStrToUcs( uclCp, tempPath, (char *)in, CCHMAXPATH ) != ULS_SUCCESS ) 23565 UniStrFromUcs( ucUtf8, out, tempPath, CCHMAXPATH ); [all...] |