Searched refs:copy (Results 1 - 25 of 32) sorted by relevance

12

/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/systrace/
H A DSystraceTask.java6 * You may obtain a copy of the License at
86 byte[] copy = new byte[mDataLength];
88 copy[i] = mBuffer[i];
90 mBuffer = copy;
H A DSystraceOutputParser.java6 * You may obtain a copy of the License at
80 byte copy;
82 copy = '\n';
85 copy = mAtraceOutput[src];
87 mAtraceOutput[dst] = copy;
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
H A DConfigurationTest.java6 * You may obtain a copy of the License at
125 Configuration copy = Configuration.copy(configuration);
126 assertEquals(locale, copy.getLocale());
127 assertEquals("foo.bar.FooActivity", copy.getActivity());
128 assertEquals("@android:style/Theme.Holo.Light", copy.getTheme());
129 assertEquals(devices.get(0), copy.getDevice());
136 assertTrue(copy.getFullConfig().getLanguageQualifier().equals(locale.language));
137 assertEquals(locale, copy.getLocale());
138 assertEquals("foo.bar.FooActivity", copy
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
H A DFixLaunchConfig.java6 * You may obtain a copy of the License at
92 // get the working copy so that we can make changes.
93 ILaunchConfigurationWorkingCopy copy = config.getWorkingCopy();
105 // put it in the copy
106 copy.setAttribute(LaunchConfigDelegate.ATTR_ACTIVITY, activity);
109 copy.doSave();
112 // couldn't get the working copy. we output the error in the console
/sdk/files/
H A 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.gldebugger/src/com/android/ide/eclipse/gltrace/state/
H A DGLSparseArrayProperty.java6 * You may obtain a copy of the License at
124 SparseArray<IGLProperty> copy = new SparseArray<IGLProperty>(mSparseArray.size());
128 copy.put(key, value);
131 return new GLSparseArrayProperty(mType, mDefaultValue, mCreateOnAccess, copy);
/sdk/hierarchyviewer/etc/
H A DAndroid.mk5 # You may obtain a copy of the License at
H A 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/configuration/
H A DConfiguration.java6 * You may obtain a copy of the License at
218 Configuration configuration = copy(base);
235 * Creates a new {@linkplain Configuration} that is a copy from a different configuration
237 * @param original the original to copy from
241 public static Configuration copy(@NonNull Configuration original) { method in class:Configuration
242 Configuration copy = create(original.mConfigChooser);
243 copy.mFullConfig.set(original.mFullConfig);
245 copy.mEditedConfig = new FolderConfiguration();
246 copy.mEditedConfig.set(original.mEditedConfig);
248 copy
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
H A DFileStoreAdapter.java6 * You may obtain a copy of the License at
66 public void copy(IFileStore destination, int options, IProgressMonitor monitor) method in class:FileStoreAdapter
68 mStore.copy(destination, options, monitor);
/sdk/eclipse/scripts/
H A Dcollect_sources_for_sdk.py7 # You may obtain a copy of the License at
118 copy(p, fp, f, pkg)
146 # Create destination directory based on package name then copy the
148 def copy(p, fp, f, pkg): function
/sdk/hierarchyviewer/src/
H A DAndroid.mk5 # You may obtain a copy of the License at
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
H A DTableView.java6 * You may obtain a copy of the License at
31 * Base class for view containing Table that needs to support copy, and select
46 * the copy and select all actions.
70 // setup the copy action
78 mActivator.copy(mClipboard);
/sdk/eclipse/plugins/com.android.ide.eclipse.traceview/src/com/android/ide/eclipse/traceview/editors/
H A DTraceviewEditor.java6 * You may obtain a copy of the License at
141 if (copy(shell, fileEditorInput.getURI(), file.getLocationURI()) == null) {
188 IFileStore destFileStore = copy(shell, fileStoreEditorInput.getURI(), localFile.toURI());
202 private IFileStore copy(Shell shell, URI source, URI dest) { method in class:TraceviewEditor
208 sourceFileStore.copy(destFileStore, EFS.OVERWRITE, null);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
H A DAddSupportJarAction.java6 * You may obtain a copy of the License at
251 * Similar to {@link #install}, but rather than copy a jar into the given
286 // Create workspace copy of the project and add library dependency
298 * Similar to {@link #install}, but rather than copy a jar into the given
316 ProjectPropertiesWorkingCopy copy = state.getProperties().makeWorkingCopy();
317 for (String property : copy.keySet()) {
319 String libraryReference = copy.getProperty(property);
350 // Create workspace copy of the project and add library dependency
441 * @param project the project to copy the SDK target out of
451 // Install a new library into the workspace. This is a copy rathe
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/api/
H A DPointTest.java6 * You may obtain a copy of the License at
71 Point p2 = p.copy();
/sdk/apkbuilder/etc/
H A Dapkbuilder.bat6 rem You may obtain a copy of the License at
/sdk/monitor/
H A Dmonitor.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/draw9patch/graphics/
H A DGraphicsUtilities.java6 * You may obtain a copy of the License at
75 public static ImageData copy(ImageData image) { method in class:GraphicsUtilities
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
H A DSimpleElement.java6 * You may obtain a copy of the License at
67 mBounds = bounds == null ? new Rect() : bounds.copy();
68 mParentBounds = parentBounds == null ? new Rect() : parentBounds.copy();
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/
H A DGraphicsUtilitiesTest.java6 * You may obtain a copy of the License at
94 ImageData result = GraphicsUtilities.copy(null);
104 ImageData copiedData = GraphicsUtilities.copy(baseData);
/sdk/find_java/
H A Dfind_java.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/
H A DAndroidContentAssist.java6 * You may obtain a copy of the License at
319 // Sort alphabetically. Must make copy to not destroy original.
320 ElementDescriptor[] copy = new ElementDescriptor[elements.length];
321 System.arraycopy(elements, 0, copy, 0, elements.length);
323 Arrays.sort(copy, new Comparator<ElementDescriptor>() {
330 return copy;
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
H A DEditableDialogCellEditor.java6 * You may obtain a copy of the License at
398 text.copy();
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
H A DTemplateHandler.java6 * You may obtain a copy of the License at
164 static final String TAG_COPY = "copy"; //$NON-NLS-1$
514 copy(path, to);
661 copy(path, to);
719 // The target file doesn't exist: don't merge, just copy
1091 copy(from, output);
1106 private void copy(File src, IPath path) throws IOException { method in class:TemplateHandler
1111 copy(child, path.append(child.getName()));

Completed in 712 milliseconds

12