Home
last modified time | relevance | path

Searched refs:FullPath (Results 1 – 13 of 13) sorted by relevance

/third_party/openh264/test/encoder_binary_comparison/Scripts/
Drun_SafeDelete.sh64 local FullPath=""
69 FullPath=`echo ${PathInfo} |awk 'BEGIN {FS="/"} {for (i=1;i<NF;i++) printf("%s/",$i)}'`
70 cd ${FullPath}
71 FullPath=`pwd`
73 echo "${FullPath}"
77 FullPath=`echo ${PathInfo} |awk 'BEGIN {FS="/"} {for (i=1;i<NF;i++) printf("%s/",$i)}'`
78 cd ${FullPath}
79 FullPath=`pwd`
81 echo "${FullPath}"
84 FullPath=${CurrentDir}
[all …]
/third_party/giflib/
Dgifinto.c79 char **FileName = NULL, FoutTmpName[STRLEN+1], FullPath[STRLEN+1], *p; in main() local
117 memset(FullPath, '\0', sizeof(FullPath)); in main()
118 strncpy(FullPath, *FileName, STRLEN); in main()
119 if ((p = strrchr(FullPath, '/')) != NULL || in main()
120 (p = strrchr(FullPath, '\\')) != NULL) in main()
122 else if ((p = strrchr(FullPath, ':')) != NULL) in main()
125 FullPath[0] = 0; /* No directory or disk specified. */ in main()
127 if ( strlen(FullPath) > STRLEN-1 ) GIF_EXIT("Filename too long."); in main()
128 strncpy(FoutTmpName, FullPath, STRLEN); /* First setup the Path */ in main()
167 if ( (strlen(FullPath) + strlen(DEFAULT_OUT_NAME)) > STRLEN-1 ) GIF_EXIT("Filename too long."); in main()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Remarks/
DYAMLRemarkParser.cpp144 SmallString<80> FullPath; in createYAMLParserFromMeta() local
146 FullPath = *ExternalFilePrependPath; in createYAMLParserFromMeta()
147 sys::path::append(FullPath, ExternalFilePath); in createYAMLParserFromMeta()
151 MemoryBuffer::getFile(FullPath); in createYAMLParserFromMeta()
153 return createFileError(FullPath, EC); in createYAMLParserFromMeta()
DBitstreamRemarkParser.cpp421 SmallString<80> FullPath(ExternalFilePrependPath); in processExternalFilePath() local
422 sys::path::append(FullPath, *ExternalFilePath); in processExternalFilePath()
428 MemoryBuffer::getFile(FullPath); in processExternalFilePath()
430 return createFileError(FullPath, EC); in processExternalFilePath()
/third_party/cef/tests/ceftests/
Dscoped_temp_dir_unittest.cc11 TEST(ScopedTempDir, FullPath) { in TEST() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DVirtualFileSystem.cpp1396 SmallString<256> FullPath; in parseEntry() local
1398 FullPath = FS->getExternalContentsPrefixDir(); in parseEntry()
1399 assert(!FullPath.empty() && in parseEntry()
1401 llvm::sys::path::append(FullPath, Value); in parseEntry()
1403 FullPath = Value; in parseEntry()
1409 FullPath = sys::path::remove_leading_dotslash(FullPath); in parseEntry()
1410 sys::path::remove_dots(FullPath, /*remove_dot_dot=*/true); in parseEntry()
1412 ExternalContentsPath = FullPath.str(); in parseEntry()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/Windows/
DPath.inc89 SmallString<2*MAX_PATH> FullPath("\\\\?\\");
94 FullPath.append(CurPath);
106 llvm::sys::path::remove_filename(FullPath);
108 llvm::sys::path::append(FullPath, *I);
110 return UTF8ToUTF16(FullPath, Path16);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFVerifier.cpp728 std::string FullPath; in verifyDebugLineRows() local
731 DILineInfoSpecifier::FileLineInfoKind::AbsoluteFilePath, FullPath); in verifyDebugLineRows()
734 auto It = FullPathMap.find(FullPath); in verifyDebugLineRows()
736 FullPathMap[FullPath] = FileIndex; in verifyDebugLineRows()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Windows/
DPath.inc91 SmallString<2*MAX_PATH> FullPath("\\\\?\\");
96 FullPath.append(CurPath);
111 llvm::sys::path::remove_filename(FullPath);
113 llvm::sys::path::append(FullPath, *I);
115 return UTF8ToUTF16(FullPath, Path16);
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
Dxcodeproj_file.py1070 def FullPath(self): member in XCHierarchicalElement
1821 paths.append(variant.FullPath())
1823 paths.append(xcfilelikeelement.FullPath())
/third_party/node/tools/gyp/pylib/gyp/
Dxcodeproj_file.py1139 def FullPath(self): member in XCHierarchicalElement
1932 paths.append(variant.FullPath())
1934 paths.append(xcfilelikeelement.FullPath())
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DCodeViewDebug.cpp239 StringRef FullPath = getFullFilepath(F); in maybeRecordFile() local
241 auto Insertion = FileIdMap.insert(std::make_pair(FullPath, NextId)); in maybeRecordFile()
257 bool Success = OS.EmitCVFileDirective(NextId, FullPath, ChecksumAsBytes, in maybeRecordFile()
/third_party/mesa3d/src/gallium/auxiliary/util/
Ddbghelp.h1196 PWCHAR FullPath; member