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

/frameworks/base/tools/aapt/
H A DFileFinder.cpp60 String8 fullPath = basePath.appendPathCopy(entryName); local
62 if (isDirectory(fullPath.string()) ) {
64 findFiles(fullPath, extensions, fileStore,copy);
69 if (isFile(fullPath.string()) ) {
70 checkAndAddFile(fullPath,dw->entryStats(),extensions,fileStore);
H A DDirectoryWalker.h80 String8 fullPath = mBasePath.appendPathCopy(mEntry.d_name); local
81 stat(fullPath.string(),&mStats);
H A DAaptAssets.cpp99 String8 fullPath(root);
100 fullPath.appendPath(path);
101 FileType type = getFileType(fullPath);
/frameworks/native/cmds/rawbu/
H A Dbackup.cpp260 char* fullPath = NULL; local
287 if (fullPath != NULL) {
288 free(fullPath);
290 fullPath = (char*)malloc(srcLen + strlen(de->d_name) + 2);
291 strcpy(fullPath, srcPath);
292 fullPath[srcLen] = '/';
293 strcpy(fullPath+srcLen+1, de->d_name);
298 if (strcmp(SKIP_PATHS[i].path, fullPath) == 0) {
307 int ret = lstat(fullPath, &statBuffer);
311 fullPath, strerro
[all...]
/frameworks/compile/slang/
H A Dslang_rs_reflect_utils.cpp295 std::string fullPath = path1; local
296 if (fullPath[fullPath.length() - 1] != OS_PATH_SEPARATOR) {
297 fullPath += OS_PATH_SEPARATOR;
300 fullPath += path2.substr(1, string::npos);
302 fullPath += path2;
304 return fullPath;
/frameworks/base/graphics/java/android/graphics/drawable/
H A DVectorDrawable.java956 VFullPath fullPath = (VFullPath) vPath;
957 if (fullPath.mTrimPathStart != 0.0f || fullPath.mTrimPathEnd != 1.0f) {
958 float start = (fullPath.mTrimPathStart + fullPath.mTrimPathOffset) % 1.0f;
959 float end = (fullPath.mTrimPathEnd + fullPath.mTrimPathOffset) % 1.0f;
980 if (fullPath.mFillColor != Color.TRANSPARENT) {
988 fillPaint.setColor(applyAlpha(fullPath.mFillColor, fullPath
[all...]
/frameworks/base/core/tests/coretests/src/android/app/
H A DDownloadManagerBaseTest.java592 StringBuilder fullPath = new StringBuilder(sdPath);
594 fullPath.append(File.separatorChar).append(subdirectory);
599 file = File.createTempFile("DMTEST_", null, new File(fullPath.toString()));
602 fullPath.append(File.separatorChar).append(filename);
603 file = new File(fullPath.toString());
/frameworks/rs/
H A DrsFont.cpp760 char fullPath[1024]; local
763 strcpy(fullPath, root);
764 strcat(fullPath, "/fonts/Roboto-Regular.ttf");
765 mDefault.set(Font::create(mRSC, fullPath, 8, mRSC->getDPI()));
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp1788 String8 fullPath; local
1798 fullPath = partialPath;
1799 pContents = scanDirLocked(fullPath);
/frameworks/base/media/java/android/media/
H A DMediaScanner.java1621 boolean fullPath = (ch1 == '/' ||
1624 if (!fullPath)

Completed in 1461 milliseconds