/external/chromium_org/chrome/browser/spellchecker/ |
spellcheck_custom_dictionary.h | 30 // A change to the dictionary. 31 class Change { 33 Change(); 34 Change(const Change& other); 35 explicit Change(const chrome::spellcheck_common::WordList& to_add); 36 ~Change(); 38 // Adds |word| in this change. 41 // Removes |word| in this change. 44 // Prepares this change to be applied to |words| by removing duplicate an [all...] |
spellcheck_custom_dictionary.cc | 43 // The change is valid and can be applied as-is. 46 // The change contained words to be added that are not valid. 49 // The change contained words to be added that are already in the dictionary. 52 // The change contained words to be removed that are not in the dictionary. 173 SpellcheckCustomDictionary::Change::Change() { 176 SpellcheckCustomDictionary::Change::Change( 177 const SpellcheckCustomDictionary::Change& other) 182 SpellcheckCustomDictionary::Change::Change(const WordList& to_add [all...] |
/external/chromium_org/chrome/browser/sync/test/integration/ |
dictionary_load_observer.cc | 19 const SpellcheckCustomDictionary::Change& dictionary_change) {
|
dictionary_load_observer.h | 22 const SpellcheckCustomDictionary::Change& dictionary_change) OVERRIDE;
|
dictionary_helper.cc | 26 SpellcheckCustomDictionary::Change& change) { 27 int result = change.Sanitize(dictionary->GetWords()); 28 dictionary->Apply(change); 29 dictionary->Notify(change); 30 dictionary->Sync(change); 107 SpellcheckCustomDictionary::Change dictionary_change; 119 SpellcheckCustomDictionary::Change dictionary_change;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
TemplatePreviewPage.java | 18 import org.eclipse.ltk.core.refactoring.Change; 38 List<Change> changes = mValues.computeChanges(); 40 changes.toArray(new Change[changes.size()]));
|
TemplateWizard.java | 36 import org.eclipse.ltk.core.refactoring.Change; 152 protected abstract List<Change> computeChanges(); 155 List<Change> changes = computeChanges(); 160 changes.toArray(new Change[changes.size()]));
|
/external/clang/lib/Format/ |
WhitespaceManager.h | 73 /// \brief Represents a change before a token, a break inside a token, 75 struct Change { 80 bool operator()(const Change &C1, const Change &C2) const; 86 Change() {} 88 /// \brief Creates a \c Change. 90 /// The generated \c Change will replace the characters at 97 Change(bool CreateReplacement, const SourceRange &OriginalWhitespaceRange, 111 // The kind of the token whose whitespace this change replaces, or in which 112 // this change inserts whitespace [all...] |
WhitespaceManager.cpp | 22 WhitespaceManager::Change::IsBeforeInFile::operator()(const Change &C1, 23 const Change &C2) const { 29 WhitespaceManager::Change::Change( 45 Changes.push_back(Change(true, Tok.WhitespaceRange, Spaces, 53 Change(false, Tok.WhitespaceRange, /*Spaces=*/0, 63 Changes.push_back(Change( 68 // If we don't add a newline this change doesn't start a comment. Thus, 69 // when we align line comments, we don't need to treat this change as one [all...] |
/development/samples/SpellChecker/HelloSpellChecker/ |
Android.mk | 8 # TODO: Change sdk version to 16
|
/development/samples/SpellChecker/SampleSpellCheckerService/ |
Android.mk | 8 # TODO: Change sdk version to 16
|
/external/ppp/pppd/plugins/radius/etc/ |
dictionary.microsoft | 32 ATTRIBUTE MS-ARAP-PW-Change-Reason 21 integer Microsoft 60 # MS-ARAP-Password-Change-Reason Values 62 VALUE MS-ARAP-PW-Change-Reason Just-Change-Password 1 63 VALUE MS-ARAP-PW-Change-Reason Expired-Password 2 64 VALUE MS-ARAP-PW-Change-Reason Admin-Requires-Password-Change 3 65 VALUE MS-ARAP-PW-Change-Reason Password-Too-Short 4
|
/external/chromium_org/chrome/browser/ui/webui/options/ |
language_dictionary_overlay_handler.h | 29 const SpellcheckCustomDictionary::Change& dictionary_change) OVERRIDE;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
ChangeViewRefactoringTest.java | 22 import org.eclipse.ltk.core.refactoring.Change; 56 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor());
|
UnwrapRefactoringTest.java | 20 import org.eclipse.ltk.core.refactoring.Change; 55 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor());
|
WrapInRefactoringTest.java | 23 import org.eclipse.ltk.core.refactoring.Change; 56 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor());
|
UseCompoundDrawableRefactoringTest.java | 24 import org.eclipse.ltk.core.refactoring.Change; 105 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor()); 108 changes.toArray(new Change[changes.size()]));
|
ExtractIncludeRefactoringTest.java | 27 import org.eclipse.ltk.core.refactoring.Change; 147 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor()); 163 for (Change change : changes) { 164 if (change instanceof TextFileChange) {
|
ChangeLayoutRefactoringTest.java | 26 import org.eclipse.ltk.core.refactoring.Change; 133 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor());
|
/sdk/files/proguard/bin/ |
proguard.bat | 6 rem Change current directory and drive to where the script is, to avoid
|
proguardgui.bat | 6 rem Change current directory and drive to where the script is, to avoid
|
retrace.bat | 6 rem Change current directory and drive to where the script is, to avoid
|
/external/chromium_org/ui/message_center/ |
message_center_impl.cc | 44 // Change represents an operation made on a notification. Since it contains 45 // the final state of the notification, we only keep the last change for a 50 class Change { 52 Change(ChangeType type, 55 ~Change(); 79 DISALLOW_COPY_AND_ASSIGN(Change); 90 // Causes a TYPE_ADD change to be added to the queue. 93 // Causes a TYPE_UPDATE change to be added to the queue. 97 // Causes a TYPE_DELETE change to be added to the queue. 105 // Returns a Change that can be modified by the caller. ChangeQueue retain [all...] |
/external/clang/include/clang/Rewrite/Core/ |
Rewriter.h | 114 void AddInsertDelta(unsigned OrigOffset, int Change) { 115 return Deltas.AddDelta(2*OrigOffset, Change); 120 void AddReplaceDelta(unsigned OrigOffset, int Change) { 121 return Deltas.AddDelta(2*OrigOffset+1, Change);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/refactorings/core/ |
RefactoringTestBase.java | 35 import org.eclipse.ltk.core.refactoring.Change; 84 Change change = refactoring.createChange(new NullProgressMonitor()); local 85 assertNotNull(change); 86 String explanation = "CHANGES:\n-------\n" + describe(change); 120 public static String describe(Change change) throws Exception { 122 describe(sb, change, 0); 135 protected static void describe(StringBuilder sb, Change change, int indent) throws Exception [all...] |