/sdk/find_lock/ |
D | find_lock.cpp | 260 char *dest = buf; in getHandleType() local 261 char *dend = dest + 9; in getHandleType() 262 for (; c < e && dest < dend && c[0] != '\0' && c[1] == '\0'; c += 2, dest++) { in getHandleType() 263 *dest = *c; in getHandleType() 265 *(dest++) = '\0'; in getHandleType() 266 type->set(buf, dest - buf); in getHandleType() 343 unsigned char *dest = (unsigned char *)buf + 4; in FileNameThreadFunc() local 345 for (DWORD i = 0; i < len; dest++, src += 2, i += 2) { in FileNameThreadFunc() 347 *dest = *src; in FileNameThreadFunc() 349 *dest = 0xFF; in FileNameThreadFunc() [all …]
|
/sdk/emulator/qtools/ |
D | decoder.cpp | 167 void Decoder::Read(char *dest, int len) in Read() argument 179 memcpy(dest, next_, nbytes); in Read() 180 dest += nbytes; in Read()
|
D | decoder.h | 14 void Read(char *dest, int len);
|
D | trace_reader.h | 65 region_entry *MakePrivateCopy(region_entry *dest) { in MakePrivateCopy() 66 dest->refs = 0; in MakePrivateCopy() 67 dest->path = Strdup(path); in MakePrivateCopy() 68 dest->vstart = vstart; in MakePrivateCopy() 69 dest->vend = vend; in MakePrivateCopy() 70 dest->base_addr = base_addr; in MakePrivateCopy() 71 dest->file_offset = file_offset; in MakePrivateCopy() 72 dest->flags = flags; in MakePrivateCopy() 73 dest->nsymbols = nsymbols; in MakePrivateCopy() 74 dest->symbols = symbols; in MakePrivateCopy() [all …]
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
D | TemplateHandler.java | 1014 private static boolean isIdentical(@Nullable byte[] data, @NonNull IFile dest) { in isIdentical() argument 1015 assert dest.exists(); in isIdentical() 1016 byte[] existing = AdtUtils.readData(dest); in isIdentical() 1034 IResource dest = mProject.getFile(path); in copy() local 1035 if (dest.exists() && !(dest instanceof IFile)) {// Don't attempt to overwrite a folder in copy() 1036 assert false : dest.getClass().getName(); in copy() 1039 IFile file = (IFile) dest; in copy() 1041 if (dest instanceof IFile) { in copy() 1042 if (dest.exists() && isIdentical(Files.toByteArray(src), file)) { in copy()
|
D | ProjectContentsPage.java | 324 File dest = Platform.getLocation().append(values.projectName).toFile(); in validateLocationInWorkspace() local 325 if (dest.exists()) { in validateLocationInWorkspace()
|
/sdk/find_java/ |
D | utils.h | 329 bool toShortPath(CPath *dest) { in toShortPath() argument 345 if (length != 0) dest->set(shortPath); in toShortPath()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
D | ImageUtilsTest.java | 247 BufferedImage dest = new BufferedImage(destWidth, destHeight, image.getType()); in drawRectangles() local 249 Graphics2D g = dest.createGraphics(); in drawRectangles() 272 return dest; in drawRectangles()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/ |
D | CreateAssetSetWizard.java | 105 IPath dest = new Path(relativePath); in performFinish() local 106 IFile file = project.getFile(dest); in performFinish()
|
D | ConfigureAssetSetPage.java | 1200 IPath dest = new Path(relativePath); in generateIcons() local 1201 IFile file = newProject.getFile(dest); in generateIcons()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.traceview/src/com/android/ide/eclipse/traceview/editors/ |
D | TraceviewEditor.java | 202 private IFileStore copy(Shell shell, URI source, URI dest) { in copy() argument 206 destFileStore = EFS.getStore(dest); in copy()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/ |
D | NewXmlFileWizard.java | 424 IPath dest = new Path(folderPath).append(fileName); in getDestinationFile() local 425 IFile file = project.getFile(dest); in getDestinationFile()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/ |
D | NewProjectCreator.java | 1158 private void addFile(IFile dest, byte[] source, IProgressMonitor monitor) throws CoreException { in addFile() argument 1162 dest.create(stream, false /* force */, new SubProgressMonitor(monitor, 10)); in addFile() 1319 IFile dest = project.getFile(destName); in addLocalFile() local 1320 if (dest.exists() == false) { in addLocalFile() 1322 dest.create(stream, false /* force */, new SubProgressMonitor(monitor, 10)); in addLocalFile()
|
D | ProjectNamePage.java | 514 File dest = path.toFile(); in validateLocation() local 515 if (dest.exists()) { in validateLocation()
|
D | ApplicationInfoPage.java | 544 File dest = destPath.toFile(); in validateTestProjectLocation() local 545 if (dest.exists()) { in validateTestProjectLocation()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/ |
D | Configuration.java | 392 public void copyFullConfig(FolderConfiguration dest) { in copyFullConfig() argument 393 dest.set(mFullConfig); in copyFullConfig()
|