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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-pe/
tlssec32.d 2 Entry 9 0000.000 000000.. Thread Storage Directory \[\.tls\]
tlssec64.d 2 Entry 9 0000000000003000 00000028 Thread Storage Directory \[\.tls\]
exports.d 2 The Data Directory
3 Entry 0 00000000 00000000 Export Directory \[\.edata \(or where ever we found it\)\]
exports64.d 2 The Data Directory
3 Entry 0 0000000000000000 00000000 Export Directory \[\.edata \(or where ever we found it\)\]
  /frameworks/compile/mclinker/lib/MC/
MCLDDirectory.cpp 17 MCLDDirectory::MCLDDirectory() : Directory(), m_Name(), m_bInSysroot(false) {
20 MCLDDirectory::MCLDDirectory(const char* pName) : Directory(), m_Name(pName) {
21 Directory::m_Path.assign(pName);
23 if (!Directory::m_Path.empty())
24 m_bInSysroot = (Directory::m_Path.native()[0] == '=');
26 Directory::m_Path.m_append_separator_if_needed();
28 Directory::m_Path.native().erase(Directory::m_Path.native().begin());
34 : Directory(), m_Name(pName) {
35 Directory::m_Path.assign(pName)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/compat/
DirectorySdkCompat.java 20 import android.provider.ContactsContract.Directory;
26 public static final Uri ENTERPRISE_CONTENT_URI = Directory.ENTERPRISE_CONTENT_URI;
27 public static final long ENTERPRISE_LOCAL_DEFAULT = Directory.ENTERPRISE_DEFAULT;
28 public static final long ENTERPRISE_LOCAL_INVISIBLE = Directory.ENTERPRISE_LOCAL_INVISIBLE;
31 return CompatUtils.isNCompatible() ? Directory.isRemoteDirectoryId(directoryId) : false;
35 return CompatUtils.isNCompatible() ? Directory.isEnterpriseDirectoryId(directoryId) : false;
DirectoryCompat.java 20 import android.provider.ContactsContract.Directory;
30 return Directory.CONTENT_URI;
35 return (directoryId == Directory.LOCAL_INVISIBLE
38 return directoryId == Directory.LOCAL_INVISIBLE;
45 return !(directoryId == Directory.DEFAULT || directoryId == Directory.LOCAL_INVISIBLE);
  /packages/apps/Dialer/java/com/android/dialer/common/cp2/
DirectoryCompat.java 22 import android.provider.ContactsContract.Directory;
24 /** Compatibility utility for {@link Directory}. */
29 return Directory.ENTERPRISE_CONTENT_URI;
31 return Directory.CONTENT_URI;
36 return (directoryId == Directory.LOCAL_INVISIBLE
37 || directoryId == Directory.ENTERPRISE_LOCAL_INVISIBLE);
39 return directoryId == Directory.LOCAL_INVISIBLE;
44 return Directory.isRemoteDirectoryId(directoryId);
46 return directoryId != Directory.DEFAULT && directoryId != Directory.LOCAL_INVISIBLE
    [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);
45 Directory();
47 /// constructor - a directory whose path is pPath
48 explicit Directory(const Path& pPath,
52 explicit Directory(const char* pPath
    [all...]
  /frameworks/compile/mclinker/lib/Support/
Directory.cpp 1 //===- Directory.cpp ------------------------------------------------------===//
9 #include "mcld/Support/Directory.h"
32 // Directory
34 Directory::Directory()
43 Directory::Directory(const Path& pPath, FileStatus st, FileStatus symlink_st)
56 Directory::Directory(const char* pPath, FileStatus st, FileStatus symlink_st)
57 : Directory(sys::fs::Path(pPath), st, symlink_st)
    [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/swiftshader/third_party/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 |";
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DirectoryTest.java 30 import android.provider.ContactsContract.Directory;
37 * Unit tests for {@link ContactsProvider2}, directory functionality.
55 ContentUris.withAppendedId(Directory.CONTENT_URI, Directory.DEFAULT);
57 values.put(Directory.PACKAGE_NAME, getContext().getPackageName());
58 values.put(Directory.DIRECTORY_AUTHORITY, ContactsContract.AUTHORITY);
59 values.put(Directory.TYPE_RESOURCE_ID, R.string.default_directory);
60 values.put(Directory.EXPORT_SUPPORT, Directory.EXPORT_SUPPORT_NONE);
61 values.putNull(Directory.ACCOUNT_NAME)
    [all...]
ContactDirectoryManagerTest.java 35 import android.provider.ContactsContract.Directory;
75 new String[] { Directory.ACCOUNT_NAME, Directory.ACCOUNT_TYPE,
76 Directory.DISPLAY_NAME, Directory.TYPE_RESOURCE_ID,
77 Directory.EXPORT_SUPPORT, Directory.SHORTCUT_SUPPORT,
78 Directory.PHOTO_SUPPORT });
128 // directory table, and if it's wrong, the tests would get confused.
170 Directory.EXPORT_SUPPORT_NONE, Directory.SHORTCUT_SUPPORT_NONE
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/searchfragment/directories/
DirectoriesCursorLoader.java 37 * <p>Information about a directory includes its ID, display name, etc, but doesn't include the
43 ContactsContract.Directory._ID,
44 ContactsContract.Directory.DISPLAY_NAME,
45 ContactsContract.Directory.PHOTO_SUPPORT,
54 super(context, getContentUri(), PROJECTION, null, null, ContactsContract.Directory._ID);
73 public static List<Directory> toDirectories(Cursor cursor) {
79 List<Directory> directories = new ArrayList<>();
83 Directory.create(
93 ? ContactsContract.Directory.ENTERPRISE_CONTENT_URI
94 : ContactsContract.Directory.CONTENT_URI
    [all...]
  /frameworks/compile/mclinker/unittests/
DirIteratorTest.h 17 class Directory;
45 mcld::sys::fs::Directory* m_pDir;
DirIteratorTest.cpp 9 #include "mcld/Support/Directory.h"
25 m_pDir = new mcld::sys::fs::Directory(".");
47 Directory::iterator entry = m_pDir->begin();
48 Directory::iterator enEnd = m_pDir->end();
  /packages/services/Car/procfs-inspector/server/
directory.cpp 17 #include "directory.h"
21 procfsinspector::Directory::Directory(const char* path) {
28 bool procfsinspector::Directory::Entry::isEmpty() const {
32 procfsinspector::Directory::Entry::Entry(std::string parent, std::string child) :
41 std::string procfsinspector::Directory::Entry::str() {
45 uid_t procfsinspector::Directory::Entry::getOwnerUserId() {
57 procfsinspector::Directory::Entry procfsinspector::Directory::next(unsigned char type) {
61 // only return entries of the right type (regular file, directory, ...
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
DirectoryListLoader.java 26 import android.provider.ContactsContract.Directory;
34 * A specialized loader for the list of directories, see {@link Directory}.
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,
64 return Directory.CONTENT_URI;
75 Directory._ID
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactDirectoryManager.java 35 import android.provider.ContactsContract.Directory;
52 * Manages the contents of the {@link Directory} table.
69 int exportSupport = Directory.EXPORT_SUPPORT_NONE;
70 int shortcutSupport = Directory.SHORTCUT_SUPPORT_NONE;
71 int photoSupport = Directory.PHOTO_SUPPORT_NONE;
85 Directory.ACCOUNT_NAME,
86 Directory.ACCOUNT_TYPE,
87 Directory.DISPLAY_NAME,
88 Directory.TYPE_RESOURCE_ID,
89 Directory.EXPORT_SUPPORT
    [all...]
  /packages/apps/Dialer/java/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}. */
43 Directory._ID, DIRECTORY_TYPE, Directory.DISPLAY_NAME, Directory.PHOTO_SUPPORT,
65 * A flag that indicates whether the {@link Directory#LOCAL_INVISIBLE} directory should be
105 selection = Directory.SHORTCUT_SUPPORT + "=" + Directory.SHORTCUT_SUPPORT_FULL;
110 Directory.SHORTCUT_SUPPOR
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
ContactsContract_DirectoryTest.java 27 import android.provider.ContactsContract.Directory;
54 // The directory table is populated asynchronously. Wait for it...
70 * Wait until the directory row is populated in the directory table, and return its ID.
76 try (Cursor c = getContext().getContentResolver().query(Directory.CONTENT_URI,
77 null, Directory.ACCOUNT_NAME + "=? and " + Directory.ACCOUNT_TYPE + "=?",
85 assertEquals(getContext().getPackageName(), getString(c, Directory.PACKAGE_NAME));
87 getString(c, Directory.DIRECTORY_AUTHORITY));
88 assertEquals(DummyGalProvider.DISPLAY_NAME, getString(c, Directory.DISPLAY_NAME))
    [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, Twine Filename,
47 : Directory(Directory.str()),
51 /// \brief The working directory the command was executed from.
52 std::string Directory;
81 /// \brief Loads a compilation database from a build directory.
88 /// compilation database for the build directory.
91 /// are named 'compile_commands.json' in the given directory. Extend thi
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/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, Twine Filename,
47 : Directory(Directory.str()),
52 /// \brief The working directory the command was executed from.
53 std::string Directory;
85 /// \brief Loads a compilation database from a build directory.
92 /// compilation database for the build directory.
95 /// are named 'compile_commands.json' in the given directory. Extend thi
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/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, Twine Filename,
47 : Directory(Directory.str()),
52 /// \brief The working directory the command was executed from.
53 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...]

Completed in 1444 milliseconds

1 2 3 4 5 6 7 8 91011>>