/packages/apps/Contacts/src/com/android/contacts/quickcontact/ |
DirectoryContactUtil.java | 22 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;
|
/packages/apps/Dialer/java/com/android/dialer/searchfragment/cp2/ |
SearchContactsCursor.java | 23 import android.provider.ContactsContract.Directory; 63 return Directory.DEFAULT;
|
/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\""
|
/prebuilts/tools/linux-x86_64/kythe/proto/ |
filetree.proto | 27 // Directory returns the file/sub-directory contents of the given directory. 28 rpc Directory(DirectoryRequest) returns (DirectoryReply) {} 48 // Set of tickets for each contained sub-directory's corpus, root, and path. 51 // Set of file tickets contained within this directory.
|
/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/swiftshader/third_party/LLVM/lib/Linker/ |
Linker.cpp | 117 // IsLibrary - Determine if "Name" is a library in "Directory". Return 120 const sys::Path &Directory) { 122 sys::Path FullPath(Directory); 154 // Indicate that the library was not found in the directory. 176 sys::Path Directory(LibPaths[Index]); 177 sys::Path FullPath = IsLibrary(Filename, Directory);
|
/packages/apps/Dialer/java/com/android/dialer/searchfragment/directories/ |
DirectoryContactsCursor.java | 28 import com.android.dialer.searchfragment.directories.DirectoriesCursorLoader.Directory; 34 * {@link MergeCursor} used for combining directory cursors into one cursor. 37 * {@link DirectoriesCursorLoader}, each represented as a {@link Directory}. 40 * Directory#getDisplayName()} as the header text. 62 Context context, Cursor[] cursors, List<Directory> directories) { 80 Context context, Cursor[] cursors, List<Directory> directories) { 89 Directory directory = directories.get(i); local 96 cursorList.add(createHeaderCursor(context, directory.getDisplayName(), directory.getId())) [all...] |
DirectoryContactsCursorLoader.java | 32 import com.android.dialer.searchfragment.directories.DirectoriesCursorLoader.Directory; 53 private final List<Directory> directories; 56 public DirectoryContactsCursorLoader(Context context, String query, List<Directory> directories) { 72 Directory directory = directories.get(i); local 74 if (!DirectoryCompat.isRemoteDirectoryId(directory.getId()) 75 && !DirectoryCompat.isEnterpriseDirectoryId(directory.getId())) { 81 if (DirectoryCompat.isInvisibleDirectory(directory.getId())) { 90 getContentFilterUri(query, directory.getId()), 96 // directory extension doesn't appear to respect it, and sometimes returns a null phon [all...] |
/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`; 109 open DEFS, "$nmPath -sg $Directory/$lib|"; 149 open UDEFS, "$nmPath -Aup $Directory/$lib|"; 165 open DEFS, "$nmPath -g $Directory/$lib|" [all...] |
/external/swiftshader/third_party/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`; 111 open DEFS, "$nmPath -sg $Directory/$lib|"; 153 open UDEFS, "$nmPath -Aup $Directory/$lib|"; 169 open DEFS, "$nmPath -g $Directory/$lib|" [all...] |
/external/proguard/bin/ |
proguardgui.bat | 8 REM "\"C:/My Directory/My File.txt\""
|
retrace.bat | 8 REM "\"C:/My Directory/My File.txt\""
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/ |
EdkIIWorkspace.py | 42 print 'ERROR: WORKSPACE not defined. Please run EdkSetup from the EDK II install directory.'
295 ## Create a new directory
297 # @param Directory: Directory to be created
299 def CreateDirectory(Directory):
300 if not os.access(Directory, os.F_OK):
301 os.makedirs (Directory)
305 # @param Directory: Directory to be created
309 def CreateFile(Directory, FileName, Mode='w'): [all...] |
/external/swiftshader/third_party/LLVM/lib/MC/ |
MCContext.cpp | 248 /// directory tables. If the file number has already been allocated it is an 269 // Separate the directory part from the basename of the FileName. 272 // Find or make a entry in the MCDwarfDirs vector for this Directory. 275 // Capture directory name. 280 StringRef Directory = Slash.first; 284 if (Directory == MCDwarfDirs[DirIndex]) 288 char *Buf = static_cast<char *>(Allocate(Directory.size())); 289 memcpy(Buf, Directory.data(), Directory.size()); 290 MCDwarfDirs.push_back(StringRef(Buf, Directory.size())) [all...] |
/packages/apps/Dialer/java/com/android/contacts/common/list/ |
DefaultContactListAdapter.java | 27 import android.provider.ContactsContract.Directory; 53 // Regardless of the directory, we don't want anything returned, 54 // so let's just send a "nothing" query to the local directory. 90 if (directoryId != Directory.DEFAULT && directoryId != Directory.LOCAL_INVISIBLE) { 101 if (directoryId == Directory.DEFAULT && isSectionHeaderDisplayEnabled()) { 105 // The "All accounts" filter is the same as the entire contents of Directory.DEFAULT 111 ContactsContract.DIRECTORY_PARAM_KEY, String.valueOf(Directory.DEFAULT)); 126 if (directoryId != Directory.DEFAULT) { 136 // We have already added directory=0 to the URI, which takes care of thi [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);
|
/cts/tests/tests/provider/src/android/provider/cts/contacts/ |
ContactsContract_SearchSnippetsTest.java | 31 import android.provider.ContactsContract.Directory; 92 String.valueOf(Directory.DEFAULT)).appendPath("nomatch").build(); 112 String.valueOf(Directory.DEFAULT)).build(); 135 String.valueOf(Directory.DEFAULT)).build(); 158 String.valueOf(Directory.DEFAULT)).build(); 181 String.valueOf(Directory.DEFAULT)).build(); 209 String.valueOf(Directory.DEFAULT)).build(); 249 String.valueOf(Directory.DEFAULT)) 285 String.valueOf(Directory.DEFAULT))
|
/device/linaro/bootloader/edk2/DuetPkg/BootSector/ |
bootsect.S | 109 shlw $FAT_DIRECTORY_ENTRY_SHIFT, %cx # cx = cx * 32 = cx * sizeof(FAT_DIRECTORY_ENTRY) = Size of Root Directory in bytes
110 movw %cx, %bx # bx = size of the Root Directory in bytes
113 movw %cx, %bx # bx = size of the Root Directory in bytes
114 shrw $BLOCK_SHIFT, %bx # bx = size of Root Directory in sectors
121 xorw %di, %di # Store directory in es:di = 1000:0000
122 call ReadBlocks # Read entire Root Directory
|
/external/clang/lib/AST/ |
ExternalASTSource.cpp | 33 if (M.Directory) 34 Path = M.Directory->getName();
|
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/elf/ |
dwarf2-3.d | 31 The Directory Table is empty.
|