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

1 2

  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
Directory.java 19 public class Directory {
TitlesFragment.java 93 Directory.initializeDirectory();
94 for (int i = 0; i < Directory.getCategoryCount(); i++) {
95 bar.addTab(bar.newTab().setText(Directory.getCategory(i).getName())
148 DirectoryCategory cat = Directory.getCategory(category);
  /frameworks/compile/mclinker/lib/Support/
Directory.cpp 1 //===- Directory.cpp ------------------------------------------------------===//
9 #include <mcld/Support/Directory.h>
33 // Directory
35 Directory::Directory()
44 Directory::Directory(const Path& pPath,
59 Directory::Directory(const Directory& pCopy
    [all...]
  /external/clang/include/clang/Tooling/
CompilationDatabase.h 19 // To create a CompilationDatabase from a build directory one can call
42 /// \brief Specifies the working directory and command of a compilation.
45 CompileCommand(Twine Directory, std::vector<std::string> CommandLine)
46 : Directory(Directory.str()), CommandLine(std::move(CommandLine)) {}
48 /// \brief The working directory the command was executed from.
49 std::string Directory;
75 /// \brief Loads a compilation database from a build directory.
82 /// compilation database for the build directory.
85 /// are named 'compile_commands.json' in the given directory. Extend thi
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
DebugIR.h 33 std::string Directory;
48 /// Directory are empty, a temporary path will be generated.
50 llvm::StringRef Directory, llvm::StringRef Filename)
53 HideDebugMetadata(HideDebugMetadata), Directory(Directory),
68 /// Returns the concatenated Directory + Filename, without error checking
87 /// Returns true if either Directory or Filename is missing, false otherwise.
DebugIR.cpp 138 /// - changes Filename/Directory to values provided on construction
154 /// Directory of debug metadata
157 /// Source filename and directory
159 StringRef Directory;
171 StringRef Directory = StringRef(), const Module *DisplayM = nullptr,
174 Finder(), Filename(Filename), Directory(Directory), FileNode(nullptr),
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, o
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
tkFileDialog.py 8 # available in Tk 4.2 and newer, and the directory dialogue available
23 # - initialdir: initial directory. preserved by dialog instance.
34 # options for the directory chooser:
38 # - mustexist: if true, user must pick an existing directory
56 # keep directory and filename until next time
100 # the directory dialog has its own _fix routines.
101 class Directory(Dialog):
102 "Ask for a directory"
114 # keep directory until next time
116 self.directory = result # compatibilit
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
tkFileDialog.py 8 # available in Tk 4.2 and newer, and the directory dialogue available
23 # - initialdir: initial directory. preserved by dialog instance.
34 # options for the directory chooser:
38 # - mustexist: if true, user must pick an existing directory
56 # keep directory and filename until next time
100 # the directory dialog has its own _fix routines.
101 class Directory(Dialog):
102 "Ask for a directory"
114 # keep directory until next time
116 self.directory = result # compatibilit
    [all...]
  /frameworks/compile/mclinker/include/mcld/Support/
Directory.h 1 //===- Directory.h --------------------------------------------------------===//
26 /** \class Directory
27 * \brief A Directory object stores a Path object, a FileStatus object for
31 class Directory
34 friend void detail::open_dir(Directory& pDir);
35 friend void detail::close_dir(Directory& pDir);
44 Directory();
46 /// constructor - a directory whose path is pPath
47 explicit Directory(const Path& pPath,
53 Directory(const Directory& pCopy)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
FileSystemModel.js 166 * @param {!WebInspector.FileSystemModel.Directory} directory
169 requestDirectoryContent: function(directory, callback)
171 this._requestDirectoryContent(directory.url, this._directoryContentReceived.bind(this, directory, callback));
204 * @param {!WebInspector.FileSystemModel.Directory} parentDirectory
219 entries.push(new WebInspector.FileSystemModel.Directory(this, parentDirectory.fileSystem, backendEntries[i]));
376 this.root = new WebInspector.FileSystemModel.Directory(fileSystemModel, this, backendRootEntry);
482 WebInspector.FileSystemModel.Directory = function(fileSystemModel, fileSystem, backendEntry)
487 WebInspector.FileSystemModel.Directory.prototype =
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
bdist_msi.py 21 from msilib import Directory, Feature, Dialog, add_data
89 "temporary directory for creating the distribution"),
105 "directory to put final built distributions in"),
214 # into a directory not in sys.path
276 root = Directory(db, cab, None, rootdir, "TARGETDIR", "SourceDir")
278 0, 1, directory="TARGETDIR")
291 f = Feature(db, name, title, desc, 1, level, directory=target)
292 dir = Directory(db, cab, root, rootdir, target, default)
306 newdir = Directory(db, cab, dir, file, default, short)
578 # Feature (Python directory) selectio
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
bdist_msi.py 21 from msilib import Directory, Feature, Dialog, add_data
89 "temporary directory for creating the distribution"),
105 "directory to put final built distributions in"),
214 # into a directory not in sys.path
276 root = Directory(db, cab, None, rootdir, "TARGETDIR", "SourceDir")
278 0, 1, directory="TARGETDIR")
291 f = Feature(db, name, title, desc, 1, level, directory=target)
292 dir = Directory(db, cab, root, rootdir, target, default)
306 newdir = Directory(db, cab, dir, file, default, short)
578 # Feature (Python directory) selectio
    [all...]
  /external/clang/lib/Tooling/
CompilationDatabase.cpp 59 findCompilationDatabaseFromDirectory(StringRef Directory,
63 while (!Directory.empty()) {
67 CompilationDatabase::loadFromDirectory(Directory, LoadErrorMessage))
71 ErrorStream << "No compilation database found in " << Directory.str()
72 << " or any parent directory\n" << LoadErrorMessage;
76 Directory = llvm::sys::path::parent_path(Directory);
86 StringRef Directory = llvm::sys::path::parent_path(AbsolutePath);
88 CompilationDatabase *DB = findCompilationDatabaseFromDirectory(Directory,
106 ErrorMessage = ("Could not auto-detect compilation database from directory \""
    [all...]
JSONCompilationDatabase.cpp 121 CompilationDatabase *loadFromDirectory(StringRef Directory,
123 SmallString<1024> JSONDatabasePath(Directory);
254 llvm::yaml::ScalarNode *Directory = nullptr;
278 if (KeyString->getValue(KeyStorage) == "directory") {
279 Directory = ValueString;
298 if (!Directory) {
299 ErrorMessage = "Missing key: \"directory\".";
308 Directory->getValue(DirectoryStorage));
315 CompileCommandRef(Directory, Command));
  /external/chromium_org/sync/syncable/
directory.cc 5 #include "sync/syncable/directory.h"
35 const base::FilePath::CharType Directory::kSyncDatabaseFilename[] =
38 Directory::PersistedKernelInfo::PersistedKernelInfo()
48 Directory::PersistedKernelInfo::~PersistedKernelInfo() {}
50 void Directory::PersistedKernelInfo::ResetDownloadProgress(
61 Directory::SaveChangesSnapshot::SaveChangesSnapshot()
65 Directory::SaveChangesSnapshot::~SaveChangesSnapshot() {
70 Directory::Kernel::Kernel(
76 info_status(Directory::KERNEL_SHARE_INFO_VALID),
86 Directory::Kernel::~Kernel()
    [all...]
directory.h 51 // Directory stores and manages EntryKernels.
54 class SYNC_EXPORT Directory {
101 // Various data that the Directory::Kernel we are backing (persisting data
134 // What the Directory needs on initialization to create itself and its Kernel.
144 // When the Directory is told to SaveChanges, a SaveChangesSnapshot is
162 Directory(
169 virtual ~Directory();
243 // Returns true if the directory had encountered an unrecoverable error.
244 // Note: Any function in |Directory| that can be called without holding a
245 // transaction need to check if the Directory already has an unrecoverabl
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp 41 std::string Directory;
77 : Directory(prefix), createdDir(false), noDir(false), PP(pp), AnalyzerOpts(AnalyzerOpts) {
103 // Create the HTML directory if it is missing.
106 if (std::error_code ec = llvm::sys::fs::create_directories(Directory)) {
107 llvm::errs() << "warning: could not create directory '"
108 << Directory << "': " << ec.message() << '\n';
174 // Get the full directory name of the analyzed file.
179 // working directory if we have no directory information. This is
282 llvm::sys::path::append(Model, Directory, "report-%%%%%%.html")
    [all...]
  /external/clang/include/clang/Lex/
HeaderSearch.h 152 /// The directory entry which should be used for the cached framework.
153 const DirectoryEntry *Directory;
157 /// directory).
167 /// directory of the \#including file first, then each directory in SearchDirs
169 /// directory in SearchDirs, starting at AngledDirIdx, consecutively. If
171 /// directory is suppressed.
215 /// name like "Carbon" to the Carbon.framework directory.
232 /// \brief Describes whether a given directory has a module map in it.
276 "Directory indicies are unordered")
    [all...]
  /external/clang/lib/Lex/
ModuleMap.cpp 177 assert(Dir && "file in no directory");
185 // Keep walking up the directory hierarchy, looking for a directory with
199 // Resolve the parent path to a directory entry.
364 // directory.
371 // the directory of the umbrella header and the directory where
376 // Find or create the module that corresponds to this directory name.
384 // Associate the module and the directory.
455 // Keep walking up the directory hierarchy, looking for a directory wit
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-jsch.jar 
  /frameworks/base/core/java/android/provider/
ContactsContract.java 132 * {@link Directory}. The parameter value should be the _ID of the corresponding
133 * directory, e.g.
134 * {@code content://com.android.contacts/data/emails/filter/acme?directory=3}
136 public static final String DIRECTORY_PARAM_KEY = "directory";
249 * A Directory represents a contacts corpus, e.g. Local contacts,
252 * A Directory is implemented as a content provider with its unique authority and
254 * every directory provider will implement this Contract in its entirety. If a
255 * directory provider does not have an implementation for a specific request, it
259 * The most important use case for Directories is search. A Directory provider is
261 * Contacts.CONTENT_FILTER_URI}. If a Directory provider wants to participat
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winternl.h 363 BOOLEAN Directory;
    [all...]
winbase.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ntddk.h     [all...]

Completed in 527 milliseconds

1 2