/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/ |
H A D | dictionary_structure_with_buffer_policy_factory.cpp | 30 ::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 D | CameraShortcutImage.java | 26 public CameraShortcutImage(Path path, GalleryApp application) { argument 27 super(path, application, R.drawable.placeholder_camera);
|
H A D | EmptyAlbumImage.java | 26 public EmptyAlbumImage(Path path, GalleryApp application) { argument 27 super(path, application, R.drawable.placeholder_empty);
|
H A D | UnlockImage.java | 26 public UnlockImage(Path path, GalleryApp application) { argument 27 super(path, application, R.drawable.placeholder_locked);
|
H A D | ComboSource.java | 35 // 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 D | SecureSource.java | 37 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 D | SnailAlbum.java | 27 public SnailAlbum(Path path, SnailItem item) { argument 28 super(path, item);
|
H A D | ClusterSource.java | 60 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 D | ComboAlbumSet.java | 32 public ComboAlbumSet(Path path, GalleryApp application, MediaSet[] mediaSets) { argument 33 super(path, nextVersionNumber());
|
H A D | FilterEmptyPromptSet.java | 28 public FilterEmptyPromptSet(Path path, MediaSet baseSet, MediaItem emptyItem) { argument 29 super(path, INVALID_DATA_VERSION);
|
H A D | ImageCacheRequest.java | 38 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 D | SingleItemAlbum.java | 27 public SingleItemAlbum(Path path, MediaItem item) { argument 28 super(path, nextVersionNumber());
|
H A D | SnailItem.java | 34 public SnailItem(Path path) { argument 35 super(path, nextVersionNumber());
|
H A D | SnailSource.java | 38 // 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 D | UriSource.java | 44 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 D | UriType.java | 22 /** 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 D | LoaderCompatShim.java | 29 void deleteItemWithPath(Object path); argument
|
/packages/apps/Mms/src/org/w3c/dom/smil/ |
H A D | SMILAnimateMotionElement.java | 28 public void setPath(String path) argument
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/ |
H A D | FileCleaner.java | 81 * @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 D | VoicemailUriType.java | 30 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;
|
/packages/providers/MediaProvider/src/com/android/providers/media/ |
H A D | MediaScannerReceiver.java | 46 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 D | DownloadHandler.java | 104 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 D | MediaSetUtils.java | 52 public static boolean isCameraSource(Path path) { argument 53 return CAMERA_PATHS[0] == path || CAMERA_PATHS[1] == path 54 || CAMERA_PATHS[2] == path;
|
H A D | SaveVideoFileUtils.java | 140 public static int retriveVideoDurationMs(String path) { argument 144 retriever.setDataSource(path);
|
/packages/apps/Launcher3/util/com/android/launcher3/ |
H A D | DecoderRing.java | 297 private static void writeImageData(byte[] data, String path) { argument 300 iconFile = new FileOutputStream(path); 302 System.err.println("wrote " + path);
|