Home
last modified time | relevance | path

Searched refs:basePath (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/packages/SystemUI/scripts/token_alignment/
Dindex.ts24 const basePath = `${repoPath}/../tm-qpr-dev/frameworks/base/core/res/res/values/`; constant
29 path: `${basePath}attrs.xml`,
65 path: `${basePath}themes_device_defaults.xml`,
82 path: `${basePath}themes_device_defaults.xml`,
109 path: `${basePath}../values-night/themes_device_defaults.xml`,
116 path: `${basePath}symbols.xml`,
/frameworks/base/tools/aapt/
DFileFinder.cpp41 bool SystemFileFinder::findFiles(String8 basePath, Vector<String8>& extensions, in findFiles() argument
47 if (!dw->openDir(basePath)) { in findFiles()
60 String8 fullPath = basePath.appendPathCopy(entryName); in findFiles()
DFileFinder.h25 virtual bool findFiles(String8 basePath, Vector<String8>& extensions,
56 virtual bool findFiles(String8 basePath, Vector<String8>& extensions,
/frameworks/base/apct-tests/perftests/utils/src/android/perftests/utils/
DWindowPerfTestBase.java87 public static void startProfiling(File basePath, String outFileName) { in startProfiling() argument
88 if (!basePath.exists()) { in startProfiling()
89 executeShellCommand("mkdir -p " + basePath); in startProfiling()
95 + new File(basePath, outFileName)); in startProfiling()
/frameworks/base/tools/aapt/tests/
DMockFileFinder.h35 virtual bool findFiles(String8 basePath, Vector<String8>& extensions, in findFiles() argument
39 const KeyedVector<String8,time_t>* payload(&mFiles.valueFor(basePath)); in findFiles()
/frameworks/base/tools/aapt2/trace/
DTraceBuffer.cpp66 void Flush(const std::string& basePath) { in Flush() argument
68 if (basePath.empty()) { in Flush()
73 s << basePath << aapt::file::sDirSep << "report_aapt2_" << getpid() << ".json"; in Flush()
/frameworks/base/services/core/java/com/android/server/pm/dex/
DDexoptUtils.java411 String basePath = pathFile.getParent(); in getSplitRelativeCodePaths() local
412 if (!basePath.equals(baseCodePath)) { in getSplitRelativeCodePaths()
413 Slog.wtf(TAG, "Split paths have different base paths: " + basePath + " and " + in getSplitRelativeCodePaths()
/frameworks/base/core/java/com/android/internal/util/
DFileRotator.java101 public FileRotator(File basePath, String prefix, long rotateAgeMillis, long deleteAgeMillis) { in FileRotator() argument
102 mBasePath = Objects.requireNonNull(basePath); in FileRotator()
/frameworks/base/core/java/android/app/backup/
DBackupAgent.java979 String basePath = null; in onRestoreFile() local
985 basePath = FullBackup.getBackupScheme(this, mOperationType).tokenToDirectoryPath( in onRestoreFile()
992 if (basePath != null) { in onRestoreFile()
994 File outFile = new File(basePath, path); in onRestoreFile()
996 if (outPath.startsWith(basePath + File.separatorChar)) { in onRestoreFile()
/frameworks/base/services/tests/mockingservicestests/src/com/android/server/pm/
DMockSystem.kt516 val basePath = path.parentFile in stageParse() constant
517 basePath.mkdirs() in stageParse()
522 or(eq(path), eq(basePath)), anyInt(), anyBoolean())) { parsedPackage } in stageParse()
524 or(eq(path), eq(basePath)), anyInt(), anyBoolean(), any())) { parsedPackage } in stageParse()
/frameworks/base/core/java/com/android/internal/content/
DNativeLibraryHelper.java522 final Path basePath = base.toPath(); in getRelativePath() local
524 final Path relativePath = basePath.relativize(targetPath); in getRelativePath()