/cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/ |
ContactsTest.java | 40 import android.provider.ContactsContract.Directory; 79 // Directory display name 85 // Retry directory query so we can make sure directory info in cp2 is updated 432 // local directory 435 Directory.ENTERPRISE_DEFAULT); 438 // remote directory 440 if (directoryId != 0) { // if directoryId == 0, it means it can't access managed directory 451 // local directory 454 Directory.ENTERPRISE_DEFAULT) [all...] |
/external/proguard/bin/ |
proguard.bat | 8 REM "\"C:/My Directory/My File.txt\""
|
proguardgui.bat | 8 REM "\"C:/My Directory/My File.txt\""
|
retrace.bat | 8 REM "\"C:/My Directory/My File.txt\""
|
/packages/apps/Contacts/src/com/android/contacts/quickcontact/ |
DirectoryContactUtil.java | 27 import android.provider.ContactsContract.Directory; 33 * Utility class to support adding directory contacts. 41 // Not a directory contact? Nothing to fix here 45 return contactData.getDirectoryExportSupport() != Directory.EXPORT_SUPPORT_NONE;
|
/prebuilts/tools/common/proguard/proguard4.7/bin/ |
proguard.bat | 8 REM "\"C:/My Directory/My File.txt\""
|
proguardgui.bat | 8 REM "\"C:/My Directory/My File.txt\""
|
retrace.bat | 8 REM "\"C:/My Directory/My File.txt\""
|
/cts/hostsidetests/devicepolicy/app/ContactDirectoryProvider/src/com/android/cts/contactdirectoryprovider/ |
DirectoryProvider.java | 35 import android.provider.ContactsContract.Directory; 47 private static final String AUTHORITY = "com.android.cts.contact.directory.provider"; 50 private static final String DEFAULT_DISPLAY_NAME = "Directory"; 121 if (column.equals(Directory.ACCOUNT_NAME)) { 123 } else if (column.equals(Directory.ACCOUNT_TYPE)) { 125 } else if (column.equals(Directory.TYPE_RESOURCE_ID)) { 127 } else if (column.equals(Directory.DISPLAY_NAME)) { 129 } else if (column.equals(Directory.EXPORT_SUPPORT)) { 130 row[i] = Directory.EXPORT_SUPPORT_SAME_ACCOUNT_ONLY; 131 } else if (column.equals(Directory.SHORTCUT_SUPPORT)) [all...] |
/external/llvm/lib/Analysis/ |
ModuleDebugInfoPrinter.cpp | 58 static void printFile(raw_ostream &O, StringRef Filename, StringRef Directory, 64 if (!Directory.empty()) 65 O << Directory << "/";
|
/frameworks/base/core/java/android/provider/ |
ContactsInternal.java | 102 ? ContactsContract.Directory.ENTERPRISE_DIRECTORY_ID_BASE 115 if (!ContactsContract.Directory.isEnterpriseDirectoryId(directoryId)) { 116 throw new IllegalArgumentException("Invalid enterprise directory id: " + directoryId); 126 - ContactsContract.Directory.ENTERPRISE_DIRECTORY_ID_BASE);
|
/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);
|
/external/llvm/utils/ |
GenLibDeps.pl | 31 my $Directory = $ARGV[0]; 32 if (!defined($Directory) || ! -d "$Directory") { 33 die "First argument must specify the directory containing LLVM libs\n"; 67 # Open the directory and read its contents, sorting by name and differentiating 69 opendir DIR,$Directory; 87 `$ranlibPath $Directory/$lib`; 110 open DEFS, "$nmPath -sg $Directory/$lib|"; 151 open UDEFS, "$nmPath -Aup $Directory/$lib|"; 167 open DEFS, "$nmPath -g $Directory/$lib|" [all...] |
/frameworks/compile/mclinker/lib/Support/ |
Android.mk | 5 Directory.cpp \
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/ |
DefaultContactListAdapter.java | 28 import android.provider.ContactsContract.Directory; 95 // Regardless of the directory, we don't want anything returned, 96 // so let's just send a "nothing" query to the local directory. 136 if (directoryId != Directory.DEFAULT && directoryId != Directory.LOCAL_INVISIBLE) { 154 if (directoryId == Directory.DEFAULT && isSectionHeaderDisplayEnabled()) { 158 // The "All accounts" filter is the same as the entire contents of Directory.DEFAULT 164 ContactsContract.DIRECTORY_PARAM_KEY, String.valueOf(Directory.DEFAULT)); 180 if (directoryId != Directory.DEFAULT) { 189 // We have already added directory=0 to the URI, which takes care of thi [all...] |
ContactListAdapter.java | 23 import android.provider.ContactsContract.Directory; 178 if (uri != null && directoryId != Directory.DEFAULT) { 196 * contact to be shown as selected, we need both the directory and and the 211 return directoryId != Directory.DEFAULT && directoryId != Directory.LOCAL_INVISIBLE 320 if (mSelectedContactId != 0 && (mSelectedContactDirectoryId == Directory.DEFAULT 321 || mSelectedContactDirectoryId == Directory.LOCAL_INVISIBLE)) {
|
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 | 28 import android.provider.ContactsContract.Directory; 57 * Indicates whether the {@link Directory#LOCAL_INVISIBLE} directory should 153 partition.setDirectoryId(Directory.DEFAULT); 162 * Remove all directories after the default directory. This is typically used when contacts 163 * list screens are asked to exit the search mode and thus need to remove all remote directory 166 * 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, 168 * and we should not remove the directory). 175 && ((DirectoryPartition) partition).getDirectoryId() == Directory.DEFAULT) [all...] |
/external/clang/lib/Tooling/ |
JSONCompilationDatabase.cpp | 122 loadFromDirectory(StringRef Directory, std::string &ErrorMessage) override { 123 SmallString<1024> JSONDatabasePath(Directory); 261 llvm::yaml::ScalarNode *Directory = nullptr; 289 if (KeyValue == "directory") { 290 Directory = ValueString; 320 if (!Directory) { 321 ErrorMessage = "Missing key: \"directory\"."; 330 Directory->getValue(DirectoryStorage)); 336 auto Cmd = CompileCommandRef(Directory, File, *Command);
|
/external/clang/lib/AST/ |
ExternalASTSource.cpp | 33 if (M.Directory) 34 Path = M.Directory->getName();
|
/packages/apps/Contacts/src/com/android/contacts/ |
GroupMemberLoader.java | 25 import android.provider.ContactsContract.Directory; 108 String.valueOf(Directory.DEFAULT)).build();
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/elf/ |
dwarf2-3.d | 31 The Directory Table is empty.
|
/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 | 26 import android.provider.ContactsContract.Directory; 437 new TableColumn(Directory._ID, INTEGER, false, null), 438 new TableColumn(Directory.PACKAGE_NAME, TEXT, true, null), 439 new TableColumn(Directory.DIRECTORY_AUTHORITY, TEXT, true, null), 440 new TableColumn(Directory.TYPE_RESOURCE_ID, INTEGER, false, null), 442 new TableColumn(Directory.ACCOUNT_TYPE, TEXT, false, null), 443 new TableColumn(Directory.ACCOUNT_NAME, TEXT, false, null), 444 new TableColumn(Directory.DISPLAY_NAME, TEXT, false, null), 445 new TableColumn(Directory.EXPORT_SUPPORT, INTEGER, true, 446 String.valueOf(Directory.EXPORT_SUPPORT_NONE)) [all...] |