Searched refs:paths (Results 1 - 17 of 17) sorted by relevance

/frameworks/base/tools/aidl/
H A Dsearch_path.cpp32 vector<string>& paths = g_importPaths; local
33 for (vector<string>::iterator it=paths.begin(); it!=paths.end(); it++) {
/frameworks/base/core/java/android/provider/
H A DDocumentsContract.java698 final List<String> paths = uri.getPathSegments();
699 if (paths.size() == 2 && PATH_DOCUMENT.equals(paths.get(0))) {
702 if (paths.size() == 4 && PATH_TREE.equals(paths.get(0))
703 && PATH_DOCUMENT.equals(paths.get(2))) {
711 final List<String> paths = uri.getPathSegments();
712 return (paths.size() >= 2 && PATH_TREE.equals(paths.get(0)));
731 final List<String> paths
[all...]
/frameworks/base/libs/hwui/
H A DDisplayList.cpp73 for (size_t i = 0; i < paths.size(); i++) {
74 delete paths.itemAt(i);
83 paths.clear();
H A DDisplayList.h143 Vector<const SkPath*> paths; member in class:android::uirenderer::DisplayListData
H A DDisplayListRenderer.h211 mDisplayListData->paths.add(pathCopy);
/frameworks/base/media/java/android/media/
H A DMediaScannerConnection.java188 ClientProxy(String[] paths, String[] mimeTypes, OnScanCompletedListener client) { argument
189 mPaths = paths;
225 * @param paths Array of paths to be scanned.
233 public static void scanFile(Context context, String[] paths, String[] mimeTypes, argument
235 ClientProxy client = new ClientProxy(paths, mimeTypes, callback);
/frameworks/base/media/mca/filterfw/native/
H A Dlibfilterfw.mk16 # Add include paths for native code.
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java636 * the input array of paths is null.
639 public final int[] addAssetPaths(String[] paths) { argument
640 if (paths == null) {
644 int[] cookies = new int[paths.length];
645 for (int i = 0; i < paths.length; i++) {
646 cookies[i] = addAssetPath(paths[i]);
/frameworks/base/core/java/android/os/
H A DFileUtils.java496 public static String[] rewriteAfterRename(File beforeDir, File afterDir, String[] paths) { argument
497 if (paths == null) return null;
498 final String[] result = new String[paths.length];
499 for (int i = 0; i < paths.length; i++) {
500 result[i] = rewriteAfterRename(beforeDir, afterDir, paths[i]);
/frameworks/base/core/java/android/os/storage/
H A DStorageManager.java587 * Returns list of paths for all mountable volumes.
594 String[] paths = new String[count];
596 paths[i] = volumes[i].getPath();
598 return paths;
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
H A DDefaultContainerService.java290 void eraseFiles(File[] paths) { argument
291 for (File path : paths) {
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java289 ArrayList<String> paths = new ArrayList<>();
290 paths.add(baseCodePath);
292 Collections.addAll(paths, splitCodePaths);
294 return paths;
852 // The AssetManager guarantees uniqueness for asset paths, so if this asset path
4193 // TODO: work towards making these paths invariant
4341 ArrayList<String> paths = new ArrayList<>();
4342 paths.add(baseCodePath);
4344 Collections.addAll(paths, splitCodePaths);
4346 return paths;
[all...]
/frameworks/base/core/jni/
H A Dcom_android_internal_os_Zygote.cpp25 #include <paths.h>
274 // These paths must already be created by init.rc
283 // Prepare source paths
/frameworks/base/core/java/android/content/
H A DIntentFilter.java129 * has matched against the Intent, <em>or</em> no paths were supplied in the
922 * path to be considered. If any paths are
924 * them. If no paths are included, then only the scheme/authority must
955 * Return the number of data paths in the filter.
970 * filter does not include any paths, false will <em>always</em> be
1009 * Return an iterator over the filter's data paths.
1043 * schemes/paths, the match will only succeed if the intent does not
1107 final ArrayList<PatternMatcher> paths = mDataPaths;
1108 if (paths == null) {
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp221 // new paths are always added at the end
306 const String8 paths[2] = { String8(targetApkPath), String8(overlayApkPath) }; local
312 ap.path = paths[i];
483 * To find a particular file, we have to try up to eight paths with
487 * with illegal characters or "../" backward relative paths.
H A DResourceTypes.cpp6150 const char* paths[] = { targetPath, overlayPath }; local
6153 const char* path = paths[j];
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java395 // Tracks available target package names -> overlay package paths.
1410 // Set flag to monitor and not change apk file paths when
1728 // the correct library paths.
2124 // Only data remains, so we aren't worried about code paths
4862 final List<String> paths = pkg.getAllCodePathsExcludingResourceOnly();
4874 for (String path : paths) {
4894 // paths & ISAs.
4908 // paths & ISAs.
4916 // paths and instruction sets. We'll deal with them all together when we process
4949 // deferred dex-opt. We've either dex-opted one more paths o
8818 calculateDirectorySize(IMediaContainerService mcs, File[] paths) argument
8827 clearDirectory(IMediaContainerService mcs, File[] paths) argument
[all...]

Completed in 325 milliseconds