/external/clang/include/clang/Tooling/ |
H A D | CompilationDatabase.h | 45 CompileCommand(Twine Directory, ArrayRef<std::string> CommandLine) argument 46 : Directory(Directory.str()), CommandLine(CommandLine) {} 49 std::string Directory; member in struct:clang::tooling::CompileCommand 131 virtual CompilationDatabase *loadFromDirectory(StringRef Directory, 165 /// \param Directory The base directory used in the FixedCompilationDatabase. 168 Twine Directory = "."); 172 FixedCompilationDatabase(Twine Directory, ArrayRef<std::string> CommandLine);
|
/external/llvm/lib/Transforms/Instrumentation/ |
H A D | DebugIR.h | 34 std::string Directory; member in class:llvm::DebugIR 49 /// Directory are empty, a temporary path will be generated. 51 llvm::StringRef Directory, llvm::StringRef Filename) 54 HideDebugMetadata(HideDebugMetadata), Directory(Directory), 69 /// Returns the concatenated Directory + Filename, without error checking 88 /// Returns true if either Directory or Filename is missing, false otherwise. 50 DebugIR(bool HideDebugIntrinsics, bool HideDebugMetadata, llvm::StringRef Directory, llvm::StringRef Filename) argument
|
H A D | DebugIR.cpp | 138 /// - changes Filename/Directory to values provided on construction 154 /// Directory of debug metadata 159 StringRef Directory; member in class:__anon21615::DIUpdater 171 StringRef Directory = StringRef(), const Module *DisplayM = 0, 174 Finder(), Filename(Filename), Directory(Directory), FileNode(0), 293 Builder.createCompileUnit(dwarf::DW_LANG_C99, Filename, Directory, 300 FileNode = Builder.createFile(Filename, Directory); 454 /// Sets Filename/Directory from the Module identifier and returns true, or 456 bool getSourceInfoFromModule(const Module &M, std::string &Directory, argument 471 getSourceInfoFromDI(const Module &M, std::string &Directory, std::string &Filename) argument 610 createDebugIRPass(bool HideDebugIntrinsics, bool HideDebugMetadata, StringRef Directory, StringRef Filename) argument [all...] |
/external/chromium/chrome/browser/sync/syncable/ |
H A D | directory_manager.cc | 49 DCHECK_EQ(managed_directory_, static_cast<Directory*>(NULL)) 81 scoped_ptr<Directory> dir(new Directory); 139 Directory* ScopedDirLookup::operator -> () const { 145 ScopedDirLookup::operator Directory* () const {
|
H A D | syncable.cc | 271 // Directory 273 void Directory::init_kernel(const std::string& name) { 278 Directory::PersistedKernelInfo::PersistedKernelInfo() 288 Directory::PersistedKernelInfo::~PersistedKernelInfo() {} 290 void Directory::PersistedKernelInfo::reset_download_progress( 298 Directory::SaveChangesSnapshot::SaveChangesSnapshot() 302 Directory::SaveChangesSnapshot::~SaveChangesSnapshot() {} 304 Directory::Kernel::Kernel(const FilePath& db_path, 310 metahandles_index(new Directory::MetahandlesIndex), 311 ids_index(new Directory 349 Directory::Directory() : kernel_(NULL), store_(NULL) { function in class:syncable::Directory [all...] |
H A D | syncable.h | 182 class Directory; 348 friend class Directory; 421 Directory* dir() const; 462 friend class Directory; 531 // floating around if at all possible. Could we store this in Directory? 555 // The syncable Directory maintains several indices on the Entries it tracks. 636 // The name Directory in this case means the entire directory 640 // via its own handle. So, a Directory object should only be accessed 663 class Directory { class in namespace:syncable 684 // Various data that the Directory [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
H A D | FileSystemModel.js | 165 * @param {WebInspector.FileSystemModel.Directory} directory 203 * @param {WebInspector.FileSystemModel.Directory} parentDirectory 213 entries.push(new WebInspector.FileSystemModel.Directory(this, parentDirectory.fileSystem, backendEntries[i])); 370 this.root = new WebInspector.FileSystemModel.Directory(fileSystemModel, this, backendRootEntry); 476 WebInspector.FileSystemModel.Directory = function(fileSystemModel, fileSystem, backendEntry) 481 WebInspector.FileSystemModel.Directory.prototype = { 483 * @param {function(number, Array.<WebInspector.FileSystemModel.Directory>)} callback
|
/external/clang/lib/Tooling/ |
H A D | CompilationDatabase.cpp | 49 findCompilationDatabaseFromDirectory(StringRef Directory, argument 53 while (!Directory.empty()) { 57 CompilationDatabase::loadFromDirectory(Directory, LoadErrorMessage)) 61 ErrorStream << "No compilation database found in " << Directory.str() 66 Directory = llvm::sys::path::parent_path(Directory); 76 StringRef Directory = llvm::sys::path::parent_path(AbsolutePath); local 78 CompilationDatabase *DB = findCompilationDatabaseFromDirectory(Directory, 106 Twine Directory) { 112 return new FixedCompilationDatabase(Directory, CommandLin 104 loadFromCommandLine(int &Argc, const char **Argv, Twine Directory) argument 116 FixedCompilationDatabase(Twine Directory, ArrayRef<std::string> CommandLine) argument [all...] |
H A D | JSONCompilationDatabase.cpp | 122 StringRef Directory, std::string &ErrorMessage) { 123 SmallString<1024> JSONDatabasePath(Directory); 255 llvm::yaml::ScalarNode *Directory = NULL; local 280 Directory = ValueString; 299 if (!Directory) { 309 Directory->getValue(DirectoryStorage)); 316 CompileCommandRef(Directory, Command)); 121 loadFromDirectory( StringRef Directory, std::string &ErrorMessage) argument
|
/external/chromium_org/sync/syncable/ |
H A D | directory.h | 48 class SYNC_EXPORT Directory { class in namespace:syncer::syncable 91 // Various data that the Directory::Kernel we are backing (persisting data 122 // What the Directory needs on initialization to create itself and its Kernel. 132 // When the Directory is told to SaveChanges, a SaveChangesSnapshot is 150 Directory( 157 virtual ~Directory(); 224 // Note: Any function in |Directory| that can be called without holding a 225 // transaction need to check if the Directory already has an unrecoverable 293 // SaveChanges works by taking a consistent snapshot of the current Directory 457 // A structure containing the Directory stat [all...] |
H A D | directory.cc | 34 const base::FilePath::CharType Directory::kSyncDatabaseFilename[] = 37 Directory::PersistedKernelInfo::PersistedKernelInfo() 47 Directory::PersistedKernelInfo::~PersistedKernelInfo() {} 49 void Directory::PersistedKernelInfo::reset_download_progress( 57 Directory::SaveChangesSnapshot::SaveChangesSnapshot() 61 Directory::SaveChangesSnapshot::~SaveChangesSnapshot() { 66 Directory::Kernel::Kernel( 72 info_status(Directory::KERNEL_SHARE_INFO_VALID), 82 Directory::Kernel::~Kernel() { 87 Directory function in class:syncer::syncable::Directory [all...] |
/external/llvm/lib/MC/ |
H A D | MCPureStreamer.cpp | 96 virtual bool EmitDwarfFileDirective(unsigned FileNo, StringRef Directory, argument
|
H A D | MCContext.cpp | 313 unsigned MCContext::GetDwarfFile(StringRef Directory, StringRef FileName, argument 334 if (Directory.empty()) { 338 Directory = sys::path::parent_path(FileName); 339 if (!Directory.empty()) 344 // Find or make a entry in the MCDwarfDirs vector for this Directory. 347 if (Directory.empty()) { 353 if (Directory == MCDwarfDirs[DirIndex]) 357 char *Buf = static_cast<char *>(Allocate(Directory.size())); 358 memcpy(Buf, Directory.data(), Directory [all...] |
H A D | MCNullStreamer.cpp | 91 virtual bool EmitDwarfFileDirective(unsigned FileNo, StringRef Directory, argument
|
H A D | MCStreamer.cpp | 156 StringRef Directory, 158 return getContext().GetDwarfFile(Directory, Filename, FileNo, CUID) == 0; 155 EmitDwarfFileDirective(unsigned FileNo, StringRef Directory, StringRef Filename, unsigned CUID) argument
|
H A D | MCAsmStreamer.cpp | 210 virtual bool EmitDwarfFileDirective(unsigned FileNo, StringRef Directory, 820 bool MCAsmStreamer::EmitDwarfFileDirective(unsigned FileNo, StringRef Directory, argument 822 if (!UseDwarfDirectory && !Directory.empty()) { 826 SmallString<128> FullPathName = Directory; 833 if (!Directory.empty()) { 834 PrintQuotedString(Directory, OS); 842 return this->MCStreamer::EmitDwarfFileDirective(FileNo, Directory, Filename,
|
/external/clang/include/clang/Lex/ |
H A D | HeaderSearch.h | 150 const DirectoryEntry *Directory; member in struct:clang::HeaderSearch::FrameworkCacheEntry 258 "Directory indicies are unordered");
|
/external/clang/lib/StaticAnalyzer/Core/ |
H A D | HTMLDiagnostics.cpp | 39 std::string Directory; member in class:__anon15600::HTMLDiagnostics 73 : Directory(prefix), createdDir(false), noDir(false), PP(pp) { 104 llvm::sys::fs::create_directories(Directory, existed)) { 106 << Directory << "': " << ec.message() << '\n'; 248 llvm::sys::path::append(Model, Directory, "report-%%%%%%.html"); 252 llvm::errs() << "warning: could not create file in '" << Directory
|
/external/llvm/lib/IR/ |
H A D | DIBuilder.cpp | 78 StringRef Directory) { 82 MDString::get(VMContext, Directory), 90 StringRef Directory, 112 createFilePathPair(VMContext, Filename, Directory), 196 DIFile DIBuilder::createFile(StringRef Filename, StringRef Directory) { argument 199 createFilePathPair(VMContext, Filename, Directory) 743 NULL, // Filename/Directory, 766 NULL, // Filename/Directory, 77 createFilePathPair(LLVMContext &VMContext, StringRef Filename, StringRef Directory) argument 89 createCompileUnit(unsigned Lang, StringRef Filename, StringRef Directory, StringRef Producer, bool isOptimized, StringRef Flags, unsigned RunTimeVer, StringRef SplitName) argument
|
/external/clang/lib/Lex/ |
H A D | ModuleMap.cpp | 786 const DirectoryEntry *Directory; member in class:clang::ModuleMapParser 835 const DirectoryEntry *Directory, 839 Directory(Directory), BuiltinIncludeDir(BuiltinIncludeDir), 1267 inferFrameworkLink(ActiveModule, Directory, SourceMgr.getFileManager()); 1371 PathName = Directory->getName(); 1396 BuiltinIncludeDir && BuiltinIncludeDir != Directory && 1485 PathName = Directory->getName(); 1756 Map.InferredDirectories[Directory].InferModules = true; 1757 Map.InferredDirectories[Directory] 831 ModuleMapParser(Lexer &L, SourceManager &SourceMgr, const TargetInfo *Target, DiagnosticsEngine &Diags, ModuleMap &Map, const DirectoryEntry *Directory, const DirectoryEntry *BuiltinIncludeDir, bool IsSystem) argument [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
H A D | ant-jsch.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ... |
/external/llvm/lib/MC/MCParser/ |
H A D | AsmParser.cpp | 2553 StringRef Directory; local 2560 Directory = Path; 2576 if (getStreamer().EmitDwarfFileDirective(FileNumber, Directory, Filename))
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
H A D | org.apache.lucene_1.9.1.v20100518-1140.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |