Home
last modified time | relevance | path

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

/frameworks/base/core/jni/
Dandroid_graphics_drawable_VectorDrawable.cpp135 VectorDrawable::FullPath* fullPath = reinterpret_cast<VectorDrawable::FullPath*>(fullPathPtr); in updateFullPathPropertiesAndStrokeStyles() local
136 fullPath->mutateStagingProperties()->updateProperties(strokeWidth, strokeColor, strokeAlpha, in updateFullPathPropertiesAndStrokeStyles()
155 VectorDrawable::FullPath* fullPath = reinterpret_cast<VectorDrawable::FullPath*>(fullPathPtr); in getFullPathProperties() local
157 bool success = fullPath->stagingProperties()->copyProperties(pathProperties, length); in getFullPathProperties()
273 VectorDrawable::FullPath* fullPath = reinterpret_cast<VectorDrawable::FullPath*>(fullPathPtr); in getStrokeWidth() local
274 return fullPath->stagingProperties()->getStrokeWidth(); in getStrokeWidth()
278 VectorDrawable::FullPath* fullPath = reinterpret_cast<VectorDrawable::FullPath*>(fullPathPtr); in setStrokeWidth() local
279 fullPath->mutateStagingProperties()->setStrokeWidth(strokeWidth); in setStrokeWidth()
283 VectorDrawable::FullPath* fullPath = reinterpret_cast<VectorDrawable::FullPath*>(fullPathPtr); in getStrokeColor() local
284 return fullPath->stagingProperties()->getStrokeColor(); in getStrokeColor()
[all …]
Dandroid_graphics_drawable_AnimatedVectorDrawable.cpp126 VectorDrawable::FullPath* fullPath = reinterpret_cast<VectorDrawable::FullPath*>(nativePtr); in createPathColorPropertyHolder() local
127 FullPathColorPropertyValuesHolder* newHolder = new FullPathColorPropertyValuesHolder(fullPath, in createPathColorPropertyHolder()
134 VectorDrawable::FullPath* fullPath = reinterpret_cast<VectorDrawable::FullPath*>(nativePtr); in createPathPropertyHolder() local
135 FullPathPropertyValuesHolder* newHolder = new FullPathPropertyValuesHolder(fullPath, in createPathPropertyHolder()
/frameworks/native/cmds/rawbu/
Dbackup.cpp260 char* fullPath = NULL; in backup_dir() local
287 if (fullPath != NULL) { in backup_dir()
288 free(fullPath); in backup_dir()
290 fullPath = (char*)malloc(srcLen + strlen(de->d_name) + 2); in backup_dir()
291 strcpy(fullPath, srcPath); in backup_dir()
292 fullPath[srcLen] = '/'; in backup_dir()
293 strcpy(fullPath+srcLen+1, de->d_name); in backup_dir()
298 if (strcmp(SKIP_PATHS[i].path, fullPath) == 0) { in backup_dir()
307 int ret = lstat(fullPath, &statBuffer); in backup_dir()
311 fullPath, strerror(errno)); in backup_dir()
[all …]
/frameworks/base/tools/aapt/
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()
DDirectoryWalker.h80 String8 fullPath = mBasePath.appendPathCopy(mEntry.d_name); in nextEntry() local
81 stat(fullPath.string(),&mStats); in nextEntry()
DAaptAssets.cpp98 String8 fullPath(root); in isHidden() local
99 fullPath.appendPath(path); in isHidden()
100 FileType type = getFileType(fullPath); in isHidden()
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/
DVectorDrawable_Delegate.java1104 VFullPath_Delegate fullPath = (VFullPath_Delegate) VPath; in drawPath() local
1105 if (fullPath.mTrimPathStart != 0.0f || fullPath.mTrimPathEnd != 1.0f) { in drawPath()
1106 float start = (fullPath.mTrimPathStart + fullPath.mTrimPathOffset) % 1.0f; in drawPath()
1107 float end = (fullPath.mTrimPathEnd + fullPath.mTrimPathOffset) % 1.0f; in drawPath()
1128 if (fullPath.mFillColor != Color.TRANSPARENT) { in drawPath()
1136 fillPaint.setColor(applyAlpha(fullPath.mFillColor, fullPath.mFillAlpha)); in drawPath()
1142 fillPaintDelegate.setShader(fullPath.mFillGradient); in drawPath()
1143 Path_Delegate.native_setFillType(mRenderPath.mNativePath, fullPath.mFillType); in drawPath()
1148 if (fullPath.mStrokeColor != Color.TRANSPARENT) { in drawPath()
1156 if (fullPath.mStrokeLineJoin != null) { in drawPath()
[all …]
/frameworks/compile/slang/
Dslang_rs_reflect_utils.cpp297 std::string fullPath = path1; in JoinPath() local
298 if (fullPath[fullPath.length() - 1] != OS_PATH_SEPARATOR) { in JoinPath()
299 fullPath += OS_PATH_SEPARATOR; in JoinPath()
302 fullPath += path2.substr(1, string::npos); in JoinPath()
304 fullPath += path2; in JoinPath()
306 return fullPath; in JoinPath()
/frameworks/base/tools/aapt2/flatten/
DArchive.cpp53 std::string fullPath = mOutDir; in startEntry() local
54 file::appendPath(&fullPath, path); in startEntry()
55 file::mkdirs(file::getStem(fullPath)); in startEntry()
57 mFile = { fopen(fullPath.data(), "wb"), fclose }; in startEntry()
/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
DVectorDrawableCompat.java1033 VFullPath fullPath = (VFullPath) vPath; in drawPath() local
1034 if (fullPath.mTrimPathStart != 0.0f || fullPath.mTrimPathEnd != 1.0f) { in drawPath()
1035 float start = (fullPath.mTrimPathStart + fullPath.mTrimPathOffset) % 1.0f; in drawPath()
1036 float end = (fullPath.mTrimPathEnd + fullPath.mTrimPathOffset) % 1.0f; in drawPath()
1057 if (fullPath.mFillColor != Color.TRANSPARENT) { in drawPath()
1065 fillPaint.setColor(applyAlpha(fullPath.mFillColor, fullPath.mFillAlpha)); in drawPath()
1070 if (fullPath.mStrokeColor != Color.TRANSPARENT) { in drawPath()
1078 if (fullPath.mStrokeLineJoin != null) { in drawPath()
1079 strokePaint.setStrokeJoin(fullPath.mStrokeLineJoin); in drawPath()
1082 if (fullPath.mStrokeLineCap != null) { in drawPath()
[all …]
/frameworks/base/core/tests/coretests/src/android/app/
DDownloadManagerBaseTest.java591 StringBuilder fullPath = new StringBuilder(sdPath); in createFileOnSD() local
593 fullPath.append(File.separatorChar).append(subdirectory); in createFileOnSD()
598 file = File.createTempFile("DMTEST_", null, new File(fullPath.toString())); in createFileOnSD()
601 fullPath.append(File.separatorChar).append(filename); in createFileOnSD()
602 file = new File(fullPath.toString()); in createFileOnSD()
/frameworks/base/tools/aapt2/compile/
DCompile.cpp168 std::string fullPath = prefixPath; in loadInputFilesFromDir() local
169 file::appendPath(&fullPath, leafEntry->d_name); in loadInputFilesFromDir()
172 Maybe<ResourcePathData> pathData = extractResourcePathData(fullPath, &errStr); in loadInputFilesFromDir()
/frameworks/rs/
DrsFont.cpp756 char fullPath[1024]; in renderText() local
759 strcpy(fullPath, root); in renderText()
760 strcat(fullPath, "/fonts/Roboto-Regular.ttf"); in renderText()
761 mDefault.set(Font::create(mRSC, fullPath, 8, mRSC->getDPI())); in renderText()
/frameworks/base/libs/androidfw/
DAssetManager.cpp1781 String8 fullPath; in fncScanAndMergeDirLocked() local
1791 fullPath = partialPath; in fncScanAndMergeDirLocked()
1792 pContents = scanDirLocked(fullPath); in fncScanAndMergeDirLocked()
/frameworks/base/media/java/android/media/
DMediaScanner.java1675 boolean fullPath = (ch1 == '/' ||
1678 if (!fullPath)