Searched defs:paths (Results 1 - 5 of 5) 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/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/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/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));

Completed in 70 milliseconds