HomeSort by relevance Sort by last modified time
    Searched refs:Change (Results 1 - 25 of 173) sorted by null

1 2 3 4 5 6 7

  /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.
178 SpellcheckCustomDictionary::Change::Change() {
181 SpellcheckCustomDictionary::Change::Change(
182 const SpellcheckCustomDictionary::Change& other)
187 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/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...]
  /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

Completed in 2057 milliseconds

1 2 3 4 5 6 7