/device/linaro/bootloader/edk2/OvmfPkg/XenBusDxe/ |
XenBus.c | 262 CONST CHAR8 **Directory;
269 &Count, &Directory);
274 XenBusAddDevice (Dev, Type, Directory[Index]);
277 FreePool ((VOID*)Directory);
|
/device/linaro/bootloader/edk2/UefiCpuPkg/ResetVector/Vtf0/X64/ |
PageTables.asm | 52 ; Top level Page Directory Pointers (1 * 512GB entry)
58 ; Next level Page Directory Pointers (4 * 1GB entries => 4GB)
|
/packages/apps/Contacts/src/com/android/contacts/list/ |
DirectoryPartition.java | 18 import android.provider.ContactsContract.Directory; 23 * Model object for a {@link Directory} row. 50 * Directory ID, see {@link Directory}. 61 * Directory type resolved from {@link Directory#PACKAGE_NAME} and 62 * {@link Directory#TYPE_RESOURCE_ID}; 73 * See {@link Directory#DISPLAY_NAME}. 96 * Returns true if this directory should be loaded before non-priority directories. 107 * Returns true if this directory supports photos [all...] |
ContactEntryListAdapter.java | 27 import android.provider.ContactsContract.Directory; 56 * Indicates whether the {@link Directory#LOCAL_INVISIBLE} directory should 149 partition.setDirectoryId(Directory.DEFAULT); 158 * Remove all directories after the default directory. This is typically used when contacts 159 * list screens are asked to exit the search mode and thus need to remove all remote directory 162 * This code assumes that the default directory and directories before that should not be 163 * deleted (e.g. Join screen has "suggested contacts" directory before the default director, 164 * and we should not remove the directory). 171 && ((DirectoryPartition) partition).getDirectoryId() == Directory.DEFAULT) [all...] |
DefaultContactListAdapter.java | 29 import android.provider.ContactsContract.Directory; 93 // Regardless of the directory, we don't want anything returned, 94 // so let's just send a "nothing" query to the local directory. 155 if (directoryId != Directory.DEFAULT && directoryId != Directory.LOCAL_INVISIBLE) { 177 if (directoryId == Directory.DEFAULT && isSectionHeaderDisplayEnabled()) { 201 if (directoryId != Directory.DEFAULT) { 210 // We have already added directory=0 to the URI, which takes care of this
|
ContactListAdapter.java | 24 import android.provider.ContactsContract.Directory; 174 if (uri != null && directoryId != Directory.DEFAULT) { 200 * contact to be shown as selected, we need both the directory and and the 215 return directoryId != Directory.DEFAULT && directoryId != Directory.LOCAL_INVISIBLE 324 if (mSelectedContactId != 0 && (mSelectedContactDirectoryId == Directory.DEFAULT 325 || mSelectedContactDirectoryId == Directory.LOCAL_INVISIBLE)) {
|
/packages/apps/Contacts/src/com/android/contacts/model/ |
ContactLoader.java | 35 import android.provider.ContactsContract.Directory; 283 Directory.DISPLAY_NAME, 284 Directory.PACKAGE_NAME, 285 Directory.TYPE_RESOURCE_ID, 286 Directory.ACCOUNT_TYPE, 287 Directory.ACCOUNT_NAME, 288 Directory.EXPORT_SUPPORT, 401 final String directoryName = uri.getQueryParameter(Directory.DISPLAY_NAME); 405 json.optInt(Directory.EXPORT_SUPPORT, 406 Directory.EXPORT_SUPPORT_SAME_ACCOUNT_ONLY)) [all...] |
/packages/apps/Dialer/java/com/android/contacts/common/list/ |
DirectoryPartition.java | 18 import android.provider.ContactsContract.Directory; 21 /** Model object for a {@link Directory} row. */ 46 /** Directory ID, see {@link Directory}. */ 56 * Directory type resolved from {@link Directory#PACKAGE_NAME} and {@link 57 * Directory#TYPE_RESOURCE_ID}; 67 /** See {@link Directory#DISPLAY_NAME}. */ 88 /** Returns true if this directory should be loaded before non-priority directories. */ 97 /** Returns true if this directory supports photos. * [all...] |
ContactEntryListAdapter.java | 27 import android.provider.ContactsContract.Directory; 54 * Indicates whether the {@link Directory#LOCAL_INVISIBLE} directory should be included in the 153 partition.setDirectoryId(Directory.DEFAULT); 162 * Remove all directories after the default directory. This is typically used when contacts list 163 * screens are asked to exit the search mode and thus need to remove all remote directory results 166 * <p>This code assumes that the default directory and directories before that should not be 167 * deleted (e.g. Join screen has "suggested contacts" directory before the default director, and 168 * we should not remove the directory). 175 && ((DirectoryPartition) partition).getDirectoryId() == Directory.DEFAULT) [all...] |
/packages/apps/Dialer/java/com/android/contacts/common/model/ |
ContactLoader.java | 35 import android.provider.ContactsContract.Directory; 155 final String directoryName = uri.getQueryParameter(Directory.DISPLAY_NAME); 163 json.optInt(Directory.EXPORT_SUPPORT, Directory.EXPORT_SUPPORT_SAME_ACCOUNT_ONLY)); 170 json.optInt(Directory.EXPORT_SUPPORT, Directory.EXPORT_SUPPORT_ANY_ACCOUNT)); 419 directoryParameter == null ? Directory.DEFAULT : Long.parseLong(directoryParameter); 439 if (directoryId == Directory.DEFAULT || directoryId == Directory.LOCAL_INVISIBLE) { 555 ContentUris.withAppendedId(Directory.CONTENT_URI, directoryId) [all...] |
/packages/apps/Messaging/src/com/android/messaging/util/ |
ContactUtil.java | 29 import android.provider.ContactsContract.Directory; 235 ContactsContract.DIRECTORY_PARAM_KEY, String.valueOf(Directory.DEFAULT)) 297 return filterPhonesInternal(context, Phone.CONTENT_FILTER_URI, query, Directory.DEFAULT); 306 Directory.ENTERPRISE_DEFAULT); 361 return filterEmailsInternal(context, Email.CONTENT_FILTER_URI, query, Directory.DEFAULT); 370 Directory.ENTERPRISE_DEFAULT); 400 ContactsContract.DIRECTORY_PARAM_KEY, String.valueOf(Directory.DEFAULT))
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
ContactsDatabaseHelperUpgradeTest.java | 30 import android.provider.ContactsContract.Directory; 506 new TableColumn(Directory._ID, INTEGER, false, null), 507 new TableColumn(Directory.PACKAGE_NAME, TEXT, true, null), 508 new TableColumn(Directory.DIRECTORY_AUTHORITY, TEXT, true, null), 509 new TableColumn(Directory.TYPE_RESOURCE_ID, INTEGER, false, null), 511 new TableColumn(Directory.ACCOUNT_TYPE, TEXT, false, null), 512 new TableColumn(Directory.ACCOUNT_NAME, TEXT, false, null), 513 new TableColumn(Directory.DISPLAY_NAME, TEXT, false, null), 514 new TableColumn(Directory.EXPORT_SUPPORT, INTEGER, true, 515 String.valueOf(Directory.EXPORT_SUPPORT_NONE)) [all...] |
/external/python/cpython2/Lib/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...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/enterprise/ |
EnterprisePolicyGuard.java | 25 import android.provider.ContactsContract.Directory; 77 final String directory = uri.getQueryParameter(ContactsContract.DIRECTORY_PARAM_KEY); local 86 // If it is a remote directory, it is allowed only when 87 // (i) The uri supports directory 89 if (directory != null) { 90 final long directoryId = Long.parseLong(directory); 91 if (Directory.isRemoteDirectoryId(directoryId) 116 * Check if uri is a cross profile query with directory param supported.
|
/prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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...] |
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/ |
debug1.d | 31 The Directory Table \(offset 0x.*\):
|
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/ia64/ |
pr13167.d | 29 The Directory Table is empty\.
|
/device/linaro/bootloader/edk2/OvmfPkg/ResetVector/Ia32/ |
PageTables64.asm | 64 ; Top level Page Directory Pointers (1 * 512GB entry)
69 ; Next level Page Directory Pointers (4 * 1GB entries => 4GB)
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/ |
Stats.cs | 117 System.IO.Directory.CreateDirectory(System.IO.Path.GetDirectoryName(absoluteFilename));
|
/packages/apps/Dialer/java/com/android/dialer/searchfragment/nearbyplaces/ |
NearbyPlacesCursorLoader.java | 39 * order to find a directory ID for the nearby places cursor that doesn't collide with 50 LogUtil.i("NearbyPlacesCursorLoader.loadInBackground", "directory id not set."); 70 // The Directory.LOCAL_INVISIBLE might not be a directory we use, but we can't reuse it's 72 long maxId = ContactsContract.Directory.LOCAL_INVISIBLE; 79 // Add one so that the nearby places ID doesn't collide with extended directory IDs.
|
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/ |
MCDwarf.h | 47 // \brief The base name of the file without its directory path. 51 // \brief The index into the list of directory names for this file name. 209 unsigned getFile(StringRef &Directory, StringRef &FileName, 226 unsigned getFile(StringRef Directory, StringRef FileName) { 227 return Header.getFile(Directory, FileName); 244 unsigned getFile(StringRef &Directory, StringRef &FileName,
|
/prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/MC/ |
MCDwarf.h | 47 // \brief The base name of the file without its directory path. 51 // \brief The index into the list of directory names for this file name. 209 unsigned getFile(StringRef &Directory, StringRef &FileName, 226 unsigned getFile(StringRef Directory, StringRef FileName) { 227 return Header.getFile(Directory, FileName); 244 unsigned getFile(StringRef &Directory, StringRef &FileName,
|