HomeSort by relevance Sort by last modified time
    Searched refs:filePath (Results 101 - 125 of 168) sorted by null

1 2 3 45 6 7

  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/
EventLogParser.java 122 * @param filePath
125 public boolean init(String filePath) {
127 BufferedReader reader = new BufferedReader(new FileReader(filePath));
522 * @param filePath the file path to write the file.
525 public void saveTags(String filePath) throws IOException {
526 File destFile = new File(filePath);
  /external/chromium/webkit/glue/
glue_serialize_unittest.cc 117 EXPECT_EQ(string16(a_elem.filePath), string16(b_elem.filePath));
  /frameworks/base/opengl/libs/GLES2_dbg/test/
test_server.cpp 28 static const char * filePath = "/data/local/tmp/dump.gles2dbg";
42 << filePath;
  /sdk/anttasks/src/com/android/ant/
DependencyGraph.java 317 // We should have a map of filepath to inputpath to quickly search through them?
328 String filePath = prereq.getAbsolutePath();
334 if (filePath.startsWith(inputFile.getAbsolutePath())) {
404 * @param filepath the file path to the text file
407 private static String readFile(String filepath) {
409 FileInputStream fStream = new FileInputStream(filepath);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutCanvas.java 893 IPath filePath = graphicalEditor.findResourceFile(url);
894 if (filePath == null) {
912 if (workspacePath.isPrefixOf(filePath)) {
913 IPath relativePath = filePath.makeRelativeTo(workspacePath);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringInputPage.java 278 String filePath = sLastResFilePath.get(projPath);
280 mResFileCombo.setText(filePath != null ? filePath : DEFAULT_RES_FILE_PATH);
517 for (String filePath : filePaths) {
518 mResFileCombo.add(filePath);
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
ExtraPackage.java 210 for (String filePath : projectFiles.split(Pattern.quote(File.pathSeparator))) {
211 filePath = filePath.trim();
212 if (filePath.length() > 0) {
213 filePaths.add(filePath);
  /external/webkit/Source/WebCore/platform/win/
ClipboardWin.cpp 191 WCHAR filePath[MAX_PATH];
200 wcscpy_s(filePath, MAX_PATH, localPathStr);
222 if (swprintf_s(filePath, MAX_PATH, TEXT("%s-%d%s"), tempPath, i, extension) == -1)
224 if (!::PathFileExists(filePath))
227 HANDLE tempFileHandle = CreateFile(filePath, GENERIC_READ | GENERIC_WRITE, 0, 0, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0);
240 SIZE_T dropFilesSize = sizeof(DROPFILES) + (sizeof(WCHAR) * (wcslen(filePath) + 2));
248 wcscpy((LPWSTR)(dropFiles + 1), filePath);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
VideoEditorHelper.java 432 final String filePath = location + dateFormat.format(date) +
435 "\t FilePath = " + filePath);
436 return filePath;
  /packages/apps/Gallery/src/com/android/camera/
ImageManager.java 209 String filePath = directory + "/" + filename;
220 degree[0] = getExifOrientation(filePath);
242 values.put(Images.Media.DATA, filePath);
252 public static int getExifOrientation(String filepath) {
256 exif = new ExifInterface(filepath);
  /sdk/eclipse/plugins/com.android.ide.eclipse.traceview/src/com/android/ide/eclipse/traceview/editors/
TraceviewEditor.java 141 IPath filePath = dialog.getResult();
142 if (filePath == null) {
147 IFile file = workspace.getRoot().getFile(filePath);
  /sdk/eventanalyzer/src/com/android/eventanalyzer/
EventAnalyzer.java 119 // get the filepath and break.
203 * @param filePath the location of the file.
206 private void parseTextLogFile(String filePath) throws IOException {
209 String tagFile = filePath + TAG_FILE_EXT;
224 new InputStreamReader(new FileInputStream(filePath)));
  /external/webkit/Source/WebCore/platform/network/
FormData.h 108 void appendFile(const String& filePath, bool shouldGenerateFile = false);
  /external/webkit/Source/WebCore/platform/qt/
FileSystemQt.cpp 83 return QDir::toNativeSeparators(QDir(path).filePath(component));
  /frameworks/base/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/
FwdLockEngine.cpp 499 const char *filePath = strchr(uri + sizeof(fileTag) - 1, '/');
500 if (NULL != filePath && onCanHandle(uniqueId, String8(filePath))) {
501 int fd = open(filePath, O_RDONLY);
  /sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/internal/repository/
SdkRepoSourceTest.java 513 for (String filePath : ((ExtraPackage) p).getProjectFiles()) {
514 filePaths.add(filePath);
635 for (String filePath : ep.getProjectFiles()) {
636 filePaths.add(filePath);
    [all...]
  /external/webkit/Source/WebCore/fileapi/
DOMFileSystemBase.cpp 60 bool DOMFileSystemBase::crackFileSystemURL(const KURL& url, AsyncFileSystem::Type& type, String& filePath)
86 filePath.swap(path);
  /frameworks/base/opengl/libs/GLES2_dbg/src/
server.cpp 43 const unsigned int maxFileSize, const char * const filePath)
56 file = fopen(filePath, "wb");
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
BitmapUtils.java 227 public static Bitmap createVideoThumbnail(String filePath) {
237 method.invoke(instance, filePath);
  /cts/tools/host/src/com/android/cts/
HostConfig.java 682 String filePath = mRoot + File.separator + fileName;
683 writeToFile(zipFile.getInputStream(entry), filePath);
684 filePathList.add(filePath);
686 xmlFilePath = filePath;
694 for (String filePath : filePathList) {
695 deleteFile(filePath);
    [all...]
  /frameworks/base/core/java/android/provider/
MediaStore.java 452 String filePath = c.getString(1);
510 String filePath = null;
581 if (filePath == null) {
587 filePath = c.getString(1);
590 bitmap = ThumbnailUtils.createVideoThumbnail(filePath, kind);
592 bitmap = ThumbnailUtils.createImageThumbnail(filePath, kind);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/xml/
Hyperlinks.java 536 private static void openPath(IPath filePath, IRegion region, int offset) {
542 if (workspacePath.isPrefixOf(filePath)) {
543 IPath relativePath = filePath.makeRelativeTo(workspacePath);
548 } else if (filePath.isAbsolute()) {
549 file = workspace.getFileForLocation(filePath);
556 AdtPlugin.log(ex, "Can't open %$1s", filePath); //$NON-NLS-1$
561 if (filePath.isAbsolute()) {
562 IFileStore fileStore = EFS.getLocalFileSystem().getStore(filePath);
583 AdtPlugin.log(ex, "Can't open %$1s", filePath); //$NON-NLS-1$
590 displayError(String.format("Could not find resource %1$s", filePath));
    [all...]
  /cts/tools/host/test/com/android/cts/
ConsoleTests.java 260 * @param filePath The entry to be added into the zip output stream.
262 private void addEntry(ZipOutputStream out, String filePath) throws IOException {
264 FileInputStream in = new FileInputStream(filePath);
265 out.putNextEntry(new ZipEntry(filePath));
  /external/clang/lib/ARCMigrate/
ARCMT.cpp 562 llvm::SmallString<64> filePath(file->getName());
563 Unit->getFileManager().FixupRelativePath(filePath);
564 Remapper.remap(filePath.str(), memBuf);
  /external/webkit/Source/WebKit/android/WebCoreSupport/
WebRequest.cpp 173 FilePath filePath(filename);
174 m_request->AppendFileToUpload(filePath);
283 FilePath path(m_url);

Completed in 788 milliseconds

1 2 3 45 6 7