HomeSort by relevance Sort by last modified time
    Searched full:fullpath (Results 1 - 25 of 117) sorted by null

1 2 3 4 5

  /external/llvm/lib/Linker/
Linker.cpp 121 sys::Path FullPath(Directory);
124 FullPath.appendComponent(("lib" + Name).str());
125 FullPath.appendSuffix("a");
126 if (FullPath.isArchive())
127 return FullPath;
130 FullPath.eraseSuffix();
131 FullPath.appendSuffix("bca");
132 if (FullPath.isArchive())
133 return FullPath;
136 FullPath.eraseSuffix()
    [all...]
  /external/webkit/Tools/Scripts/
svn-unapply 146 my $fullPath = $diffHashRef->{indexPath};
149 $directoriesToCheck{dirname($fullPath)} = 1;
159 if (basename($fullPath) eq "ChangeLog") {
160 my $changeLogDotOrigExisted = -f "${fullPath}.orig";
162 unapplyPatch(unsetChangeLogDate($fullPath, $changeLogHash->{patch}), $fullPath, ["--fuzz=3"]);
163 unlink("${fullPath}.orig") if (! $changeLogDotOrigExisted);
165 unapplyPatch($patch, $fullPath);
173 unlink($fullPath) if (-e $fullPath);
    [all...]
svn-apply 221 my ($fullPath, $contents) = @_;
227 open FILE, ">", $fullPath or die "Failed to open $fullPath.";
230 if (!scmKnowsOfFile($fullPath)) {
232 scmAdd($fullPath);
236 scmRemove($fullPath);
242 my ($fullPath, $diffHashRef) = @_;
246 my ($binaryChunkType, $binaryChunk, $reverseBinaryChunkType, $reverseBinaryChunk) = decodeGitBinaryPatch($contents, $fullPath);
252 if (open FILE, $fullPath) {
253 die "$fullPath already exists" if $isFileAddition
    [all...]
  /external/icu4c/common/
common.vcxproj 437 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">copy "%(FullPath)" ..\..\include\unicode
440 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">copy "%(FullPath)" ..\..\include\unicode
443 <Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">copy "%(FullPath)" ..\..\include\unicode
446 <Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">copy "%(FullPath)" ..\..\include\unicode
453 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">copy "%(FullPath)" ..\..\include\unicode
456 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">copy "%(FullPath)" ..\..\include\unicode
459 <Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">copy "%(FullPath)" ..\..\include\unicode
462 <Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">copy "%(FullPath)" ..\..\include\unicode
468 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">copy "%(FullPath)" ..\..\include\unicode
471 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">copy "%(FullPath)" ..\..\include\unicode
    [all...]
  /external/bluetooth/glib/gio/inotify/
inotify-helper.c 146 gchar *fullpath; local
154 fullpath = g_strdup_printf ("%s/%s", sub->dirname, event->name);
156 fullpath = g_strdup_printf ("%s/", sub->dirname);
158 child = g_file_new_for_path (fullpath);
159 g_free (fullpath);
171 gchar *fullpath; local
181 fullpath = g_strdup_printf ("%s/%s", sub->dirname, sub->filename);
182 g_warning ("Missing callback called fullpath = %s\n", fullpath);
183 if (!g_file_test (fullpath, G_FILE_TEST_EXISTS)
    [all...]
  /external/icu4c/i18n/
i18n.vcxproj 426 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">copy "%(FullPath)" ..\..\include\unicode
429 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">copy "%(FullPath)" ..\..\include\unicode
432 <Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">copy "%(FullPath)" ..\..\include\unicode
435 <Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">copy "%(FullPath)" ..\..\include\unicode
440 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">copy "%(FullPath)" ..\..\include\unicode
443 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">copy "%(FullPath)" ..\..\include\unicode
446 <Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">copy "%(FullPath)" ..\..\include\unicode
449 <Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">copy "%(FullPath)" ..\..\include\unicode
454 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">copy "%(FullPath)" ..\..\include\unicode
457 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">copy "%(FullPath)" ..\..\include\unicode
    [all...]
  /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);
  /external/webkit/Source/WebCore/fileapi/
DOMFileSystemBase.cpp 108 String platformPath = m_asyncFileSystem->virtualToPlatformPath(entry->fullPath());
124 if (source->isDirectory() && DOMFilePath::isParentOf(source->fullPath(), parent->fullPath()))
128 if ((newName.isEmpty() || source->name() == newName) && DOMFilePath::getDirectory(source->fullPath()) == parent->fullPath())
131 destinationPath = parent->fullPath();
145 path = DOMFilePath::append(base->fullPath(), path);
159 String sourcePlatformPath = m_asyncFileSystem->virtualToPlatformPath(source->fullPath());
171 String sourcePlatformPath = m_asyncFileSystem->virtualToPlatformPath(source->fullPath());
181 if (entry->fullPath() == String(DOMFilePath::root)
    [all...]
DirectoryReader.h 50 static PassRefPtr<DirectoryReader> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
52 return adoptRef(new DirectoryReader(fileSystem, fullPath));
60 DirectoryReader(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
DirectoryReaderSync.h 46 static PassRefPtr<DirectoryReaderSync> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
48 return adoptRef(new DirectoryReaderSync(fileSystem, fullPath));
54 DirectoryReaderSync(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
FileEntry.h 46 static PassRefPtr<FileEntry> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
48 return adoptRef(new FileEntry(fileSystem, fullPath));
57 FileEntry(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath);
FileEntrySync.h 48 static PassRefPtr<FileEntrySync> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
50 return adoptRef(new FileEntrySync(fileSystem, fullPath));
60 FileEntrySync(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
DirectoryEntry.h 52 static PassRefPtr<DirectoryEntry> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
54 return adoptRef(new DirectoryEntry(fileSystem, fullPath));
64 DirectoryEntry(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
DirectoryEntrySync.h 49 static PassRefPtr<DirectoryEntrySync> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
51 return adoptRef(new DirectoryEntrySync(fileSystem, fullPath));
62 DirectoryEntrySync(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
EntryBase.cpp 46 EntryBase::EntryBase(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
48 , m_fullPath(fullPath)
49 , m_name(DOMFilePath::getName(fullPath))
DirectoryReader.cpp 43 DirectoryReader::DirectoryReader(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
44 : DirectoryReaderBase(fileSystem, fullPath)
DirectoryReaderBase.h 49 DirectoryReaderBase(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
51 , m_fullPath(fullPath)
  /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/llvm/lib/ExecutionEngine/
EventListenerCommon.h 50 SmallString<256> FullPath;
52 FullPath = DirName;
55 sys::path::append(FullPath, FileName);
57 P = FullPath.str();
  /external/icu4c/tools/toolutil/
pkg_gencmn.c 386 char *fullPath = NULL;
404 fullPath = pathToFullPath(filename, source);
418 files[fileCount].pathname=fullPath;
423 file=T_FileStream_open(fullPath, "rb");
425 fprintf(stderr, "gencmn: unable to open listed file %s\n", fullPath);
432 fprintf(stderr, "gencmn: unable to get length of listed file %s\n", fullPath);
441 printf("%s ignored (size %ld > %ld)\n", fullPath, (long)length, (long)maxSize);
494 char *fullPath;
499 fullPath = uprv_malloc(newLength);
501 uprv_strcpy(fullPath, source)
    [all...]
  /external/webkit/Source/WebCore/storage/
OriginUsageRecord.cpp 42 void OriginUsageRecord::addDatabase(const String& identifier, const String& fullPath)
46 ASSERT_ARG(fullPath, fullPath.impl()->hasOneRef() || fullPath.isEmpty());
48 m_databaseMap.set(identifier, DatabaseEntry(fullPath));
  /external/icu4c/layout/
layout.vcxproj 361 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">copy "%(FullPath)" ..\..\include\layout
364 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">copy "%(FullPath)" ..\..\include\layout
367 <Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">copy "%(FullPath)" ..\..\include\layout
370 <Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">copy "%(FullPath)" ..\..\include\layout
376 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">copy "%(FullPath)" ..\..\include\layout
379 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">copy "%(FullPath)" ..\..\include\layout
382 <Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">copy "%(FullPath)" ..\..\include\layout
385 <Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">copy "%(FullPath)" ..\..\include\layout
390 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">copy "%(FullPath)" ..\..\include\layout
393 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">copy "%(FullPath)" ..\..\include\layout
    [all...]
  /external/webkit/Source/WebCore/inspector/
inline-javascript-imports.py 58 fullPath = os.path.join(importsDir, importFileName)
59 if not os.access(fullPath, os.F_OK):
63 importFile = open(fullPath, 'r')
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
GeeTest.java 105 String fullPath = NATIVE_TESTS_DIRECTORY + File.separator + mExeName;
107 CLog.v("Running gtest %s %s on %s", fullPath, flags, mDevice.getSerialNumber());
109 CLog.v("%s", mDevice.executeShellCommand(String.format("chmod 755 %s", fullPath)));
112 mDevice.executeShellCommand(String.format("%s %s", fullPath, flags), resultParser,
  /external/icu4c/layoutex/
layoutex.vcxproj 253 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">copy "%(FullPath)" ..\..\include\layout
256 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">copy "%(FullPath)" ..\..\include\layout
259 <Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">copy "%(FullPath)" ..\..\include\layout
262 <Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">copy "%(FullPath)" ..\..\include\layout
267 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">copy "%(FullPath)" ..\..\include\layout
270 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">copy "%(FullPath)" ..\..\include\layout
273 <Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">copy "%(FullPath)" ..\..\include\layout
276 <Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">copy "%(FullPath)" ..\..\include\layout
281 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">copy "%(FullPath)" ..\..\include\layout
284 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">copy "%(FullPath)" ..\..\include\layout
    [all...]

Completed in 578 milliseconds

1 2 3 4 5