/aosp14/frameworks/base/libs/hwui/jni/ |
H A D | android_graphics_drawable_VectorDrawable.cpp | 277 return fullPath->stagingProperties()->getStrokeWidth(); in getStrokeWidth() 282 fullPath->mutateStagingProperties()->setStrokeWidth(strokeWidth); in setStrokeWidth() 287 return fullPath->stagingProperties()->getStrokeColor(); in getStrokeColor() 297 return fullPath->stagingProperties()->getStrokeAlpha(); in getStrokeAlpha() 307 return fullPath->stagingProperties()->getFillColor(); in getFillColor() 312 fullPath->mutateStagingProperties()->setFillColor(fillColor); in setFillColor() 317 return fullPath->stagingProperties()->getFillAlpha(); in getFillAlpha() 322 fullPath->mutateStagingProperties()->setFillAlpha(fillAlpha); in setFillAlpha() 327 return fullPath->stagingProperties()->getTrimPathStart(); in getTrimPathStart() 337 return fullPath->stagingProperties()->getTrimPathEnd(); in getTrimPathEnd() [all …]
|
H A D | android_graphics_drawable_AnimatedVectorDrawable.cpp | 124 VectorDrawable::FullPath* fullPath = reinterpret_cast<VectorDrawable::FullPath*>(nativePtr); in createPathColorPropertyHolder() local 125 FullPathColorPropertyValuesHolder* newHolder = new FullPathColorPropertyValuesHolder(fullPath, in createPathColorPropertyHolder() 132 VectorDrawable::FullPath* fullPath = reinterpret_cast<VectorDrawable::FullPath*>(nativePtr); in createPathPropertyHolder() local 133 FullPathPropertyValuesHolder* newHolder = new FullPathPropertyValuesHolder(fullPath, in createPathPropertyHolder()
|
/aosp14/frameworks/base/tools/aapt/ |
H A D | FileFinder.cpp | 60 String8 fullPath = basePath.appendPathCopy(entryName); in findFiles() local 62 if (isDirectory(fullPath.string()) ) { in findFiles() 64 findFiles(fullPath, extensions, fileStore,copy); in findFiles() 69 if (isFile(fullPath.string()) ) { in findFiles() 70 checkAndAddFile(fullPath,dw->entryStats(),extensions,fileStore); in findFiles()
|
H A D | DirectoryWalker.h | 80 String8 fullPath = mBasePath.appendPathCopy(mEntry.d_name); in nextEntry() local 81 stat(fullPath.string(),&mStats); in nextEntry()
|
H A D | AaptAssets.cpp | 98 String8 fullPath(root); in isHidden() local 99 fullPath.appendPath(path); in isHidden() 100 FileType type = getFileType(fullPath); in isHidden()
|
/aosp14/frameworks/base/graphics/java/android/graphics/fonts/ |
H A D | SystemFonts.java | 85 private static @Nullable ByteBuffer mmap(@NonNull String fullPath) { in mmap() argument 86 try (FileInputStream file = new FileInputStream(fullPath)) { in mmap() 165 final String fullPath = fontConfig.getFile().getAbsolutePath(); in createFontFamily() local 166 ByteBuffer buffer = cache.get(fullPath); in createFontFamily() 168 if (cache.containsKey(fullPath)) { in createFontFamily() 171 buffer = mmap(fullPath); in createFontFamily() 172 cache.put(fullPath, buffer); in createFontFamily() 180 font = new Font.Builder(buffer, new File(fullPath), languageTags) in createFontFamily()
|
/aosp14/frameworks/base/packages/SettingsLib/src/com/android/settingslib/users/ |
H A D | AvatarPhotoController.java | 364 final File fullPath = new File(parentDir, fileName); in createTempImageUri() local 366 fullPath.delete(); in createTempImageUri() 368 return FileProvider.getUriForFile(mContext, mFileAuthority, fullPath); in createTempImageUri()
|
/aosp14/frameworks/base/core/tests/coretests/src/android/app/ |
H A D | DownloadManagerBaseTest.java | 597 StringBuilder fullPath = new StringBuilder(sdPath); in createFileOnSD() local 599 fullPath.append(File.separatorChar).append(subdirectory); in createFileOnSD() 604 file = File.createTempFile("DMTEST_", null, new File(fullPath.toString())); in createFileOnSD() 607 fullPath.append(File.separatorChar).append(filename); in createFileOnSD() 608 file = new File(fullPath.toString()); in createFileOnSD()
|
/aosp14/frameworks/base/services/core/java/com/android/server/pm/ |
H A D | PackageAbiHelperImpl.java | 74 String fullPath = codePath.getAbsolutePath(); in calculateBundledApkRoot() local 75 String[] parts = fullPath.split(File.separator); in calculateBundledApkRoot()
|
/aosp14/frameworks/base/native/android/ |
H A D | system_fonts.cpp | 208 std::string fullPath = filePath; in isFontFileAvailable() local 210 if (stat(fullPath.c_str(), &st) != 0) { in isFontFileAvailable()
|
/aosp14/frameworks/base/services/incremental/ |
H A D | IncrementalService.cpp | 314 auto fullPath = base::StringPrintf("%s/%s", path, entry->d_name); in rmDirContent() local 316 if (const auto err = rmDirContent(fullPath.c_str()); err != 0) { in rmDirContent() 317 PLOG(WARNING) << "Failed to delete " << fullPath << " content"; in rmDirContent() 320 if (const auto err = ::rmdir(fullPath.c_str()); err != 0) { in rmDirContent() 321 PLOG(WARNING) << "Failed to rmdir " << fullPath; in rmDirContent() 325 if (const auto err = ::unlink(fullPath.c_str()); err != 0) { in rmDirContent() 326 PLOG(WARNING) << "Failed to delete " << fullPath; in rmDirContent()
|