HomeSort by relevance Sort by last modified time
    Searched refs:getPath (Results 126 - 150 of 690) sorted by null

1 2 3 4 56 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
TexturePropertyAccessor.java 82 public String getPath() {
TextureUnitPropertyAccessor.java 61 public String getPath() {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/
EclipseTestCollector.java 54 String filePath = entry.getPath().replace(".class", "");
  /frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/
DownloadManagerTestApp.java 103 String path = Environment.getExternalStorageDirectory().getPath();
272 String localDownloadDirectory = Environment.getExternalStorageDirectory().getPath();
287 Log.i(LOG_TAG, "setting localUri to: " + localUri.getPath());
347 String localDownloadDirectory = Environment.getExternalStorageDirectory().getPath();
361 Log.i(LOG_TAG, "setting localUri to: " + localUri.getPath());
417 String localDownloadDirectory = Environment.getExternalStorageDirectory().getPath();
431 Log.i(LOG_TAG, "setting localUri to: " + localUri.getPath());
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
StorageManager.java 152 if (path.startsWith(mExternalStorageDir.getPath())) {
154 } else if (path.startsWith(mDownloadDataDir.getPath())) {
156 } else if (path.startsWith(mSystemCacheDir.getPath())) {
257 StatFs stat = new StatFs(root.getPath());
263 root.getPath() + " is: " + size);
278 File base = new File(mExternalStorageDir.getPath() + Constants.DEFAULT_DL_SUBDIR);
283 "unable to create external downloads directory " + base.getPath());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
AndroidTargetParser.java 97 new AndroidJarLoader(mAndroidTarget.getPath(IAndroidTarget.ANDROID_JAR));
131 mAndroidTarget.getPath(IAndroidTarget.ATTRIBUTES),
140 mAndroidTarget.getPath(IAndroidTarget.MANIFEST_ATTRIBUTES),
268 mAndroidTarget.getPath(IAndroidTarget.LAYOUT_LIB),
370 mAndroidTarget.getPath(IAndroidTarget.ANDROID_JAR));
388 collectValues(mAndroidTarget.getPath(IAndroidTarget.ACTIONS_ACTIVITY),
390 collectValues(mAndroidTarget.getPath(IAndroidTarget.ACTIONS_BROADCAST),
392 collectValues(mAndroidTarget.getPath(IAndroidTarget.ACTIONS_SERVICE),
394 collectValues(mAndroidTarget.getPath(IAndroidTarget.CATEGORIES),
457 mAndroidTarget.getPath(IAndroidTarget.WIDGETS))
    [all...]
  /packages/apps/Browser/src/com/android/browser/homepages/
RequestHandler.java 159 File f = new File(mUri.getPath());
163 t.assign("path", mUri.getPath());
164 t.assign("parent_url", f.getParent() != null ? f.getParent() : f.getPath());
226 Matcher m = pattern.matcher(mUri.getPath());
230 return mUri.getPath();
  /frameworks/base/core/java/android/app/
SharedPreferencesImpl.java 114 stat = Libcore.os.stat(mFile.getPath());
145 return new File(prefsFile.getPath() + ".bak");
176 stat = Libcore.os.stat(mFile.getPath());
551 parent.getPath(),
599 ContextImpl.setFilePermissionsFromMode(mFile.getPath(), mMode, 0);
601 final StructStat stat = Libcore.os.stat(mFile.getPath());
  /libcore/luni/src/test/java/libcore/java/net/
OldJarURLConnectionTest.java 54 return new URL("jar:file:" + file.getPath() + "!/" + inFile);
191 URL fUrl1 = new URL("jar:file:" + file.getPath() + "!/");
229 URL url = new URL("jar:file:" + file.getPath() + "!/HasAttributes.txt");
255 URL fileURL = new URL(u.getPath().substring(0, u.getPath().indexOf("!")));
292 String jarFileName = jarFile.getPath();
  /development/samples/ApiDemos/src/com/example/android/apis/content/
FileProvider.java 78 result[i] = uri.getPath();
117 InputStream is = getContext().getAssets().open(uri.getPath());
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderDetailsMarker.cpp 106 Path RenderDetailsMarker::getPath(const LayoutPoint& origin) const
136 paintInfo.context->fillPath(getPath(boxOrigin));
  /external/clang/lib/AST/
APValue.cpp 63 LValuePathEntry *getPath() { return hasPathPtr() ? PathPtr : Path; }
64 const LValuePathEntry *getPath() const {
100 PathElem *getPath() { return hasPathPtr() ? PathPtr : Path; }
101 const PathElem *getPath() const {
570 return ArrayRef<LValuePathEntry>(LVal.getPath(), LVal.PathLength);
599 memcpy(LVal.getPath(), Path.data(), Path.size() * sizeof(LValuePathEntry));
617 return ArrayRef<const CXXRecordDecl*>(MPD.getPath(), MPD.PathLength);
641 memcpy(MPD->getPath(), Path.data(), Path.size()*sizeof(const CXXRecordDecl*));
  /frameworks/base/core/java/android/database/sqlite/
SQLiteOpenHelper.java 220 final String path = mContext.getDatabasePath(mName).getPath();
234 final String path = mContext.getDatabasePath(mName).getPath();
  /libcore/luni/src/main/java/java/net/
CookieManager.java 173 if (cookie.getPath() == null) {
174 cookie.setPath(pathToCookiePath(uri.getPath()));
  /libcore/luni/src/test/java/libcore/java/nio/channels/
FileChannelTest.java 95 assertEquals("abcdABCD", new String(IoUtils.readFileAsString(tmp.getPath())));
111 assertEquals("hello world", new String(IoUtils.readFileAsString(tmp.getPath())));
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidZipFileTest.java 45 scanZip(file.getPath());
46 read2(file.getPath());
  /packages/apps/Camera2/src/com/android/camera/app/
PlaceholderManager.java 157 String filePath = uri.getPath();
175 l.onTaskDone(session.outputUri.getPath(), session.outputUri);
  /packages/apps/Camera2/src/com/android/camera/data/
InProgressDataWrapper.java 114 public String getPath() {
115 return mLocalData.getPath();
RotationTask.java 93 String filePath = imageData.getPath();
138 data.getPath(), newOrientation, imageData.getWidth(),
  /packages/apps/Gallery/src/com/android/camera/gallery/
BaseImageList.java 169 String path = uri.getPath();
183 && Util.equals(base.getPath(), getPathWithoutId(uri));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sourcelookup/
AdtSourceLookupDirector.java 63 String path = target.getPath(IAndroidTarget.ANDROID_JAR);
75 && path.equals(entry.getPath().toString())) {
  /development/tools/mkstubs/src/com/android/mkstubs/
SourceGenerator.java 75 mLog.debug("Writing " + f.getPath());
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
SerializationStressTest5.java 160 String fileName = files[i].getPath();
328 String fileName = files[i].getPath();
332 fis = new FileInputStream(files[i].getPath());
335 + files[i].getPath());
  /external/chromium_org/third_party/skia/src/fonts/
SkGScalerContext.cpp 99 fProxy->getPath(*glyph, &path);
119 fProxy->getPath(glyph, &path);
138 fProxy->getPath(glyph, path);
245 const SkPath& getPath(int index) const {
  /external/skia/src/fonts/
SkGScalerContext.cpp 99 fProxy->getPath(*glyph, &path);
119 fProxy->getPath(glyph, &path);
138 fProxy->getPath(glyph, path);
245 const SkPath& getPath(int index) const {

Completed in 439 milliseconds

1 2 3 4 56 7 8 91011>>