/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/renamepackage/ |
ApplicationPackageNameRefactoring.java | 51 import org.eclipse.ltk.core.refactoring.Change; 121 public Change createChange(IProgressMonitor pm) throws CoreException, 236 // Prepare the change set 264 // Found an occurrence. Create a change for it. 326 // Prepare the change set 366 // Found an occurrence. Create a change for it. 372 editGroups.add(new TextEditGroup("Change Android package name", edit)); 424 CompositeChange change = new CompositeChange("Refactoring Application package name", local 425 mChanges.toArray(new Change[mChanges.size()])); 426 change.markAsSynthetic() [all...] |
/external/chromium_org/ppapi/generators/ |
idl_diff.py | 28 # Change 30 # A Change object contains the previous lines, new news and change type. 32 class Change(object): 55 # Return True if this change is only a one line change in the copyright notice 58 def IsCopyright(change): 59 if len(change.now) != 1 or len(change.was) != 1: return False 60 if 'Copyright (c)' not in change.now[0]: return Fals [all...] |
/external/chromium_org/v8/test/mjsunit/ |
debug-liveedit-2.js | 59 print("Change log: " + JSON.stringify(change_log) + "\n");
|
debug-liveedit-3.js | 62 print("Change log: " + JSON.stringify(change_log) + "\n");
|
debug-liveedit-4.js | 64 print("Change log: " + JSON.stringify(change_log) + "\n");
|
debug-liveedit-breakpoints.js | 79 print("Change log: " + JSON.stringify(change_log) + "\n");
|
debug-liveedit-newsource.js | 62 print("Change log: " + JSON.stringify(change_log) + "\n");
|
debug-liveedit-stack-padding.js | 60 print("Change log: " + JSON.stringify(change_log) + "\n");
|
debug-liveedit-check-stack.js | 65 print("Change log: " + JSON.stringify(change_log) + "\n");
|
debug-liveedit-patch-positions-replace.js | 35 // Before the change 2 rinfo are 22 characters away from each other. After the 36 // change they are 114 characters away from each other. New instance of Code is 55 // Line long enough to change rinfo encoding. 63 print("Change log: " + JSON.stringify(change_log) + "\n");
|
debug-liveedit-patch-positions.js | 33 // corresponding byte-code PCs should coincide before change and after it. 98 print("Change log: " + JSON.stringify(change_log) + "\n"); 113 // pcs will not change.
|
/external/v8/test/mjsunit/ |
debug-liveedit-2.js | 59 print("Change log: " + JSON.stringify(change_log) + "\n");
|
debug-liveedit-3.js | 62 print("Change log: " + JSON.stringify(change_log) + "\n");
|
debug-liveedit-breakpoints.js | 79 print("Change log: " + JSON.stringify(change_log) + "\n");
|
debug-liveedit-newsource.js | 62 print("Change log: " + JSON.stringify(change_log) + "\n");
|
debug-liveedit-check-stack.js | 65 print("Change log: " + JSON.stringify(change_log) + "\n");
|
debug-liveedit-patch-positions-replace.js | 35 // Before the change 2 rinfo are 22 characters away from each other. After the 36 // change they are 114 characters away from each other. New instance of Code is 55 // Line long enough to change rinfo encoding. 63 print("Change log: " + JSON.stringify(change_log) + "\n");
|
/prebuilts/devtools/tools/ |
ddms.bat | 23 rem Change current directory and drive to where the script is, to avoid
|
hierarchyviewer.bat | 23 rem Change current directory and drive to where the script is, to avoid
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/ |
AndroidTypeMoveParticipant.java | 52 import org.eclipse.ltk.core.refactoring.Change; 156 public Change createChange(IProgressMonitor pm) throws CoreException, 247 TextFileChange change = new TextFileChange(file.getName(), file); local 248 change.setTextType(EXT_XML); 249 change.setEdit(rootEdit); 250 changes.add(change);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
ChangeLayoutRefactoring.java | 62 import org.eclipse.ltk.core.refactoring.Change; 168 return "Change Layout"; 222 protected @NonNull List<Change> computeChanges(IProgressMonitor monitor) { 226 List<Change> changes = new ArrayList<Change>(); 230 TextFileChange change = new TextFileChange(file.getName(), file); local 232 change.setTextType(EXT_XML); 233 changes.add(change); 328 change.setEdit(rootEdit);
|
VisualRefactoring.java | 63 import org.eclipse.ltk.core.refactoring.Change; 129 protected List<Change> mChanges; 236 protected abstract List<Change> computeChanges(IProgressMonitor monitor); 242 mChanges = new ArrayList<Change>(); 250 List<Change> changes = computeChanges(monitor); 262 public Change createChange(IProgressMonitor monitor) throws CoreException, 267 CompositeChange change = new CompositeChange( local 269 mChanges.toArray(new Change[mChanges.size()])) { 278 return change; [all...] |
/external/chromium/chrome/browser/resources/file_manager/js/ |
harness.js | 74 * Change handler for the 'input type=file' element.
|
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/ |
file_watcher.js | 46 * @param {Event} event Change event. 97 * Dispatches an event about detected change in metadata within the tracked 100 * @param {string} type Type of the metadata change. 130 'Unable to change the watched directory to: ' + entry.toURL());
|
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/ui/ |
search_box.js | 83 * Change the selection by a mouse over instead of just changing the 89 * If we just change the color of moused over element (item B), both 90 * the item A and B are highlighted. This is bad. We should change the
|