Home
last modified time | relevance | path

Searched refs:copy (Results 1 – 25 of 68) sorted by relevance

123

/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
DConfigurationTest.java126 Configuration copy = Configuration.copy(configuration); in testCopy() local
127 assertEquals(locale, copy.getLocale()); in testCopy()
128 assertEquals("foo.bar.FooActivity", copy.getActivity()); in testCopy()
129 assertEquals("@android:style/Theme.Holo.Light", copy.getTheme()); in testCopy()
130 assertEquals(devices.get(0), copy.getDevice()); in testCopy()
137 assertTrue(copy.getFullConfig().getLocaleQualifier().equals(locale.qualifier)); in testCopy()
138 assertEquals(locale, copy.getLocale()); in testCopy()
139 assertEquals("foo.bar.FooActivity", copy.getActivity()); in testCopy()
140 assertEquals("@android:style/Theme.Holo.Light", copy.getTheme()); in testCopy()
141 assertEquals(devices.get(0), copy.getDevice()); in testCopy()
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/systrace/
DSystraceTask.java86 byte[] copy = new byte[mDataLength]; in flush()
88 copy[i] = mBuffer[i]; in flush()
90 mBuffer = copy; in flush()
DSystraceOutputParser.java80 byte copy; in removeCrLf()
82 copy = '\n'; in removeCrLf()
85 copy = mAtraceOutput[src]; in removeCrLf()
87 mAtraceOutput[dst] = copy; in removeCrLf()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
DConfiguration.java217 Configuration configuration = copy(base); in create()
240 public static Configuration copy(@NonNull Configuration original) { in copy() method in Configuration
241 Configuration copy = create(original.mConfigChooser); in copy() local
242 copy.mFullConfig.set(original.mFullConfig); in copy()
244 copy.mEditedConfig = new FolderConfiguration(); in copy()
245 copy.mEditedConfig.set(original.mEditedConfig); in copy()
247 copy.mTarget = original.getTarget(); in copy()
248 copy.mTheme = original.getTheme(); in copy()
249 copy.mDevice = original.getDevice(); in copy()
250 copy.mState = original.getDeviceState(); in copy()
[all …]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
DFixLaunchConfig.java93 ILaunchConfigurationWorkingCopy copy = config.getWorkingCopy(); in run() local
106 copy.setAttribute(LaunchConfigDelegate.ATTR_ACTIVITY, activity); in run()
109 copy.doSave(); in run()
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
DGLSparseArrayProperty.java124 SparseArray<IGLProperty> copy = new SparseArray<IGLProperty>(mSparseArray.size()); in clone() local
128 copy.put(key, value); in clone()
131 return new GLSparseArrayProperty(mType, mDefaultValue, mCreateOnAccess, copy); in clone()
/sdk/files/
Dpost_tools_install.bat6 rem You may obtain a copy of the License at
39 copy /V /Y "%src%" "%dst%"
47 copy /V /Y "%src%" "%dst%"
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
DAddSupportJarAction.java316 ProjectPropertiesWorkingCopy copy = state.getProperties().makeWorkingCopy(); in installAppCompatLibrary() local
317 for (String property : copy.keySet()) { in installAppCompatLibrary()
319 String libraryReference = copy.getProperty(property); in installAppCompatLibrary()
473 sourceDir.copy(destDir, EFS.OVERWRITE, null); in createLibraryProject()
485 ProjectPropertiesWorkingCopy copy = properties.makeWorkingCopy(); in createLibraryProject() local
486 copy.setProperty(ProjectProperties.PROPERTY_TARGET, target); in createLibraryProject()
488 copy.save(); in createLibraryProject()
/sdk/eclipse/scripts/
Dcollect_sources_for_sdk.py118 copy(p, fp, f, pkg)
148 def copy(p, fp, f, pkg): function
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
DFileStoreAdapter.java66 public void copy(IFileStore destination, int options, IProgressMonitor monitor) in copy() method in FileStoreAdapter
68 mStore.copy(destination, options, monitor); in copy()
/sdk/eclipse/plugins/com.android.ide.eclipse.traceview/src/com/android/ide/eclipse/traceview/editors/
DTraceviewEditor.java141 if (copy(shell, fileEditorInput.getURI(), file.getLocationURI()) == null) { in doSaveAs()
188 … IFileStore destFileStore = copy(shell, fileStoreEditorInput.getURI(), localFile.toURI()); in doSaveAs()
202 private IFileStore copy(Shell shell, URI source, URI dest) { in copy() method in TraceviewEditor
208 sourceFileStore.copy(destFileStore, EFS.OVERWRITE, null); in copy()
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
DTableView.java78 mActivator.copy(mClipboard); in setupTableFocusListener()
/sdk/eclipse/monitor/
Dmonitor.bat6 rem You may obtain a copy of the License at
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/api/
DPointTest.java71 Point p2 = p.copy(); in testCopy()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/
DGraphicsUtilitiesTest.java94 ImageData result = GraphicsUtilities.copy(null); in testCopyNull()
104 ImageData copiedData = GraphicsUtilities.copy(baseData); in testCopy()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/
DExportMessages.properties5 # You may obtain a copy of the License at
/sdk/apkbuilder/etc/
Dapkbuilder.bat6 rem You may obtain a copy of the License at
/sdk/hierarchyviewer/etc/
Dhierarchyviewer1.bat6 rem You may obtain a copy of the License at
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DSimpleElement.java67 mBounds = bounds == null ? new Rect() : bounds.copy(); in SimpleElement()
68 mParentBounds = parentBounds == null ? new Rect() : parentBounds.copy(); in SimpleElement()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/
DGraphicsUtilities.java75 public static ImageData copy(ImageData image) { in copy() method in GraphicsUtilities
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
Dmessages.properties6 # You may obtain a copy of the License at
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
DTemplateHandler.java514 copy(path, to); in processVariables()
661 copy(path, to); in execute()
1091 copy(from, output); in copyTemplateResource()
1106 private void copy(File src, IPath path) throws IOException { in copy() method in TemplateHandler
1111 copy(child, path.append(child.getName())); in copy()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
DAndroidContentAssist.java320 ElementDescriptor[] copy = new ElementDescriptor[elements.length]; in sort() local
321 System.arraycopy(elements, 0, copy, 0, elements.length); in sort()
323 Arrays.sort(copy, new Comparator<ElementDescriptor>() { in sort()
330 return copy; in sort()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
DEditableDialogCellEditor.java398 text.copy(); in performCopy()
/sdk/files/typos/
Dtypos-hu.txt170 # of this License. You must include a copy of, or the Uniform Resource
171 # Identifier (URI) for, this License with every copy of the Work You
177 # this License and to the disclaimer of warranties with every copy of
202 # and the following provisions: (I) You must include a copy of, or the
203 # URI for, the Applicable License with every copy of each Adaptation
210 # with every copy of the Work as included in the Adaptation You

123