Searched defs:paths (Results 1 - 23 of 23) sorted by relevance

/frameworks/base/tools/bit/
H A Dmake.h30 vector<string> paths; member in struct:Module
/frameworks/base/libs/androidfw/tests/
H A DBenchmarkHelpers.cpp24 void GetResourceBenchmarkOld(const std::vector<std::string>& paths, const ResTable_config* config, argument
27 for (const std::string& path : paths) {
H A DAssetManager2_bench.cpp85 static void GetResourceBenchmark(const std::vector<std::string>& paths, argument
90 for (const std::string& path : paths) {
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DMethodBaseExpr.java41 public List<ExecutionPath> toExecutionPath(List<ExecutionPath> paths) { argument
42 final List<ExecutionPath> targetPaths = getTarget().toExecutionPath(paths);
46 result.addAll(toExecutionPathInOrder(paths, getTarget()));
H A DFieldAssignmentExpr.java80 public List<ExecutionPath> toExecutionPath(List<ExecutionPath> paths) { argument
82 List<ExecutionPath> targetPaths = child.toExecutionPath(paths);
87 result.addAll(toExecutionPathInOrder(paths, child));
H A DSymbolExpr.java77 public List<ExecutionPath> toExecutionPath(List<ExecutionPath> paths) { argument
79 return paths;
81 return super.toExecutionPath(paths);
H A DBracketExpr.java61 public List<ExecutionPath> toExecutionPath(List<ExecutionPath> paths) { argument
62 final List<ExecutionPath> targetPaths = getTarget().toExecutionPath(paths);
66 result.addAll(toExecutionPathInOrder(paths, getTarget()));
H A DLambdaExpr.java120 public List<ExecutionPath> toExecutionPath(List<ExecutionPath> paths) { argument
H A DMethodCallExpr.java98 public List<ExecutionPath> toExecutionPath(List<ExecutionPath> paths) { argument
99 final List<ExecutionPath> targetPaths = getTarget().toExecutionPath(paths);
103 result.addAll(toExecutionPathInOrder(paths, getArgs()));
H A DTernaryExpr.java104 public List<ExecutionPath> toExecutionPath(List<ExecutionPath> paths) { argument
105 List<ExecutionPath> executionPaths = getPred().toExecutionPath(paths);
H A DExpr.java330 List<ExecutionPath> paths = new ArrayList<ExecutionPath>();
331 paths.add(path);
332 return toExecutionPath(paths);
335 public List<ExecutionPath> toExecutionPath(List<ExecutionPath> paths) { argument
337 return addJustMeToExecutionPath(paths);
339 return toExecutionPathInOrder(paths, getChildren());
345 protected final List<ExecutionPath> addJustMeToExecutionPath(List<ExecutionPath> paths) { argument
347 for (ExecutionPath path : paths) {
354 protected final List<ExecutionPath> toExecutionPathInOrder(List<ExecutionPath> paths, argument
356 List<ExecutionPath> executionPaths = paths;
368 toExecutionPathInOrder(List<ExecutionPath> paths, List<Expr> order) argument
[all...]
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
H A DDefaultContainerService.java293 void eraseFiles(File[] paths) { argument
294 for (File path : paths) {
/frameworks/base/media/java/android/media/
H A DMediaScannerConnection.java192 ClientProxy(String[] paths, String[] mimeTypes, OnScanCompletedListener client) { argument
193 mPaths = paths;
230 * @param paths Array of paths to be scanned.
238 public static void scanFile(Context context, String[] paths, String[] mimeTypes, argument
240 ClientProxy client = new ClientProxy(paths, mimeTypes, callback);
/frameworks/base/core/java/android/accessibilityservice/
H A DGestureDescription.java121 * least the number of paths in the gesture to prevent going out of bounds
148 private static long getTotalDuration(List<StrokeDescription> paths) { argument
150 for (int i = 0; i < paths.size(); i++) {
151 StrokeDescription path = paths.get(i);
166 * {@link GestureDescription#getMaxStrokeCount()} paths may be
211 // The tap location is only set for zero-length paths
260 // Treat zero-length paths as taps
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageDexOptimizer.java108 * Performs dexopt on all code paths and libraries of the specified package for specified
132 * Performs dexopt on all code paths of the given package.
143 final List<String> paths = pkg.getAllCodePaths();
155 // this array contains the relative paths of each split it depends on, separated by colons.
159 for (int i = 0; i < paths.size(); i++) {
160 // Skip paths that have no code.
166 String path = paths.get(i);
180 // - SKIPPED when all paths are up to date
356 final List<String> paths = pkg.getAllCodePathsExcludingResourceOnly();
361 for (String path : paths) {
495 getParentDependencies(int index, List<String> paths, SparseArray<int[]> dependencies, String[] splitDependencies) argument
[all...]
H A DPackageManagerService.java2056 // The updated users should already be indexed and the package code paths
2569 // Set flag to monitor and not change apk file paths when
2816 // the correct library paths.
2996 // At this point we know the code paths of the packages, so we can validate
10113 // DELETE_DATA_ON_FAILURES is only used by frozen paths
10377 // library paths after the scan is done. Also during the initial
10477 // Get all of our default paths setup
10509 Slog.i(TAG, "Using ABIS and native lib paths from settings : " +
10523 // Set native library paths again. For moves, the path will be updated based on the
10697 // Bail out. The resource and code paths have
15437 clearDirectory(IMediaContainerService mcs, File[] paths) argument
[all...]
/frameworks/native/vulkan/libvulkan/
H A Dlayers_extensions.cpp396 std::vector<std::string> paths = android::base::Split(pathstr, ":"); local
397 for (const auto& path : paths) {
/frameworks/base/core/java/android/os/
H A DFileUtils.java587 public static String[] rewriteAfterRename(File beforeDir, File afterDir, String[] paths) { argument
588 if (paths == null) return null;
589 final String[] result = new String[paths.length];
590 for (int i = 0; i < paths.length; i++) {
591 result[i] = rewriteAfterRename(beforeDir, afterDir, paths[i]);
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java725 * the input array of paths is null.
728 public final int[] addAssetPaths(String[] paths) { argument
729 if (paths == null) {
733 int[] cookies = new int[paths.length];
734 for (int i = 0; i < paths.length; i++) {
735 cookies[i] = addAssetPath(paths[i]);
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp199 // new paths are always added at the end
289 const String8 paths[2] = { String8(targetApkPath), String8(overlayApkPath) }; local
298 ap.path = paths[i];
306 ALOGW("failed to add %s to resource table", paths[i].string());
389 * with illegal characters or "../" backward relative paths.
902 * An "asset directory" is simply the combination of all asset paths' "assets/" directories.
960 * An "asset directory" is simply the combination of all asset paths' "assets/" directories.
H A DResourceTypes.cpp6860 const char* paths[] = { targetPath, overlayPath }; local
6863 const char* path = paths[j];
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DBaseShortcutManagerTest.java1834 protected File makeFile(File baseDirectory, String... paths) { argument
1837 for (String path : paths) {
/frameworks/opt/setupwizard/tools/docs/
H A Djsilver.jar ... static transient void setLibrarySearchPaths (java.lang.String[]) String[] paths static synthetic java.lang.String access$000 ...

Completed in 6819 milliseconds