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

1 2 3 4 5

  /frameworks/compile/mclinker/lib/MC/
MCLDDirectory.cpp 18 : Directory(), m_Name(), m_bInSysroot(false) {
22 : Directory(), m_Name(pName) {
23 Directory::m_Path.assign(pName);
25 if (!Directory::m_Path.empty())
26 m_bInSysroot = ('=' == Directory::m_Path.native()[0]);
28 Directory::m_Path.m_append_separator_if_needed();
30 Directory::m_Path.native().erase(Directory::m_Path.native().begin());
36 : Directory(), m_Name(pName) {
37 Directory::m_Path.assign(pName)
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactDirectoryManagerTest.java 33 import android.provider.ContactsContract.Directory;
72 new String[] { Directory.ACCOUNT_NAME, Directory.ACCOUNT_TYPE,
73 Directory.DISPLAY_NAME, Directory.TYPE_RESOURCE_ID,
74 Directory.EXPORT_SUPPORT, Directory.SHORTCUT_SUPPORT,
75 Directory.PHOTO_SUPPORT });
157 Directory.EXPORT_SUPPORT_NONE, Directory.SHORTCUT_SUPPORT_NONE
    [all...]
DirectoryTest.java 28 import android.provider.ContactsContract.Directory;
35 * Unit tests for {@link ContactsProvider2}, directory functionality.
49 ContentUris.withAppendedId(Directory.CONTENT_URI, Directory.DEFAULT);
51 values.put(Directory.PACKAGE_NAME, "contactsTestPackage");
52 values.put(Directory.DIRECTORY_AUTHORITY, ContactsContract.AUTHORITY);
53 values.put(Directory.TYPE_RESOURCE_ID, R.string.default_directory);
54 values.put(Directory.EXPORT_SUPPORT, Directory.EXPORT_SUPPORT_NONE);
55 values.putNull(Directory.ACCOUNT_NAME)
    [all...]
  /frameworks/compile/mclinker/include/mcld/Support/
Directory.h 1 //===- Directory.h --------------------------------------------------------===//
29 /** \class Directory
30 * \brief A Directory object stores a Path object, a FileStatus object for
34 class Directory
37 friend void detail::open_dir(Directory& pDir);
38 friend void detail::close_dir(Directory& pDir);
47 Directory();
49 /// constructor - a directory whose path is pPath
50 explicit Directory(const Path& pPath,
56 Directory(const Directory& pCopy)
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
DirectoryListLoader.java 26 import android.provider.ContactsContract.Directory;
33 * A specialized loader for the list of directories, see {@link Directory}.
45 public static final Uri URI = Directory.CONTENT_URI;
46 public static final String ORDER_BY = Directory._ID;
49 Directory._ID,
50 Directory.PACKAGE_NAME,
51 Directory.TYPE_RESOURCE_ID,
52 Directory.DISPLAY_NAME,
53 Directory.PHOTO_SUPPORT,
67 Directory._ID
    [all...]
  /external/llvm/utils/
findsym.pl 12 my $Directory = $ARGV[0];
15 # Open the directory and read its contents, sorting by name and differentiating
17 opendir DIR,$Directory;
26 "nm $Directory/$lib | grep '$Symbol' | sort --key=3 | uniq |";
  /external/chromium/chrome/browser/sync/syncable/
syncable_mock.h 15 using syncable::Directory;
18 class MockDirectory : public Directory {
33 explicit MockSyncableWriteTransaction(Directory *directory);
syncable_mock.cc 14 Directory *directory)
15 : WriteTransaction(directory, syncable::UNITTEST, "dontcare.cpp", 25) {
directory_manager.h 5 // This used to do a lot of TLS-based management of multiple Directory objects.
6 // We now can access Directory objects from any thread for general purpose
7 // operations and we only ever have one Directory, so this class isn't doing
11 // Directory objects everywhere.
58 // Opens a directory. Returns false on error.
63 // Marks a directory as closed. It might take a while until all the
70 // Gets the list of currently open directory names.
100 Directory* managed_directory_;
120 Directory* operator -> () const;
121 operator Directory* () const
    [all...]
directory_backing_store.h 31 typedef Directory::MetahandlesIndex MetahandlesIndex;
33 // Provides sqlite3-based persistence for a syncable::Directory object. You can
34 // load all the persisted data to prime a syncable::Directory on startup by
35 // invoking Load. The only other thing you (or more correctly, a Directory)
50 // This way, any thread may open a Directory (which today can be either the
67 Directory::KernelLoadInfo* kernel_load_info);
74 virtual bool SaveChanges(const Directory::SaveChangesSnapshot& snapshot);
91 // General Directory initialization and load helpers.
117 bool LoadInfo(Directory::KernelLoadInfo* info);
133 Directory::KernelLoadInfo* kernel_load_info)
    [all...]
directory_manager.cc 49 DCHECK_EQ(managed_directory_, static_cast<Directory*>(NULL))
61 // Opens a directory. Returns false on error.
72 << "Can't open more than one directory.";
81 scoped_ptr<Directory> dir(new Directory);
90 // Marks a directory as closed. It might take a while until all the file
93 // Erase from mounted and opened directory lists.
139 Directory* ScopedDirLookup::operator -> () const {
145 ScopedDirLookup::operator Directory* () const {
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::IdsIndex)
    [all...]
  /frameworks/compile/mclinker/lib/Support/
Directory.cpp 1 //===- Directory.cpp ------------------------------------------------------===//
9 #include "mcld/Support/Directory.h"
30 // Directory
32 Directory::Directory()
41 Directory::Directory(const Path& pPath,
56 Directory::Directory(const Directory& pCopy
    [all...]
  /frameworks/compile/mclinker/unittests/
DirIteratorTest.h 17 class Directory;
46 mcld::sys::fs::Directory *m_pDir;
DirIteratorTest.cpp 9 #include "mcld/Support/Directory.h"
27 m_pDir = new mcld::sys::fs::Directory(".");
52 Directory::iterator entry = m_pDir->begin();
53 Directory::iterator enEnd = m_pDir->end();
  /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, ArrayRef<std::string> CommandLine)
46 : Directory(Directory.str()), CommandLine(CommandLine) {}
48 /// \brief The working directory the command was executed from.
49 std::string Directory;
65 /// \brief Loads a compilation database from a build directory.
72 /// compilation database for the build directory.
75 /// are named 'compile_commands.json' in the given directory. Extend thi
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactDirectoryManager.java 33 import android.provider.ContactsContract.Directory;
49 * Manages the contents of the {@link Directory} table.
66 int exportSupport = Directory.EXPORT_SUPPORT_NONE;
67 int shortcutSupport = Directory.SHORTCUT_SUPPORT_NONE;
68 int photoSupport = Directory.PHOTO_SUPPORT_NONE;
82 Directory.ACCOUNT_NAME,
83 Directory.ACCOUNT_TYPE,
84 Directory.DISPLAY_NAME,
85 Directory.TYPE_RESOURCE_ID,
86 Directory.EXPORT_SUPPORT
    [all...]
  /external/chromium/chrome/browser/sync/engine/
syncapi_mock.h 19 explicit MockWriteTransaction(Directory* directory)
21 this->SetTransaction(new MockSyncableWriteTransaction(directory));
syncer_proto_util.h 16 class Directory;
92 static void AddRequestBirthday(syncable::Directory* dir,
102 static bool VerifyResponseBirthday(syncable::Directory* dir,
  /external/clang/lib/Tooling/
CompilationDatabase.cpp 49 findCompilationDatabaseFromDirectory(StringRef Directory,
53 while (!Directory.empty()) {
57 CompilationDatabase::loadFromDirectory(Directory, LoadErrorMessage))
61 ErrorStream << "No compilation database found in " << Directory.str()
62 << " or any parent directory\n" << LoadErrorMessage;
66 Directory = llvm::sys::path::parent_path(Directory);
76 StringRef Directory = llvm::sys::path::parent_path(AbsolutePath);
78 CompilationDatabase *DB = findCompilationDatabaseFromDirectory(Directory,
96 ErrorMessage = ("Could not auto-detect compilation database from directory \""
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/Misc/
Stats.cs 37 using Directory = System.IO.Directory;
119 Directory.CreateDirectory( Path.GetDirectoryName( absoluteFilename ) );
  /frameworks/compile/mclinker/include/mcld/MC/
MCLDDirectory.h 14 #include "mcld/Support/Directory.h"
23 * \brief MCLDDirectory is an directory entry for library search.
26 class MCLDDirectory : public sys::fs::Directory
  /external/clang/unittests/Tooling/
CompilationDatabaseTest.cpp 38 expectFailure("[{\"directory\":\"\",\"command\":\"\"}]", "Missing file");
39 expectFailure("[{\"directory\":\"\",\"file\":\"\"}]", "Missing command");
40 expectFailure("[{\"command\":\"\",\"file\":\"\"}]", "Missing directory");
77 "[{\"directory\":\"//net/dir\","
80 " {\"directory\":\"//net/dir\","
99 ("[{\"directory\":\"" + Directory1 + "\"," +
102 " {\"directory\":\"" + Directory2 + "\"," +
107 EXPECT_EQ(Directory1, Commands[0].Directory) << ErrorMessage;
110 EXPECT_EQ(Directory2, Commands[1].Directory) << ErrorMessage;
210 EXPECT_TRUE(NotFound.Directory.empty()) << ErrorMessage
    [all...]
  /prebuilts/tools/common/proguard/proguard4.7/bin/
proguard.bat 8 REM "\"C:/My Directory/My File.txt\""
  /external/llvm/lib/MC/
MCContext.cpp 298 /// directory tables. If the file number has already been allocated it is an
301 unsigned MCContext::GetDwarfFile(StringRef Directory, StringRef FileName,
322 if (Directory.empty()) {
323 // Separate the directory part from the basename of the FileName.
326 Directory = sys::path::parent_path(FileName);
327 if (!Directory.empty())
332 // Find or make a entry in the MCDwarfDirs vector for this Directory.
333 // Capture directory name.
335 if (Directory.empty()) {
341 if (Directory == MCDwarfDirs[DirIndex]
    [all...]

Completed in 817 milliseconds

1 2 3 4 5