/external/chromium_org/third_party/tcmalloc/vendor/packages/rpm/ |
rpm.spec | 35 - Change build rule to use a configure line more like '%configure' 36 - Change install to use DESTDIR instead of prefix for configure
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
UnwrapRefactoring.java | 35 import org.eclipse.ltk.core.refactoring.Change; 170 protected @NonNull List<Change> computeChanges(IProgressMonitor monitor) { 178 List<Change> changes = new ArrayList<Change>(); 222 TextFileChange change = new TextFileChange(file.getName(), file); local 223 change.setEdit(rootEdit); 224 change.setTextType(EXT_XML); 225 changes.add(change);
|
ChangeViewRefactoring.java | 39 import org.eclipse.ltk.core.refactoring.Change; 148 return "Change Widget Type"; 156 protected @NonNull List<Change> computeChanges(IProgressMonitor monitor) { 160 List<Change> changes = new ArrayList<Change>(); 164 TextFileChange change = new TextFileChange(file.getName(), file); local 166 change.setEdit(rootEdit); 167 change.setTextType(EXT_XML); 168 changes.add(change); 191 // Change tag typ [all...] |
WrapInRefactoring.java | 43 import org.eclipse.ltk.core.refactoring.Change; 179 protected @NonNull List<Change> computeChanges(IProgressMonitor monitor) { 205 List<Change> changes = new ArrayList<Change>(); 209 TextFileChange change = new TextFileChange(file.getName(), file); local 211 change.setTextType(EXT_XML); 404 change.setEdit(rootEdit); 405 changes.add(change);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
NewTemplateWizardState.java | 41 import org.eclipse.ltk.core.refactoring.Change; 148 List<Change> computeChanges() { 164 List<Change> changes = getTemplateHandler().render(project, parameters); 171 public Change perform(IProgressMonitor pm) throws CoreException { 175 // Not undoable: just return null instead of an undo-change.
|
NewProjectWizard.java | 44 import org.eclipse.ltk.core.refactoring.Change; 257 protected List<Change> computeChanges() { 261 // (NOTE: After the change from direct file manipulation to creating a list of Change 263 // in case we want to generate change objects that makes backups of merged files) 312 List<Change> changes = computeChanges(); 317 changes.toArray(new Change[changes.size()])); 397 List<Change> changes = activityTemplate.render(project, parameters); 402 changes.toArray(new Change[changes.size()]));
|
CreateFileChange.java | 36 import org.eclipse.ltk.core.refactoring.Change; 45 /** Change which lazily copies a file */ 82 public Change perform(IProgressMonitor pm) throws CoreException {
|
NewActivityWizard.java | 31 import org.eclipse.ltk.core.refactoring.Change; 147 protected List<Change> computeChanges() {
|
/external/chromium/chrome/browser/resources/ |
bug_report.js | 127 // TODO(rkc): Change this to use a class instead. 160 * Change the type of screenshot we're showing to the user from 167 // Change the link to say "go to original" 175 * Change the type of screenshot we're showing to the user from 182 // Change the link to say "go to original"
|
/external/chromium_org/chrome/browser/spellchecker/ |
spellcheck_custom_dictionary_unittest.cc | 86 const SpellcheckCustomDictionary::Change& dictionary_change, 104 const SpellcheckCustomDictionary::Change& change) { 105 return dictionary.Apply(change); 165 // Counts the number of notifications for dictionary load and change. 177 const SpellcheckCustomDictionary::Change& change) OVERRIDE { changes_++; } 194 SpellcheckCustomDictionary::Change change; local 195 change.AddWord("bar") 309 SpellcheckCustomDictionary::Change change; local 356 SpellcheckCustomDictionary::Change change; local 471 SpellcheckCustomDictionary::Change change; local 517 SpellcheckCustomDictionary::Change change; local 560 SpellcheckCustomDictionary::Change change; local 612 SpellcheckCustomDictionary::Change change; local 663 SpellcheckCustomDictionary::Change change; local 709 SpellcheckCustomDictionary::Change change; local 1010 SpellcheckCustomDictionary::Change change; local 1052 SpellcheckCustomDictionary::Change change; local 1114 SpellcheckCustomDictionary::Change change; local [all...] |
spellcheck_service.h | 119 const SpellcheckCustomDictionary::Change& dictionary_change) OVERRIDE; 139 // Reacts to a change in user preferences on whether auto-spell-correct should 143 // Reacts to a change in user preference on which language should be used for
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
RefactoringTest.java | 35 import org.eclipse.ltk.core.refactoring.Change; 105 protected void checkEdits(String basename, List<Change> changes) throws BadLocationException, 115 for (Change change : changes) { 116 if (change instanceof TextFileChange) { 117 TextFileChange tf = (TextFileChange) change; 143 protected void checkEdits(List<Change> changes, 148 protected void checkEdits(List<Change> changes, 151 for (Change change : changes) [all...] |
ExtractStyleRefactoringTest.java | 26 import org.eclipse.ltk.core.refactoring.Change; 212 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor()); 224 for (Change change : changes) { 225 if (change instanceof TextFileChange) {
|
/external/grub/docs/ |
menu.lst | 80 # Change the colors. 81 title Change the colors
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/ |
RenameResourceProcessor.java | 29 import org.eclipse.ltk.core.refactoring.Change; 173 public Change createChange(IProgressMonitor pm) throws CoreException {
|
/external/llvm/lib/Support/ |
DAGDeltaAlgorithm.cpp | 125 /// ExecuteOneTest - Execute a single test predicate on the change set \p S. 210 change_ty Change = Worklist.back(); 213 std::set<change_ty> &ChangeSuccs = SuccClosure[Change]; 214 for (pred_iterator_ty it = pred_begin(Change), 215 ie = pred_end(Change); it != ie; ++it) { 216 SuccClosure[*it].insert(Change);
|
/external/llvm/lib/Transforms/Scalar/ |
TailRecursionElimination.cpp | 204 // Second pass, change any tail recursive calls to loops. 213 bool Change = ProcessReturningBlock(Ret, OldEntry, TailCallsAreMarkedTail, 215 if (!Change && BB->getFirstNonPHIOrDbg() == Ret) 216 Change = FoldReturnAndProcessPred(BB, Ret, OldEntry, 219 MadeChange |= Change; 628 bool Change = false; 653 Change = true; 657 return Change;
|
/external/chromium_org/third_party/leveldatabase/src/db/ |
skiplist_test.cc | 323 void Change(ReaderState s) { 340 state->Change(TestState::RUNNING); 345 state->Change(TestState::DONE);
|
/external/chromium_org/chrome/browser/ui/webui/options/ |
language_dictionary_overlay_handler.cc | 73 const SpellcheckCustomDictionary::Change& dictionary_change) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/ |
ExtractStringRefactoring.java | 66 import org.eclipse.ltk.core.refactoring.Change; 134 * <li> TODO: Have a pref in the wizard: [x] Change other XML Files 135 * <li> TODO: Have a pref in the wizard: [x] Change other Java Files 145 * change it by an XML id. The XML id may be a new one or an existing one. 200 private ArrayList<Change> mChanges; 269 * the source and propose to change it by an XML id. The XML id may be a new one 584 // under wst.sse.core.internal.provisional so we can expect it to change in 900 Change change = createXmlChanges((IFile) targetXml, mXmlStringId, mXmlStringValue, local [all...] |
/external/chromium_org/ui/keyboard/resources/ |
voice_input.js | 29 * Speech recognition started. Change microphone key's icon.
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/ |
antRun.bat | 23 rem Change drive and directory to %1
|
/frameworks/ex/variablespeed/jni/ |
Android.mk | 19 # TODO: Change module name to use underscores not hyphens.
|
/prebuilts/devtools/tools/ |
draw9patch.bat | 23 rem Change current directory and drive to where the script is, to avoid
|
jobb.bat | 23 rem Change current directory and drive to where the script is, to avoid
|