/sdk/apkbuilder/etc/ |
apkbuilder.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/editors/layout/refactoring/ |
ExtractIncludeRefactoring.java | 65 import org.eclipse.ltk.core.refactoring.Change; 223 protected @NonNull List<Change> computeChanges(IProgressMonitor monitor) { 236 List<Change> changes = new ArrayList<Change>(); 317 // Add change to create the new file 339 Change finishHook = createFinishHook(file); 345 private void handleIncludingFile(List<Change> changes, 347 TextFileChange change = new TextFileChange(sourceFile.getName(), sourceFile); local 349 change.setTextType(EXT_XML); 350 changes.add(change); [all...] |
ExtractStyleRefactoring.java | 63 import org.eclipse.ltk.core.refactoring.Change; 329 protected @NonNull List<Change> computeChanges(IProgressMonitor monitor) { 330 List<Change> changes = new ArrayList<Change>(); 379 TextFileChange change = new TextFileChange(sourceFile.getName(), sourceFile); local 380 change.setTextType(EXT_XML); 381 changes.add(change); 390 change.setEdit(rootEdit);
|
UseCompoundDrawableRefactoring.java | 60 import org.eclipse.ltk.core.refactoring.Change; 203 protected @NonNull List<Change> computeChanges(IProgressMonitor monitor) { 206 List<Change> changes = new ArrayList<Change>(); 210 TextFileChange change = new TextFileChange(file.getName(), file); local 212 change.setTextType(EXT_XML); 371 change.setEdit(rootEdit); 372 changes.add(change);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
NewTemplateWizard.java | 34 import org.eclipse.ltk.core.refactoring.Change; 143 protected List<Change> computeChanges() {
|
TemplateHandler.java | 75 import org.eclipse.ltk.core.refactoring.Change; 213 private List<Change> mMergeChanges; 214 private List<Change> mTextChanges; 215 private List<Change> mOtherChanges; 281 public List<Change> render(IProject project, Map<String, Object> args) { 285 mMergeChanges = new ArrayList<Change>(); 286 mTextChanges = new ArrayList<Change>(); 287 mOtherChanges = new ArrayList<Change>(); 299 List<Change> changes = new ArrayList<Change>(); 725 TextFileChange change = new TextFileChange("Merge " + fileName, to); local 907 TextFileChange change = createNewFileChange(targetFile); local 968 TextFileChange change = new TextFileChange(message, targetFile) { local 1045 NullChange change = new NullChange(label); local [all...] |
/sdk/files/ |
post_tools_install.bat | 26 rem Grab current directory before we change it
29 rem Change current directory and drive to where the script is, to avoid
|
/sdk/hierarchyviewer/etc/ |
hierarchyviewer1.bat | 23 rem Change current directory and drive to where the script is, to avoid
|
/sdk/monitor/ |
monitor.bat | 19 rem Change current directory and drive to where the script is, to avoid
|
/external/chromium_org/third_party/mesa/src/docs/ |
MESA_texture_array.spec | 163 Change the first paragraph (page 150) to say (spec changes identical to 179 Change the fourth paragraph on page 151 to say (spec changes identical 190 Change the fourth paragraph on page 156 to say (spec changes identical 228 Change the second paragraph (page 159) (spec changes identical 246 Change the last paragraph on page 160 to say (spec changes identical 261 Change the first paragraph (page 166) to say: 276 Change the first paragraph (page 172) to say: 291 Change the third paragraph (page 174) to say: 296 Change the fourth paragraph (page 174) to say: 309 Change the third paragraph (page 176) to say (spec changes identica [all...] |
/external/clang/lib/Rewrite/Frontend/ |
InclusionRewriter.cpp | 386 if (const FileChange *Change = FindFileChangeLocation( 388 if (Change->Mod) { 389 WriteImplicitModuleImport(Change->Mod, EOL); 392 } else if (Process(Change->Id, Change->FileType)) {
|
/external/mesa3d/docs/ |
MESA_texture_array.spec | 163 Change the first paragraph (page 150) to say (spec changes identical to 179 Change the fourth paragraph on page 151 to say (spec changes identical 190 Change the fourth paragraph on page 156 to say (spec changes identical 228 Change the second paragraph (page 159) (spec changes identical 246 Change the last paragraph on page 160 to say (spec changes identical 261 Change the first paragraph (page 166) to say: 276 Change the first paragraph (page 172) to say: 291 Change the third paragraph (page 174) to say: 296 Change the fourth paragraph (page 174) to say: 309 Change the third paragraph (page 176) to say (spec changes identica [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/ |
AndroidPackageRenameParticipant.java | 59 import org.eclipse.ltk.core.refactoring.Change; 145 "If you change it, then it is considered to be a different application.", ctx); 152 "To really change application package, " + 217 public Change createChange(IProgressMonitor pm) throws CoreException, 269 Change genChange = getGenPackageChange(pm); 276 public Change perform(IProgressMonitor monitor) throws CoreException { 281 // Not undoable: just return null instead of an undo-change. 291 * Returns Android gen package text change 295 * @return Android gen package text change 299 public Change getGenPackageChange(IProgressMonitor pm) throws CoreException [all...] |
RenameResourceParticipant.java | 62 import org.eclipse.ltk.core.refactoring.Change; 365 public Change createChange(IProgressMonitor monitor) throws CoreException, 419 CompositeChange change, 431 addResourceXmlChanges(manifest, change, null); 452 addResourceXmlChanges(file, change, folderType); 464 change.add(new RenameResourceChange(path, newFile)); 482 Change fieldChanges = mFieldRefactoring.createChange(monitor); 486 // Look for the field change on the R.java class; it's a derived file 515 TextFileChange change = new TextFileChange(file.getName(), file); local 516 change.setTextType(EXT_XML) 725 TextChange change = getTextChange(rFile); local [all...] |
AndroidTypeRenameParticipant.java | 62 import org.eclipse.ltk.core.refactoring.Change; 193 public Change createChange(IProgressMonitor pm) throws CoreException, 248 // Look for the field change on the R.java class; it's a derived file 287 Change fieldChange = refactoring.createChange(monitor); 294 // doesn't ensure that after applying each change it 301 // Disable change: see comment above. 388 TextFileChange change = new TextFileChange(file.getName(), file); local 389 change.setTextType(EXT_XML); 390 change.setEdit(rootEdit); 391 changes.add(change); [all...] |
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/media/ |
player_testapi.js | 64 * Change media position. 97 * Change volume.
|
/external/chromium_org/chrome/browser/ui/app_list/search/ |
history_data_store_unittest.cc | 142 TEST_F(HistoryDataStoreTest, Change) {
|
/external/libvpx/libvpx/tools/ |
ftfy.sh | 48 LAST_CHANGEID=$(git show | awk '/Change-Id:/{print $2}') 50 log "HEAD doesn't have a Change-Id, unable to generate a new commit" 54 # Build a deterministic Change-Id from the parent's 61 Cosmetic: Fix whitespace in change ${LAST_CHANGEID:0:9} 63 Change-Id: ${NEW_CHANGEID}
|
/external/chromium_org/ui/webui/resources/js/ |
local_strings.js | 65 // TODO(jhawkins): Change to console.error when all errors are fixed.
|
/external/chromium_org/v8/test/mjsunit/compiler/ |
concurrent-proto-change.js | 48 // Change the prototype chain after compile graph has been created.
|
/external/chromium_org/v8/test/webkit/fast/js/kde/ |
scope.js | 53 eval("var g;") //Change the scope of g half-ways through the loop
|
/prebuilts/devtools/tools/ |
lint.bat | 23 rem Grab current directory before we change it 26 rem Change current directory and drive to where the script is, to avoid
|
monkeyrunner.bat | 23 rem Change current directory and drive to where the script is, to avoid
|
traceview.bat | 23 rem Change current directory and drive to where the script is, to avoid
|
uiautomatorviewer.bat | 23 rem Change current directory and drive to where the script is, to avoid
|