HomeSort by relevance Sort by last modified time
    Searched refs:Directory (Results 1 - 25 of 113) 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 36 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;
33 * Unit tests for {@link ContactsProvider2}, directory functionality.
47 ContentUris.withAppendedId(Directory.CONTENT_URI, Directory.DEFAULT);
49 values.put(Directory.PACKAGE_NAME, "contactsTestPackage");
50 values.put(Directory.DIRECTORY_AUTHORITY, ContactsContract.AUTHORITY);
51 values.put(Directory.TYPE_RESOURCE_ID, R.string.default_directory);
52 values.put(Directory.EXPORT_SUPPORT, Directory.EXPORT_SUPPORT_NONE);
53 values.putNull(Directory.ACCOUNT_NAME)
    [all...]
  /frameworks/compile/mclinker/include/mcld/Support/
Directory.h 1 //===- Directory.h --------------------------------------------------------===//
30 /** \class Directory
31 * \brief A Directory object stores a Path object, a FileStatus object for
35 class Directory
38 friend void detail::open_dir(Directory& pDir);
39 friend void detail::close_dir(Directory& pDir);
48 Directory();
50 /// constructor - a directory whose path is pPath
51 explicit Directory(const Path& pPath,
57 Directory(const Directory& pCopy)
    [all...]
FileSystem.h 76 class Directory;
106 void open_dir(Directory& pDir);
107 void close_dir(Directory& pDir);
  /packages/apps/Contacts/src/com/android/contacts/list/
DirectoryListLoader.java 28 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,
66 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
31 Directory::Directory()
40 Directory::Directory(const Path& pPath,
55 Directory::Directory(const Directory& pCopy
    [all...]
Android.mk 5 Directory.cpp \
  /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();
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactDirectoryManager.java 40 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/include/clang/Tooling/
CompilationDatabase.h 19 // To create a CompilationDatabase from a build directory one can call
46 /// \brief Specifies the working directory and command of a compilation.
49 CompileCommand(Twine Directory, ArrayRef<std::string> CommandLine)
50 : Directory(Directory.str()), CommandLine(CommandLine) {}
52 /// \brief The working directory the command was executed from.
53 std::string Directory;
69 /// \brief Loads a compilation database from a build directory.
76 /// compilation database for the build directory.
79 /// are named 'compile_commands.json' in the given directory. Extend thi
    [all...]
  /external/clang/unittests/Tooling/
CompilationDatabaseTest.cpp 40 EXPECT_TRUE(NotFound.Directory.empty()) << ErrorMessage;
44 StringRef Directory("/some/directory");
50 ("[{\"directory\":\"" + Directory + "\"," +
54 EXPECT_EQ(Directory, FoundCommand.Directory) << ErrorMessage;
63 ("[{\"directory\":\"" + Directory + "\"," +
67 EXPECT_TRUE(NotFound.Directory.empty()) << ErrorMessage
    [all...]
  /external/llvm/lib/MC/
MCContext.cpp 253 /// directory tables. If the file number has already been allocated it is an
256 unsigned MCContext::GetDwarfFile(StringRef Directory, StringRef FileName,
275 if (Directory.empty()) {
276 // Separate the directory part from the basename of the FileName.
278 Directory = Slash.second;
279 if (!Directory.empty()) {
280 Directory = Slash.first;
285 // Find or make a entry in the MCDwarfDirs vector for this Directory.
286 // Capture directory name.
288 if (Directory.empty())
    [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

Completed in 370 milliseconds

1 2 3 4 5