HomeSort by relevance Sort by last modified time
    Searched full:fromfile (Results 1 - 25 of 69) sorted by null

1 2 3

  /frameworks/base/core/java/android/gesture/
GestureLibraries.java 35 public static GestureLibrary fromFile(String path) {
36 return fromFile(new File(path));
39 public static GestureLibrary fromFile(File path) {
44 return fromFile(context.getFileStreamPath(name));
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
SlideshowDream.java 20 // Uri.fromFile(Environment.getExternalStoragePublicDirectory(
  /external/clang/utils/C++Tests/LLVM-Code-Symbols/
check-symbols 48 fromfile="llvm-gcc symbols",
  /packages/apps/Camera/tests/src/com/android/camera/functional/
VideoCaptureIntentTest.java 103 Uri uri = Uri.fromFile(mFile);
158 Uri uri = Uri.fromFile(mFile);
180 Uri uri = Uri.fromFile(mFile);
202 Uri uri = Uri.fromFile(mFile);
214 uri = Uri.fromFile(mFile2);
ImageCaptureIntentTest.java 80 mIntent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(file));
  /external/clang/lib/Rewrite/
TokenRewriter.cpp 26 const llvm::MemoryBuffer *FromFile = SM.getBuffer(FID);
27 Lexer RawLex(FID, FromFile, SM, LangOpts);
  /cts/tests/tests/app/src/android/app/cts/
DownloadManagerTest.java 156 requestUri.setDestinationUri(Uri.fromFile(uriLocation));
208 requestNoExt.setDestinationUri(Uri.fromFile(noExtLocation));
212 requestWrongExt.setDestinationUri(Uri.fromFile(wrongExtLocation));
341 assertEquals(Uri.fromFile(location).toString(),
  /development/samples/ApiDemos/src/com/example/android/apis/content/
InstallApk.java 98 intent.setData(Uri.fromFile(prepareApk("HelloActivity.apk")));
106 intent.setData(Uri.fromFile(prepareApk("HelloActivity.apk")));
118 intent.setData(Uri.fromFile(prepareApk("HelloActivity.apk")));
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audioquality/
ViewResultsActivity.java 85 attachments.add(Uri.fromFile(new File(filename)));
  /frameworks/base/docs/html/training/sharing/
send.jd 140 can read. Use {@link android.net.Uri#fromFile(java.io.File) Uri.fromFile()} to create the
148 android.net.Uri#fromFile(java.io.File) Uri.fromFile()} will create a {@code file://} style {@link
  /frameworks/base/services/java/com/android/server/
RandomBlock.java 41 static RandomBlock fromFile(String filename) throws IOException {
EntropyService.java 99 RandomBlock.fromFile(entropyFile).toFile(randomDevice, false);
107 RandomBlock.fromFile(randomDevice).toFile(entropyFile, true);
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
LayoutTestController.java 79 WebStorage.getInstance().setQuotaForOrigin(Uri.fromFile(new File("")).toString(),
  /frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
A3DSelector.java 105 resultIntent.setData(Uri.fromFile(selectedFile));
  /system/media/mca/tests/src/android/camera/mediaeffects/tests/functional/
EffectsVideoCapture.java 73 Uri uri = Uri.fromFile(file);
  /packages/experimental/BugReportSender/src/com/android/bugreportsender/
BugReportListActivity.java 113 intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));
141 intent.setDataAndType(Uri.fromFile(file), "vnd.android/bugreport");
  /system/extras/bugmailer/src/com/android/commands/sendbug/
SendBug.java 64 final Uri bugreportUri = Uri.fromFile(bugreport);
69 ? Uri.fromFile(screenShot) : null;
  /frameworks/base/core/tests/coretests/src/android/app/
DownloadManagerFunctionalTest.java 163 Uri localUri = Uri.fromFile(existentFile);
201 Uri localUri = Uri.fromFile(downloadedFile);
232 Uri localUri = Uri.fromFile(downloadedFile);
  /packages/apps/Camera/src/com/android/camera/
Thumbnail.java 73 public void setFromFile(boolean fromFile) {
74 mFromFile = fromFile;
77 public boolean fromFile() {
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ActionBarShareActionProviderActivity.java 85 Uri uri = Uri.fromFile(getFileStreamPath("shared.png"));
  /frameworks/base/tools/preload/
PrintCsv.java 40 Root root = Root.fromFile(args[0]);
Root.java 151 static Root fromFile(String fileName)
  /packages/apps/Browser/src/com/android/browser/
UploadHandler.java 80 result = Uri.fromFile(cameraFile);
253 cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(new File(mCameraFilePath)));
  /packages/apps/Email/tests/src/com/android/emailcommon/utility/
AttachmentUtilitiesTests.java 112 Uri.fromFile(new File("a.png")));
116 Uri.fromFile(new File("/a/b/c/d.png")));
  /external/clang/lib/Frontend/
InitPreprocessor.cpp 579 const FileEntry *FromFile = FileMgr.getVirtualFile(Remap->first,
582 if (!FromFile) {
592 SourceMgr.overrideFileContents(FromFile, Remap->second,
611 const FileEntry *FromFile = FileMgr.getVirtualFile(Remap->first,
613 if (!FromFile) {
621 SourceMgr.overrideFileContents(FromFile, ToFile);

Completed in 2375 milliseconds

1 2 3