/prebuilts/clang/host/linux-x86/clang-2658975/tools/scan-build/libexec/ |
ccc-analyzer | 120 # Remove any stale files at exit. 142 # Set this to 1 if we want to include 'parser rejects' files. 334 # Add this file to the list of files that contained this attribute. 453 my @Files; 647 # Input files. 651 while (<IN>) { s/\015?\012//; push @Files,$_; } 680 push @Files, $Arg; 699 foreach my $file (@Files) { 750 # If the HtmlDir is not set, we should clean up the plist files.
|
/prebuilts/clang/host/linux-x86/clang-2690385/tools/scan-build/libexec/ |
ccc-analyzer | 120 # Remove any stale files at exit. 142 # Set this to 1 if we want to include 'parser rejects' files. 334 # Add this file to the list of files that contained this attribute. 453 my @Files; 647 # Input files. 651 while (<IN>) { s/\015?\012//; push @Files,$_; } 680 push @Files, $Arg; 699 foreach my $file (@Files) { 750 # If the HtmlDir is not set, we should clean up the plist files.
|
/prebuilts/clang/linux-x86/host/3.6/tools/scan-build/ |
ccc-analyzer | 90 # Remove any stale files at exit. 112 # Set this to 1 if we want to include 'parser rejects' files. 324 # Add this file to the list of files that contained this attribute. 443 my @Files; 637 # Input files. 641 while (<IN>) { s/\015?\012//; push @Files,$_; } 661 push @Files, $Arg; 680 foreach my $file (@Files) { 731 # If the HtmlDir is not set, we should clean up the plist files.
|
/prebuilts/misc/darwin-x86/analyzer/tools/scan-build/ |
ccc-analyzer | 71 # Remove any stale files at exit. 93 # Set this to 1 if we want to include 'parser rejects' files. 306 # Add this file to the list of files that contained this attribute. 421 my @Files; 599 # Input files. 603 while (<IN>) { s/\015?\012//; push @Files,$_; } 623 push @Files, $Arg; 633 foreach my $file (@Files) { 684 # If the HtmlDir is not set, we sould clean up the plist files.
|
/prebuilts/misc/linux-x86/analyzer/tools/scan-build/ |
ccc-analyzer | 71 # Remove any stale files at exit. 93 # Set this to 1 if we want to include 'parser rejects' files. 306 # Add this file to the list of files that contained this attribute. 421 my @Files; 599 # Input files. 603 while (<IN>) { s/\015?\012//; push @Files,$_; } 623 push @Files, $Arg; 633 foreach my $file (@Files) { 684 # If the HtmlDir is not set, we sould clean up the plist files.
|
/development/tools/idegen/src/com/android/idegen/ |
MakeFileParser.java | 26 import com.google.common.io.Files; 40 * Parses the make files and finds the appropriate section a given module. 78 Files.readLines(makeFile, Charset.forName("UTF-8"), new MakeFileLineProcessor()); 166 // Value may contain function calls such as "$(call all-java-files-under)" or refer 225 if (value.startsWith("call all-java-files-under")) {
|
/external/emma/core/java12/com/vladium/util/ |
Files.java | 7 * $Id: Files.java,v 1.1.1.1.2.1 2004/07/09 01:28:37 vlad_r Exp $ 27 abstract class Files 74 * Converts an array of path segments to an array of Files. The order 75 * of files follows the original order of path segments, except "duplicate" 93 final List /* Files */ _result = new ArrayList (path.length); 297 * MT-safety: if several threads use this API concurrently, the temp files 299 * to files that did not exist before. However, if such a temp file is deleted 301 * guarantees do not hold if files are created in the same directory outside 335 private Files () {} // prevent subclassing
|
/external/llvm/tools/llvm-cov/ |
CoverageReport.cpp | 174 void CoverageReport::renderFunctionReports(ArrayRef<std::string> Files, 178 for (StringRef Filename : Files) {
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/ |
MediaInserterTest.java | 25 import android.provider.MediaStore.Files; 50 private static final Uri sFilesUri = Files.getContentUri(sVolumeName);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/ |
ImportedProject.java | 34 import com.google.common.io.Files; 130 // I could also look at the build files, say build.xml from ant, and 166 xml = Files.toString(projectFile, Charsets.UTF_8);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
TemplateManager.java | 32 import com.google.common.io.Files; 156 File[] files = new File(root, folder).listFiles(); local 157 if (files != null) { 158 for (File file : files) { 169 File[] files = new File(extra, folder).listFiles(); local 170 if (files != null) { 171 for (File file : files) { 206 * Compare two files, and return the one with the HIGHEST revision, and if 243 String xml = Files.toString(templateFile, Charsets.UTF_8);
|
/external/lzma/CPP/7zip/Archive/7z/ |
7zIn.cpp | 579 cur = Files[cur].Parent;
605 const CFileItem &file = Files[cur];
1193 db.Files.Clear();
1199 db.Files.ClearAndSetSize(numFiles);
1202 db.Files.Reserve(numFiles);
1205 db.Files.Add(CFileItem());
1243 db.NameOffsets.Alloc(db.Files.Size() + 1);
1246 for (i = 0; i < db.Files.Size(); i++)
1265 ReadBoolVector2(db.Files.Size(), boolVector);
1270 CFileItem &file = db.Files[i]; [all...] |
/external/clang/lib/Tooling/Core/ |
Replacement.cpp | 260 FileManager Files(FileSystemOptions(), InMemoryFileSystem); 264 SourceManager SourceMgr(Diagnostics, Files); 268 FileID ID = SourceMgr.createFileID(Files.getFile("<stdin>"), SourceLocation(),
|
/external/clang/tools/libclang/ |
CXLoadedDiagnostic.cpp | 50 llvm::DenseMap<unsigned, const FileEntry *> Files; 281 LoadedLoc.file = const_cast<FileEntry *>(TopDiags->Files[FileID]); 348 TopDiags->Files[ID] =
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/refactorings/core/ |
RefactoringTestBase.java | 25 import com.google.common.io.Files; 217 // files first: res > src > gen 275 Files.write(contents, to, Charsets.UTF_8); 277 Files.write((byte[]) o, to);
|
/build/tools/droiddoc/templates-ndk/ |
sampleindex.cs | 34 <?cs def:display_files(files) ?> 36 <?cs each:file = files ?> 65 <?cs call:display_files(Files) ?> 74 # <?cs call:display_files(Files) ?>
|
/build/tools/droiddoc/templates-sdk/ |
sampleindex.cs | 34 <?cs def:display_files(files) ?> 36 <?cs each:file = files ?> 65 <?cs call:display_files(Files) ?> 74 # <?cs call:display_files(Files) ?>
|
/build/tools/droiddoc/templates-sdk-dev/ |
sampleindex.cs | 29 <?cs def:display_files(files) ?> 31 <?cs each:file = files ?> 60 <?cs call:display_files(Files) ?> 69 # <?cs call:display_files(Files) ?>
|
/build/tools/droiddoc/templates-sdk-refonly/ |
sampleindex.cs | 34 <?cs def:display_files(files) ?> 36 <?cs each:file = files ?> 65 <?cs call:display_files(Files) ?> 74 # <?cs call:display_files(Files) ?>
|
/development/tools/idegen/src/ |
Eclipse.java | 109 Files.toFile(classpath.toString(), new File(".classpath"));
|
/external/testng/src/main/java/org/testng/reporters/ |
FileStringBuffer.java | 140 result = Files.readFile(m_file);
|
/packages/apps/Gallery2/src/com/android/photos/ |
AlbumSetFragment.java | 26 import android.provider.MediaStore.Files.FileColumns;
|
SelectionManager.java | 25 import android.provider.MediaStore.Files.FileColumns;
|
/prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/ |
buildtools.py | 13 import Carbon.Files 153 raise BuildError, "Extra files only allowed for MachoPython applets" 154 # Create FSSpecs for the various files 273 dest_finfo.Flags = dest_finfo.Flags | Carbon.Files.kHasBundle | Carbon.Files.kIsShared 274 dest_finfo.Flags = dest_finfo.Flags & ~Carbon.Files.kHasBeenInited 323 builder.files.append((realrsrcname, 329 builder.files.append(o)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
buildtools.py | 13 import Carbon.Files 153 raise BuildError, "Extra files only allowed for MachoPython applets" 154 # Create FSSpecs for the various files 273 dest_finfo.Flags = dest_finfo.Flags | Carbon.Files.kHasBundle | Carbon.Files.kIsShared 274 dest_finfo.Flags = dest_finfo.Flags & ~Carbon.Files.kHasBeenInited 323 builder.files.append((realrsrcname, 329 builder.files.append(o)
|