HomeSort by relevance Sort by last modified time
    Searched defs:fullPath (Results 1 - 25 of 232) sorted by null

1 2 3 4 5 6 7 8 910

  /external/skia/tests/
BadIcoTest.cpp 32 SkString fullPath = SkOSPath::Join(resourcePath.c_str(), badImages[i]);
33 SkAutoTDelete<SkStream> stream(SkStream::NewFromFile(fullPath.c_str()));
YUVTest.cpp 15 SkString fullPath = GetResourcePath(path);
16 return SkStream::NewFromFile(fullPath.c_str());
  /external/skia/tools/
picture_utils.cpp 63 SkString fullPath = SkOSPath::Join(partialPath.c_str(), baseName.c_str());
64 if (SkImageEncoder::EncodeFile(fullPath.c_str(), bm, SkImageEncoder::kPNG_Type, 100)) {
67 SkDebugf("Failed to write the bitmap to %s.\n", fullPath.c_str());
  /frameworks/base/tools/aapt/
FileFinder.cpp 60 String8 fullPath = basePath.appendPathCopy(entryName);
62 if (isDirectory(fullPath.string()) ) {
64 findFiles(fullPath, extensions, fileStore,copy);
69 if (isFile(fullPath.string()) ) {
70 checkAndAddFile(fullPath,dw->entryStats(),extensions,fileStore);
DirectoryWalker.h 80 String8 fullPath = mBasePath.appendPathCopy(mEntry.d_name);
81 stat(fullPath.string(),&mStats);
  /external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
FileSystemResourceLoader.java 77 String fullPath;
79 fullPath = file.getCanonicalPath();
81 fullPath = file.getAbsolutePath();
83 return String.format("%s@%s", fullPath, file.lastModified());
  /external/lzma/CPP/7zip/UI/Common/
ArchiveOpenCallback.cpp 86 FString fullPath;
87 if (!NFile::NName::GetFullPath(_folderPrefix, us2fs(name), fullPath))
89 if (!_fileInfo.Find(fullPath))
95 if (!inFile->Open(fullPath))
UpdateCallback.cpp 340 FString fullPath;
341 if (NDir::MyGetFullPathName(us2fs(phyPath), fullPath))
343 prop = GetRelativePath(simpleName, fs2us(fullPath));
  /external/skia/bench/
SkipZeroesBench.cpp 55 SkString fullPath = SkOSPath::Join(resourcePath.c_str(), fFilename.c_str());
56 SkFILEStream fileStream(fullPath.c_str());
  /frameworks/base/tools/aapt2/flatten/
Archive.cpp 53 std::string fullPath = mOutDir;
54 file::appendPath(&fullPath, path);
55 file::mkdirs(file::getStem(fullPath));
57 mFile = { fopen(fullPath.data(), "wb"), fclose };
  /external/lzma/CPP/7zip/Bundles/SFXSetup/
ExtractCallbackSfx.cpp 81 FString fullPath = _directoryPath;
84 fullPath += us2fs(dirPathParts[i]);
85 CreateDir(fullPath);
86 fullPath += FCHAR_PATH_SEPARATOR;
100 UString fullPath;
102 fullPath = _itemDefaultName;
107 fullPath = propVariantName.bstrVal;
109 _filePath = fullPath;
144 SplitPathToParts(fullPath, pathParts);
148 UString processedPath = fullPath;
    [all...]
SfxSetup.cpp 145 FString fullPath;
146 NDLL::MyGetModuleFileName(fullPath);
158 if (!ReadDataString(fullPath, kStartID, kEndID, config))
221 HRESULT result = ExtractArchive(codecs, fullPath, tempDirPath, showProgress,
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
GeeTest.java 157 String fullPath = NATIVE_TESTS_DIRECTORY + ANDROID_PATH_SEPARATOR + mExeName;
159 CLog.v("Running gtest %s %s on %s", fullPath, flags, mDevice.getSerialNumber());
161 CLog.v("%s", mDevice.executeShellCommand(String.format("chmod 755 %s", fullPath)));
164 mDevice.executeShellCommand(String.format("%s %s", fullPath, flags), resultParser,
TestPackageRepo.java 79 String fullPath = pkgXml.getAbsolutePath();
80 int lastDot = fullPath.lastIndexOf('.');
85 File preparer = new File(fullPath.substring(0, lastDot) + ".config");
  /external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
ResourceLoaderAdaptor.java 196 String fullPath;
198 fullPath = file.getCanonicalPath();
200 fullPath = file.getAbsolutePath();
202 return String.format("%s@%s", fullPath, file.lastModified());
  /external/lzma/CPP/7zip/Bundles/SFXWin/
SfxWin.cpp 126 FString fullPath;
127 if (!MyGetFullPathName(path, fullPath))
174 v1.Add(fs2us(fullPath));
175 v2.Add(fs2us(fullPath));
  /external/deqp/executor/tools/
xeBatchResultToXml.cpp 288 string fullPath;
289 testNode->getFullPath(fullPath);
  /external/deqp/executor/
xeBatchExecutor.cpp 46 std::string fullPath;
47 testCase->getFullPath(fullPath);
49 if (batchResult->hasTestCaseResult(fullPath.c_str()))
51 ConstTestCaseResultPtr data = batchResult->getTestCaseResult(fullPath.c_str());
xeTestCase.cpp 266 std::string fullPath;
267 childGroup->getFullPath(fullPath);
269 groupMap.insert(std::make_pair(fullPath, childGroup));
  /external/deqp/external/vulkancts/framework/vulkan/
vkBinaryRegistry.cpp 60 const de::FilePath fullPath = getProgramPath(dstDir, index);
62 if (!de::FilePath(fullPath.getDirName()).exists())
63 de::createDirectoryAndParents(fullPath.getDirName().c_str());
66 std::ofstream out (fullPath.getPath(), std::ios_base::binary);
69 throw tcu::Exception("Failed to open " + string(fullPath.getPath()));
416 const string fullPath = getProgramPath(m_srcPath, *indexPos);
420 de::UniquePtr<tcu::Resource> progRes (m_archive.getResource(fullPath.c_str()));
  /external/icu/icu4c/source/tools/toolutil/
pkg_gencmn.c 407 char *fullPath = NULL;
425 fullPath = pathToFullPath(filename, source);
438 files[fileCount].pathname=fullPath;
443 file=T_FileStream_open(fullPath, "rb");
445 fprintf(stderr, "gencmn: unable to open listed file %s\n", fullPath);
452 fprintf(stderr, "gencmn: unable to get length of listed file %s\n", fullPath);
461 printf("%s ignored (size %ld > %ld)\n", fullPath, (long)length, (long)maxSize);
511 char *fullPath;
516 fullPath = uprv_malloc(newLength);
518 uprv_strcpy(fullPath, source)
    [all...]
  /frameworks/base/core/jni/
android_graphics_drawable_AnimatedVectorDrawable.cpp 126 VectorDrawable::FullPath* fullPath = reinterpret_cast<VectorDrawable::FullPath*>(nativePtr);
127 FullPathColorPropertyValuesHolder* newHolder = new FullPathColorPropertyValuesHolder(fullPath,
134 VectorDrawable::FullPath* fullPath = reinterpret_cast<VectorDrawable::FullPath*>(nativePtr);
135 FullPathPropertyValuesHolder* newHolder = new FullPathPropertyValuesHolder(fullPath,
  /frameworks/base/tools/aapt2/compile/
Compile.cpp 168 std::string fullPath = prefixPath;
169 file::appendPath(&fullPath, leafEntry->d_name);
172 Maybe<ResourcePathData> pathData = extractResourcePathData(fullPath, &errStr);
  /frameworks/compile/slang/
slang_rs_reflect_utils.cpp 297 std::string fullPath = path1;
298 if (fullPath[fullPath.length() - 1] != OS_PATH_SEPARATOR) {
299 fullPath += OS_PATH_SEPARATOR;
302 fullPath += path2.substr(1, string::npos);
304 fullPath += path2;
306 return fullPath;
  /frameworks/native/cmds/rawbu/
backup.cpp 260 char* fullPath = NULL;
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, strerror(errno))
    [all...]

Completed in 708 milliseconds

1 2 3 4 5 6 7 8 910