Home
last modified time | relevance | path

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

/aosp14/frameworks/base/libs/hwui/jni/
H A Dandroid_graphics_drawable_VectorDrawable.cpp277 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 Dandroid_graphics_drawable_AnimatedVectorDrawable.cpp124 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 DFileFinder.cpp60 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 DDirectoryWalker.h80 String8 fullPath = mBasePath.appendPathCopy(mEntry.d_name); in nextEntry() local
81 stat(fullPath.string(),&mStats); in nextEntry()
H A DAaptAssets.cpp98 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 DSystemFonts.java85 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 DAvatarPhotoController.java364 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 DDownloadManagerBaseTest.java597 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 DPackageAbiHelperImpl.java74 String fullPath = codePath.getAbsolutePath(); in calculateBundledApkRoot() local
75 String[] parts = fullPath.split(File.separator); in calculateBundledApkRoot()
/aosp14/frameworks/base/native/android/
H A Dsystem_fonts.cpp208 std::string fullPath = filePath; in isFontFileAvailable() local
210 if (stat(fullPath.c_str(), &st) != 0) { in isFontFileAvailable()
/aosp14/frameworks/base/services/incremental/
H A DIncrementalService.cpp314 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()