/frameworks/compile/mclinker/lib/Support/ |
Android.mk | 5 Directory.cpp \
|
/prebuilts/tools/common/proguard/proguard4.7/bin/ |
proguardgui.bat | 8 REM "\"C:/My Directory/My File.txt\""
|
retrace.bat | 8 REM "\"C:/My Directory/My File.txt\""
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/ |
DefaultContactListAdapter.java | 28 import android.provider.ContactsContract.Directory; 64 // Regardless of the directory, we don't want anything returned, 65 // so let's just send a "nothing" query to the local directory. 74 if (directoryId != Directory.DEFAULT && directoryId != Directory.LOCAL_INVISIBLE) { 109 if (directoryId == Directory.DEFAULT && isSectionHeaderDisplayEnabled()) { 113 // The "All accounts" filter is the same as the entire contents of Directory.DEFAULT 119 ContactsContract.DIRECTORY_PARAM_KEY, String.valueOf(Directory.DEFAULT)); 135 if (directoryId != Directory.DEFAULT) { 144 // We have already added directory=0 to the URI, which takes care of thi [all...] |
ContactEntryListAdapter.java | 28 import android.provider.ContactsContract.Directory; 54 * 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...] |
ContactListAdapter.java | 23 import android.provider.ContactsContract.Directory; 168 if (uri != null && directoryId != Directory.DEFAULT) { 177 * contact to be shown as selected, we need both the directory and and the 192 return directoryId != Directory.DEFAULT && directoryId != Directory.LOCAL_INVISIBLE 301 if (mSelectedContactId != 0 && (mSelectedContactDirectoryId == Directory.DEFAULT 302 || 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...] |
PhoneNumberListAdapter.java | 30 import android.provider.ContactsContract.Directory; 160 final DirectoryPartition directory = getExtendedDirectoryFromId(directoryId); local 161 final String contentUri = directory.getContentUri(); 163 throw new IllegalStateException("Extended directory must have a content URL: " 164 + directory); 169 String.valueOf(getDirectoryResultLimit(directory))); 195 ContactsContract.DIRECTORY_PARAM_KEY, String.valueOf(Directory.DEFAULT)); 247 if (filter == null || directoryId != Directory.DEFAULT) { 411 final DirectoryPartition directory = (DirectoryPartition) getPartition(partition); local 412 bindPhoneNumber(view, cursor, directory.isDisplayNumber()) 550 final DirectoryPartition directory = mExtendedDirectories.get(i); local 561 final DirectoryPartition directory = (DirectoryPartition) getPartition(partitionIndex); local [all...] |
/external/clang/lib/Tooling/ |
JSONCompilationDatabase.cpp | 122 loadFromDirectory(StringRef Directory, std::string &ErrorMessage) override { 123 SmallString<1024> JSONDatabasePath(Directory); 254 llvm::yaml::ScalarNode *Directory = nullptr; 278 if (KeyString->getValue(KeyStorage) == "directory") { 279 Directory = ValueString; 298 if (!Directory) { 299 ErrorMessage = "Missing key: \"directory\"."; 308 Directory->getValue(DirectoryStorage)); 315 CompileCommandRef(Directory, Command));
|
/packages/apps/Contacts/src/com/android/contacts/ |
GroupMemberLoader.java | 25 import android.provider.ContactsContract.Directory; 108 String.valueOf(Directory.DEFAULT)).build();
|
/development/samples/HoneycombGallery/src/com/example/android/hcgallery/ |
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);
|
/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...] |
/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));
|
/external/llvm/include/llvm/MC/ |
MCDwarf.h | 46 // Name - the base name of the file without its directory path. 50 // DirIndex - the index into the list of directory names for this file name. 189 unsigned getFile(StringRef &Directory, StringRef &FileName, 202 unsigned getFile(StringRef Directory, StringRef FileName) { 203 return Header.getFile(Directory, FileName); 219 unsigned getFile(StringRef &Directory, StringRef &FileName,
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/ |
ContactLoader.java | 35 import android.provider.ContactsContract.Directory; 266 Directory.DISPLAY_NAME, 267 Directory.PACKAGE_NAME, 268 Directory.TYPE_RESOURCE_ID, 269 Directory.ACCOUNT_TYPE, 270 Directory.ACCOUNT_NAME, 271 Directory.EXPORT_SUPPORT, 403 final String directoryName = uri.getQueryParameter(Directory.DISPLAY_NAME); 407 json.optInt(Directory.EXPORT_SUPPORT, 408 Directory.EXPORT_SUPPORT_SAME_ACCOUNT_ONLY)) [all...] |
Contact.java | 24 import android.provider.ContactsContract.Directory; 211 * @param exportSupport See {@link Directory#EXPORT_SUPPORT}. 233 * For directory contacts, this is the same a the URI as returned by {@link #getUri()} 374 return mDirectoryId != -1 && mDirectoryId != Directory.DEFAULT 375 && mDirectoryId != Directory.LOCAL_INVISIBLE; 391 // Directory entries are non-writable
|
/packages/apps/Contacts/src/com/android/contacts/list/ |
JoinContactListAdapter.java | 26 import android.provider.ContactsContract.Directory; 94 ContactsContract.DIRECTORY_PARAM_KEY, String.valueOf(Directory.DEFAULT)) 99 ContactsContract.DIRECTORY_PARAM_KEY, String.valueOf(Directory.DEFAULT))
|
ContactBrowseListFragment.java | 33 import android.provider.ContactsContract.Directory; 266 if (mSelectedContactDirectoryId != Directory.DEFAULT 267 && mSelectedContactDirectoryId != Directory.LOCAL_INVISIBLE) { 360 mSelectedContactDirectoryId = TextUtils.isEmpty(directoryParam) ? Directory.DEFAULT 379 mSelectedContactDirectoryId = Directory.DEFAULT; 444 DirectoryPartition directory = (DirectoryPartition) partition; local 445 if (directory.getDirectoryId() == mSelectedContactDirectoryId) { 446 directoryLoading = directory.isLoading(); 529 * and to save bandwidth on directory queries.
|
/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)) 291 ContactsContract.DIRECTORY_PARAM_KEY, String.valueOf(Directory.DEFAULT)) 345 ContactsContract.DIRECTORY_PARAM_KEY, String.valueOf(Directory.DEFAULT)) 366 ContactsContract.DIRECTORY_PARAM_KEY, String.valueOf(Directory.DEFAULT))
|
/external/clang/lib/StaticAnalyzer/Core/ |
HTMLDiagnostics.cpp | 41 std::string Directory; 77 : Directory(prefix), createdDir(false), noDir(false), PP(pp), AnalyzerOpts(AnalyzerOpts) { 103 // Create the HTML directory if it is missing. 106 if (std::error_code ec = llvm::sys::fs::create_directories(Directory)) { 107 llvm::errs() << "warning: could not create directory '" 108 << Directory << "': " << ec.message() << '\n'; 174 // Get the full directory name of the analyzed file. 179 // working directory if we have no directory information. This is 282 llvm::sys::path::append(Model, Directory, "report-%%%%%%.html") [all...] |
/frameworks/opt/chips/src/com/android/ex/chips/ |
BaseRecipientAdapter.java | 30 import android.provider.ContactsContract.Directory; 93 * Model object for a {@link Directory} row. 110 Directory._ID, // 0 111 Directory.ACCOUNT_NAME, // 1 112 Directory.ACCOUNT_TYPE, // 2 113 Directory.DISPLAY_NAME, // 3 114 Directory.PACKAGE_NAME, // 4 115 Directory.TYPE_RESOURCE_ID, // 5 202 * contact provider and the list of {@link Directory}'s. 342 * An asynchronous filter that performs search in a particular directory [all...] |
/packages/apps/Exchange/src/com/android/exchange/provider/ |
ExchangeDirectoryProvider.java | 35 import android.provider.ContactsContract.Directory; 252 if (column.equals(Directory.ACCOUNT_NAME)) { 254 } else if (column.equals(Directory.ACCOUNT_TYPE)) { 256 } else if (column.equals(Directory.TYPE_RESOURCE_ID)) { 268 } else if (column.equals(Directory.DISPLAY_NAME)) { 270 // the domain name and use it as the directory display name 280 } else if (column.equals(Directory.EXPORT_SUPPORT)) { 281 row[i] = Directory.EXPORT_SUPPORT_SAME_ACCOUNT_ONLY; 282 } else if (column.equals(Directory.SHORTCUT_SUPPORT)) { 283 row[i] = Directory.SHORTCUT_SUPPORT_NONE [all...] |
/packages/apps/Contacts/tests/src/com/android/contacts/activities/ |
PeopleActivityTest.java | 26 import android.provider.ContactsContract.Directory; 137 String.valueOf(Directory.DEFAULT))
|
/external/llvm/lib/MC/ |
MCDwarf.cpp | 304 // Put out the directory and file tables. 306 // First the directory table. 311 MCOS->EmitIntValue(0, 1); // Terminate the directory list 318 // the Directory num 344 unsigned MCDwarfLineTable::getFile(StringRef &Directory, StringRef &FileName, 346 return Header.getFile(Directory, FileName, FileNumber); 349 unsigned MCDwarfLineTableHeader::getFile(StringRef &Directory, 352 if (Directory == CompilationDir) 353 Directory = ""; 356 Directory = "" [all...] |