Searched defs:path (Results 1 - 25 of 127) sorted by relevance

123456

/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/
H A Ddictionary_structure_with_buffer_policy_factory.cpp30 ::newDictionaryStructureWithBufferPolicy(const char *const path, const int bufOffset, argument
34 const MmappedBuffer *const mmapedBuffer = MmappedBuffer::openBuffer(path, bufOffset, size,
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DCameraShortcutImage.java26 public CameraShortcutImage(Path path, GalleryApp application) { argument
27 super(path, application, R.drawable.placeholder_camera);
H A DEmptyAlbumImage.java26 public EmptyAlbumImage(Path path, GalleryApp application) { argument
27 super(path, application, R.drawable.placeholder_empty);
H A DUnlockImage.java26 public UnlockImage(Path path, GalleryApp application) { argument
27 super(path, application, R.drawable.placeholder_locked);
H A DComboSource.java35 // The only path we accept is "/combo/{set1, set2, ...} and /combo/item/{set1, set2, ...}"
37 public MediaObject createMediaObject(Path path) { argument
38 String[] segments = path.split();
40 throw new RuntimeException("bad path: " + path);
44 switch (mMatcher.match(path)) {
46 return new ComboAlbumSet(path, mApplication,
50 return new ComboAlbum(path,
H A DSecureSource.java37 public static boolean isSecurePath(String path) { argument
38 return (SECURE_ALBUM == mMatcher.match(Path.fromString(path)));
42 public MediaObject createMediaObject(Path path) { argument
43 switch (mMatcher.match(path)) {
48 return new SecureAlbum(path, mApplication, unlock);
51 return new UnlockImage(path, mApplication);
53 throw new RuntimeException("bad path: " + path);
H A DSnailAlbum.java27 public SnailAlbum(Path path, SnailItem item) { argument
28 super(path, item);
H A DClusterSource.java60 public MediaObject createMediaObject(Path path) { argument
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);
H A DComboAlbumSet.java32 public ComboAlbumSet(Path path, GalleryApp application, MediaSet[] mediaSets) { argument
33 super(path, nextVersionNumber());
H A DFilterEmptyPromptSet.java28 public FilterEmptyPromptSet(Path path, MediaSet baseSet, MediaItem emptyItem) { argument
29 super(path, INVALID_DATA_VERSION);
H A DImageCacheRequest.java38 Path path, long timeModified, int type, int targetSize) {
40 mPath = path;
37 ImageCacheRequest(GalleryApp application, Path path, long timeModified, int type, int targetSize) argument
H A DSingleItemAlbum.java27 public SingleItemAlbum(Path path, MediaItem item) { argument
28 super(path, nextVersionNumber());
H A DSnailItem.java34 public SnailItem(Path path) { argument
35 super(path, nextVersionNumber());
H A DSnailSource.java38 // The only path we accept is "/snail/set/id" and "/snail/item/id"
40 public MediaObject createMediaObject(Path path) { argument
42 switch (mMatcher.match(path)) {
47 return new SnailAlbum(path, item);
50 return new SnailItem(path);
H A DUriSource.java44 public MediaObject createMediaObject(Path path) { argument
45 String segment[] = path.split();
47 throw new RuntimeException("bad path: " + path);
52 return new UriImage(mApplication, path, Uri.parse(uri), type);
/packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
H A DUriType.java22 /** Returns the path associated with this URI type. */
23 public String path(); method in interface:UriType
/packages/apps/Gallery2/src/com/android/photos/shims/
H A DLoaderCompatShim.java29 void deleteItemWithPath(Object path); argument
/packages/apps/Mms/src/org/w3c/dom/smil/
H A DSMILAnimateMotionElement.java28 public void setPath(String path) argument
/packages/apps/UnifiedEmail/src/org/apache/commons/io/
H A DFileCleaner.java81 * @param path the full path to the file to be tracked, not null
83 * @throws NullPointerException if the path is null
86 public static void track(String path, Object marker) { argument
87 theInstance.track(path, marker);
95 * @param path the full path to the file to be tracked, not null
98 * @throws NullPointerException if the path is null
101 public static void track(String path, Object marker, FileDeleteStrategy deleteStrategy) { argument
102 theInstance.track(path, marke
[all...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DVoicemailUriType.java30 private final String path; field in class:VoicemailUriType
32 private VoicemailUriType(String path) { argument
33 this.path = path;
37 public String path() { method in class:VoicemailUriType
38 return path;
H A DProfileAwareUriMatcher.java47 // path with the location specified by the value in the map) is in the profile ID-space.
51 // segment path with the location specified by the value in the map) is the special profile
65 public void addURI(String authority, String path, int code) { argument
66 super.addURI(authority, path, code);
69 if (path != null) {
70 String[] tokens = PATH_SPLIT_PATTERN.split(path);
73 // Keep track of whether we've passed a "lookup" token in the path; wildcards after
/packages/providers/MediaProvider/src/com/android/providers/media/
H A DMediaScannerReceiver.java46 String path = uri.getPath();
51 path = new File(path).getCanonicalPath();
53 Log.e(TAG, "couldn't canonicalize " + path);
56 if (path.startsWith(legacyPath)) {
57 path = externalStoragePath + path.substring(legacyPath.length());
60 Log.d(TAG, "action: " + action + " path: " + path);
65 path !
79 scanFile(Context context, String path) argument
[all...]
/packages/apps/Browser/src/com/android/browser/
H A DDownloadHandler.java104 private static String encodePath(String path) { argument
105 char[] chars = path.toCharArray();
115 return path;
/packages/apps/Gallery2/src/com/android/gallery3d/util/
H A DMediaSetUtils.java52 public static boolean isCameraSource(Path path) { argument
53 return CAMERA_PATHS[0] == path || CAMERA_PATHS[1] == path
54 || CAMERA_PATHS[2] == path;
H A DSaveVideoFileUtils.java140 public static int retriveVideoDurationMs(String path) { argument
144 retriever.setDataSource(path);

Completed in 371 milliseconds

123456