HomeSort by relevance Sort by last modified time
    Searched refs:filePath (Results 26 - 50 of 70) sorted by null

12 3

  /packages/apps/Mms/src/com/android/mms/ui/
UriImage.java 114 String filePath;
116 filePath = c.getString(c.getColumnIndexOrThrow(Part.FILENAME));
117 if (TextUtils.isEmpty(filePath)) {
118 filePath = c.getString(
124 filePath = c.getString(
129 mPath = filePath;
  /dalvik/dx/src/com/android/dx/command/dump/
SsaDumper.java 57 * @param filePath the file path for the class, excluding any base
62 String filePath, Args args) {
63 SsaDumper sd = new SsaDumper(bytes, out, filePath, args);
72 * @param filePath the file path for the class, excluding any base
76 private SsaDumper(byte[] bytes, PrintStream out, String filePath,
78 super(bytes, out, filePath, true, args);
BlockDumper.java 77 * @param filePath the file path for the class, excluding any base
83 String filePath, boolean rop, Args args) {
85 new BlockDumper(bytes, out, filePath,
95 String filePath,
97 super(bytes, out, filePath, args);
  /external/webkit/WebKit/chromium/public/
WebHTTPBody.h 53 WebString filePath;
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaScannerService.java 217 args.putString("filepath", path);
237 String filePath = arguments.getString("filepath");
240 if (filePath != null) {
244 Uri uri = scanFile(filePath, arguments.getString("mimetype"));
246 listener.scanCompleted(filePath, uri);
  /cts/tools/host/src/com/android/cts/
TestHost.java 359 String filePath = getConfigFilePath(cfgPath);
361 if (loadConfig(filePath) == false) {
390 * @param filePath The file path.
393 static private String getConfigFilePath(final String filePath) {
394 if (filePath != null) {
395 if (!HostUtils.isFileExist(filePath)) {
396 Log.e("Configuration file \"" + filePath + "\" doesn't exist.", null);
404 return filePath;
  /cts/tests/tests/speech/src/android/speech/tts/cts/
TextToSpeechTest.java 166 private boolean isMusicFile(String filePath) {
171 mp.setDataSource(filePath);
  /cts/tools/host/test/com/android/cts/
CtsTestBase.java 120 * @param filePath The file to be created.
122 protected void createFile(String content, String filePath)
124 BufferedWriter out = new BufferedWriter(new FileWriter(filePath));
  /dalvik/libcore/luni/src/main/java/java/io/
FileInputStream.java 73 String filePath = (null == file ? null : file.getPath());
74 security.checkRead(filePath);
  /external/webkit/WebCore/platform/
SharedBuffer.h 58 static PassRefPtr<SharedBuffer> createWithContentsOfFile(const String& filePath);
  /external/webkit/WebCore/platform/graphics/mac/
SimpleFontDataMac.mm 183 NSString *filePath = pathFromFont(initialFont.get());
184 if (!filePath)
185 filePath = @"not known";
194 LOG_ERROR("unable to initialize with font %@ at %@", initialFont.get(), filePath);
199 LOG_ERROR("unable to initialize with font %@ at %@", initialFont.get(), filePath);
206 [m_platformData.font() familyName], [initialFont.get() familyName], filePath);
  /dalvik/dx/src/com/android/dx/dex/cf/
CfTranslator.java 76 * @param filePath {@code non-null;} the file path for the class,
82 public static ClassDefItem translate(String filePath, byte[] bytes,
85 return translate0(filePath, bytes, args);
87 String msg = "...while processing " + filePath;
97 * @param filePath {@code non-null;} the file path for the class,
103 private static ClassDefItem translate0(String filePath, byte[] bytes,
106 new DirectClassFile(bytes, filePath, args.strictNameCheck);
  /external/icu4c/test/perf/collationperf/
CollPerf.pl 42 my $filePath = $CollationDataPath . "/";
77 my @icu = `$p -locale @locale[$n] -loop 1000 -file $filePath@data[$n] -qsort`;
78 my @nix = `$p -locale @locale[$n] -unix -loop 1000 -file $filePath@data[$n] -qsort`;
89 @icu = `$p -locale @locale[$n] -loop 1000 -file $filePath@data[$n] -keygen`;
90 @nix = `$p -locale @locale[$n] -unix -loop 1000 -file $filePath@data[$n] -keygen`;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringInputPage.java 233 String filePath = sLastResFilePath.get(projPath);
235 mResFileCombo.setText(filePath != null ? filePath : DEFAULT_RES_FILE_PATH);
467 for (String filePath : filePaths) {
468 mResFileCombo.add(filePath);
  /external/webkit/WebKit/mac/Misc/
WebIconDatabase.mm 489 NSString *filePath = [[NSString alloc] initWithFormat:@"%@/%s", databasePath, uniqueKey];
490 NSData *data = [[NSData alloc] initWithContentsOfFile:filePath];
516 [filePath release];
677 NSString *filePath = [databaseDirectory stringByAppendingPathComponent:file];
678 if (![fileManager removeItemAtPath:filePath error:NULL])
679 LOG_ERROR("Failed to delete %@ from old icon directory", filePath);
  /packages/apps/Gallery3D/src/com/cooliris/media/
ImageManager.java 144 String filePath = directory + "/" + filename;
155 degree[0] = getExifOrientation(filePath);
182 values.put(Images.Media.DATA, filePath);
193 public static int getExifOrientation(String filepath) {
197 exif = new ExifInterface(filepath);
  /external/webkit/WebCore/platform/qt/
FileSystemQt.cpp 84 return QDir::toNativeSeparators(QDir(path).filePath(component));
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/
EventLogParser.java 121 * @param filePath
124 public boolean init(String filePath) {
126 BufferedReader reader = new BufferedReader(new FileReader(filePath));
521 * @param filePath the file path to write the file.
524 public void saveTags(String filePath) throws IOException {
525 File destFile = new File(filePath);
  /external/webkit/WebCore/platform/win/
ClipboardWin.cpp 222 WCHAR filePath[MAX_PATH];
231 wcscpy_s(filePath, MAX_PATH, localPathStr);
249 if (swprintf_s(filePath, MAX_PATH, TEXT("%s-%d%s"), tempPath, i, extension) == -1)
251 if (!::PathFileExists(filePath))
254 HANDLE tempFileHandle = CreateFile(filePath, GENERIC_READ | GENERIC_WRITE, 0, 0, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0);
266 SIZE_T dropFilesSize = sizeof(DROPFILES) + (sizeof(WCHAR) * (wcslen(filePath) + 2));
274 wcscpy((LPWSTR)(dropFiles + 1), filePath);
  /packages/apps/Camera/src/com/android/camera/
ImageManager.java 195 String filePath = directory + "/" + filename;
206 degree[0] = getExifOrientation(filePath);
231 values.put(Images.Media.DATA, filePath);
242 public static int getExifOrientation(String filepath) {
246 exif = new ExifInterface(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/eventanalyzer/src/com/android/eventanalyzer/
EventAnalyzer.java 117 // get the filepath and break.
201 * @param filePath the location of the file.
204 private void parseTextLogFile(String filePath) throws IOException {
207 String tagFile = filePath + TAG_FILE_EXT;
222 new InputStreamReader(new FileInputStream(filePath)));
  /external/webkit/WebCore/platform/chromium/
ChromiumBridge.h 155 static String mimeTypeFromFile(const String& filePath);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
MediaRecorderTest.java 227 private void removeFile(String filePath) {
228 File fileRemove = new File(filePath);
232 private boolean validateVideo(String filePath, int width, int height) {
234 getOutputVideoProperty(filePath);
240 //removeFile(filePath);
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
Device.java 478 * @param filePath full directory path to file
481 private String getFileName(String filePath) {
482 return new File(filePath).getName();

Completed in 1324 milliseconds

12 3