Searched refs:paths (Results 1 - 10 of 10) 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/media/java/android/media/
H A DMediaScannerConnection.java185 ClientProxy(String[] paths, String[] mimeTypes, OnScanCompletedListener client) { argument
186 mPaths = paths;
222 * @param paths Array of paths to be scanned.
230 public static void scanFile(Context context, String[] paths, String[] mimeTypes, argument
232 ClientProxy client = new ClientProxy(paths, mimeTypes, callback);
/frameworks/compile/libbcc/tools/build/
H A Dgen-build-info.py73 def compute_sha1_list(paths):
76 for path in paths:
/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.java611 * the input array of paths is null.
614 public final int[] addAssetPaths(String[] paths) { argument
615 if (paths == null) {
619 int[] cookies = new int[paths.length];
620 for (int i = 0; i < paths.length; i++) {
621 cookies[i] = addAssetPath(paths[i]);
/frameworks/base/core/java/android/os/storage/
H A DStorageManager.java584 * Returns list of paths for all mountable volumes.
591 String[] paths = new String[count];
593 paths[i] = volumes[i].getPath();
595 return paths;
/frameworks/base/core/java/android/content/
H A DIntentFilter.java119 * has matched against the Intent, <em>or</em> no paths were supplied in the
767 * path to be considered. If any paths are
769 * them. If no paths are included, then only the scheme/authority must
795 * Return the number of data paths in the filter.
810 * filter does not include any paths, false will <em>always</em> be
834 * Return an iterator over the filter's data paths.
868 * schemes/paths, the match will only succeed if the intent does not
903 final ArrayList<PatternMatcher> paths = mDataPaths;
922 if (paths == null) {
/frameworks/base/libs/hwui/
H A DDisplayListRenderer.cpp266 const Vector<SkPath*>& paths = recorder.getPaths(); local
267 for (size_t i = 0; i < paths.size(); i++) {
268 mPaths.add(paths.itemAt(i));
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp193 // new paths are always added at the end
307 const String8* paths[2] = { &originalPath, &overlayPath }; local
318 ap.path = *paths[i];
493 * To find a particular file, we have to try up to eight paths with
497 * with illegal characters or "../" backward relative paths.
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java1030 // Set flag to monitor and not change apk file paths when
1051 String[] paths = splitString(bootClassPath, ':');
1052 for (int i=0; i<paths.length; i++) {
1054 if (dalvik.system.DexFile.isDexOptNeeded(paths[i])) {
1055 libFiles.add(paths[i]);
1056 mInstaller.dexopt(paths[i], Process.SYSTEM_UID, true);
1060 Slog.w(TAG, "Boot class path not found: " + paths[i]);
1062 Slog.w(TAG, "Cannot dexopt " + paths[i] + "; is it an APK or JAR? "
3627 // Bail out. The resource and code paths haven't been set.
3628 Slog.w(TAG, " Code and resource paths have
[all...]

Completed in 239 milliseconds