/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/configuration/ |
D | ConfigurationTest.java | 126 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/ |
D | SystraceTask.java | 86 byte[] copy = new byte[mDataLength]; in flush() 88 copy[i] = mBuffer[i]; in flush() 90 mBuffer = copy; in flush()
|
D | SystraceOutputParser.java | 80 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/ |
D | Configuration.java | 217 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/ |
D | FixLaunchConfig.java | 93 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/ |
D | GLSparseArrayProperty.java | 124 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/ |
D | post_tools_install.bat | 6 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/ |
D | AddSupportJarAction.java | 316 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/ |
D | collect_sources_for_sdk.py | 118 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/ |
D | FileStoreAdapter.java | 66 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/ |
D | TraceviewEditor.java | 141 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/ |
D | TableView.java | 78 mActivator.copy(mClipboard); in setupTableFocusListener()
|
/sdk/eclipse/monitor/ |
D | monitor.bat | 6 rem You may obtain a copy of the License at
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/api/ |
D | PointTest.java | 71 Point p2 = p.copy(); in testCopy()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/ |
D | GraphicsUtilitiesTest.java | 94 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/ |
D | ExportMessages.properties | 5 # You may obtain a copy of the License at
|
/sdk/apkbuilder/etc/ |
D | apkbuilder.bat | 6 rem You may obtain a copy of the License at
|
/sdk/hierarchyviewer/etc/ |
D | hierarchyviewer1.bat | 6 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/ |
D | SimpleElement.java | 67 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/ |
D | GraphicsUtilities.java | 75 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/ |
D | messages.properties | 6 # 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/ |
D | TemplateHandler.java | 514 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/ |
D | AndroidContentAssist.java | 320 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/ |
D | EditableDialogCellEditor.java | 398 text.copy(); in performCopy()
|
/sdk/files/typos/ |
D | typos-hu.txt | 170 # 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
|