Home
last modified time | relevance | path

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

/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.cpp99 String8 fullPath(root); in isHidden() local
100 fullPath.appendPath(path); in isHidden()
101 FileType type = getFileType(fullPath); in isHidden()
/frameworks/compile/slang/
Dslang_rs_reflect_utils.cpp295 std::string fullPath = path1; in JoinPath() local
296 if (fullPath[fullPath.length() - 1] != OS_PATH_SEPARATOR) { in JoinPath()
297 fullPath += OS_PATH_SEPARATOR; in JoinPath()
300 fullPath += path2.substr(1, string::npos); in JoinPath()
302 fullPath += path2; in JoinPath()
304 return fullPath; in JoinPath()
/frameworks/base/graphics/java/android/graphics/drawable/
DVectorDrawable.java959 VFullPath fullPath = (VFullPath) vPath; in drawPath() local
960 if (fullPath.mTrimPathStart != 0.0f || fullPath.mTrimPathEnd != 1.0f) { in drawPath()
961 float start = (fullPath.mTrimPathStart + fullPath.mTrimPathOffset) % 1.0f; in drawPath()
962 float end = (fullPath.mTrimPathEnd + fullPath.mTrimPathOffset) % 1.0f; in drawPath()
983 if (fullPath.mFillColor != Color.TRANSPARENT) { in drawPath()
991 fillPaint.setColor(applyAlpha(fullPath.mFillColor, fullPath.mFillAlpha)); in drawPath()
996 if (fullPath.mStrokeColor != Color.TRANSPARENT) { in drawPath()
1004 if (fullPath.mStrokeLineJoin != null) { in drawPath()
1005 strokePaint.setStrokeJoin(fullPath.mStrokeLineJoin); in drawPath()
1008 if (fullPath.mStrokeLineCap != null) { in drawPath()
[all …]
/frameworks/base/core/tests/coretests/src/android/app/
DDownloadManagerBaseTest.java592 StringBuilder fullPath = new StringBuilder(sdPath); in createFileOnSD() local
594 fullPath.append(File.separatorChar).append(subdirectory); in createFileOnSD()
599 file = File.createTempFile("DMTEST_", null, new File(fullPath.toString())); in createFileOnSD()
602 fullPath.append(File.separatorChar).append(filename); in createFileOnSD()
603 file = new File(fullPath.toString()); in createFileOnSD()
/frameworks/rs/
DrsFont.cpp760 char fullPath[1024]; in renderText() local
763 strcpy(fullPath, root); in renderText()
764 strcat(fullPath, "/fonts/Roboto-Regular.ttf"); in renderText()
765 mDefault.set(Font::create(mRSC, fullPath, 8, mRSC->getDPI())); in renderText()
/frameworks/base/libs/androidfw/
DAssetManager.cpp1788 String8 fullPath; in fncScanAndMergeDirLocked() local
1798 fullPath = partialPath; in fncScanAndMergeDirLocked()
1799 pContents = scanDirLocked(fullPath); in fncScanAndMergeDirLocked()
/frameworks/base/media/java/android/media/
DMediaScanner.java1621 boolean fullPath = (ch1 == '/' ||
1624 if (!fullPath)