HomeSort by relevance Sort by last modified time
    Searched refs:Path (Results 251 - 275 of 528) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/WebKit/scripts/
generate-webkitversion.pl 41 use File::Path;
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
ClusterSource.java 60 public MediaObject createMediaObject(Path path) {
61 int matchType = mMatcher.match(path);
71 return new ClusterAlbumSet(path, mApplication, sets[0], matchType);
77 MediaSet parent = dataManager.getMediaSet(path.getParent());
80 return new ClusterAlbum(path, dataManager, parent);
83 throw new RuntimeException("bad path: " + path);
ComboAlbumSet.java 31 public ComboAlbumSet(Path path, GalleryApp application, MediaSet[] mediaSets) {
32 super(path, nextVersionNumber());
LocalMediaItem.java 48 public LocalMediaItem(Path path, long version) {
49 super(path, version);
MtpSource.java 43 public MediaObject createMediaObject(Path path) {
44 switch (mMatcher.match(path)) {
46 return new MtpDeviceSet(path, mApplication, mMtpContext);
50 return new MtpDevice(path, mApplication, deviceId, mMtpContext);
55 return new MtpImage(path, mApplication, deviceId, objectId, mMtpContext);
58 throw new RuntimeException("bad path: " + path);
LocalImage.java 48 static final Path ITEM_PATH = Path.fromString("/local/image/item");
91 public LocalImage(Path path, GalleryApp application, Cursor cursor) {
92 super(path, nextVersionNumber());
97 public LocalImage(Path path, GalleryApp application, int id) {
98 super(path, nextVersionNumber());
104 throw new RuntimeException("cannot get cursor for: " + path);
110 throw new RuntimeException("cannot find data for: " + path);
    [all...]
MtpImage.java 51 MtpImage(Path path, GalleryApp application, int deviceId,
53 super(path, nextVersionNumber());
67 MtpImage(Path path, GalleryApp app, int deviceId, int objectId, MtpContext mtpContext) {
68 this(path, app, deviceId, MtpDevice.getObjectInfo(mtpContext, deviceId, objectId),
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
ImportCompleteListener.java 22 import com.android.gallery3d.data.Path;
AlbumSlidingWindow.java 27 import com.android.gallery3d.data.Path;
74 private LruCache<Path, Bitmap> mImageCache = new LruCache<Path, Bitmap>(1000);
337 Path path = null; local
338 if (mMediaItem != null) path = mMediaItem.getPath();
340 getRotation(), path, mMediaType, mIsPanorama);
362 Path path = mMediaItem.getPath(); local
363 if (mImageCache.containsKey(path)) {
405 Path path = mMediaItem.getPath(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt.ndk/src/com/android/ide/eclipse/adt/ndk/internal/discovery/
NdkDiscoveredPathInfo.java 30 import org.eclipse.core.runtime.Path;
50 private static final IPath ANDROID_MK = new Path("jni/Android.mk");
67 // TODO this is probably a bug. a new include path should trigger
80 for (String path : pathStrings)
81 mIncludePaths[i++] = new Path(path);
179 includes.add(Path.fromPortableString(line.substring(2)));
NdkDiscoveryUpdater.java 34 import org.eclipse.core.runtime.Path;
66 IPath commandPath = new Path("ndk-build"); //$NON-NLS-1$
71 IPath changeToDirectory = new Path(projectDir.getAbsolutePath());
95 URL url = Activator.findFile(new Path(
102 proc = new NdkCommandLauncher().execute(new Path(mCommand), args, env,
  /external/clang/lib/Basic/
FileManager.cpp 27 #include "llvm/Support/Path.h"
80 /// UniqueDirs - Cache from full path to existing directories/files.
98 /// UniqueFiles - Cache from full path to existing directories/files.
224 if (llvm::sys::path::is_separator(Filename[Filename.size() - 1]))
227 llvm::StringRef DirName = llvm::sys::path::parent_path(Filename);
228 // Use the current directory if file has no path component.
235 /// Add all ancestors of the given path (pointing to either a file or
237 void FileManager::addAncestorsAsVirtualDirs(llvm::StringRef Path) {
238 llvm::StringRef DirName = llvm::sys::path::parent_path(Path);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
PhotoPage.java 26 import com.android.gallery3d.data.Path;
76 public static final String KEY_MEDIA_SET_PATH = "media-set-path";
77 public static final String KEY_MEDIA_ITEM_PATH = "media-item-path";
88 private Path mPendingSharePath;
114 public void setCurrentPhoto(Path path, int indexHint);
180 Path itemPath = Path.fromString(data.getString(KEY_MEDIA_ITEM_PATH));
201 public void onPhotoChanged(int index, Path item) {
262 private void updateShareURI(Path path)
412 Path path = current.getPath(); local
534 Path path = mApplication local
551 String path = data.getStringExtra(SlideshowPage.KEY_ITEM_PATH); local
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BookmarkUtils.java 30 import android.graphics.Path;
167 // Construct a path from a round rect. This will allow drawing with
169 Path path = new Path(); local
170 path.setFillType(Path.FillType.INVERSE_WINDING);
173 path.addRoundRect(rect, 8f, 8f, Path.Direction.CW);
177 canvas.drawPath(path, paint)
    [all...]
TabBar.java 32 import android.graphics.Path;
257 Path mPath;
258 Path mFocusPath;
267 mPath = new Path();
268 mFocusPath = new Path();
413 private void drawClipped(Canvas canvas, Paint paint, Path clipPath, int left) {
424 private void setTabPath(Path path, int l, int t, int r, int b) {
425 path.reset();
426 path.moveTo(l, b)
    [all...]
  /external/clang/lib/Frontend/
CacheTokens.cpp 29 #include "llvm/Support/Path.h"
59 union { const FileEntry* FE; const char* Path; };
66 PTHEntryKeyVariant(struct stat* statbuf, const char* path)
67 : Path(path), Kind(IsDE), StatBuf(new struct stat(*statbuf)) {}
69 explicit PTHEntryKeyVariant(const char* path)
70 : Path(path), Kind(IsNoExist), StatBuf(0) {}
75 return Kind == IsFE ? FE->getName() : Path;
478 if (llvm::sys::path::is_relative(FE->getName())
    [all...]
  /packages/apps/Browser/src/com/android/browser/view/
PieMenu.java 25 import android.graphics.Path;
227 Path slice = makeSlice(getDegrees(itemstart) - gap,
296 private void drawPath(Canvas canvas, Path path, Paint paint) {
297 canvas.drawPath(path, paint);
300 private Path makeSlice(float start, float end, int outer, int inner, Point center) {
307 Path path = new Path(); local
308 path.arcTo(bb, start, end - start, true)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
AndroidClasspathContainerInitializer.java 40 import org.eclipse.core.runtime.Path;
67 * {@link IProject}s. This removes the hard-coded path to the android.jar.
85 /** path separator to store multiple paths in a single property. This is guaranteed to not
86 * be in a path.
108 * @param containerPath the container path that is the container id.
116 JavaCore.setClasspathContainer(new Path(AdtConstants.CONTAINER_FRAMEWORK),
147 new Path(AdtConstants.CONTAINER_FRAMEWORK),
158 * path to the framework jar file.
198 new Path(AdtConstants.CONTAINER_FRAMEWORK),
343 * <p/>This references the OS path to the android.jar and th
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
SensorTest.java 163 private Path mPath = new Path();
169 // Construct a wedge-shaped path
ShapeDrawable1.java 85 Path path = new Path(); local
86 path.moveTo(50, 0);
87 path.lineTo(0, 50);
88 path.lineTo(50, 100);
89 path.lineTo(100, 50);
90 path.close();
101 mDrawables[5] = new ShapeDrawable(new PathShape(path, 100, 100));
  /external/nist-sip/java/gov/nist/javax/sip/header/
NameMap.java 197 putNameMap(Path.NAME, Path.class.getName());
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext.h 35 #include "Path.h"
63 // wxGraphicsContext allows us to support Path, etc.
277 void drawPath(const Path&);
304 // may return NULL, since we lazily allocate the path. This is the path
328 void fillPath(const Path&);
329 void strokePath(const Path&);
373 void clipPath(const Path&, WindRule);
420 void drawFocusRing(const Path&, int width, int offset, const Color&);
435 void clip(const Path&)
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGGlyphElement.cpp 103 static inline Path parsePathData(const AtomicString& value)
105 Path result;
  /external/chromium/chrome/browser/ui/views/frame/
app_panel_browser_frame_view.h 49 virtual void GetWindowMask(const gfx::Size& size, gfx::Path* window_mask)
glass_browser_frame_view.h 45 virtual void GetWindowMask(const gfx::Size& size, gfx::Path* window_mask)

Completed in 486 milliseconds

<<11121314151617181920>>