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

1 2 3 4 5 6 7 8

  /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;
  /external/chromium_org/mojo/services/view_manager/
test_change_tracker.h 48 struct Change {
49 Change();
50 ~Change();
69 const std::vector<Change>& changes);
72 // if change.size() != 1.
73 std::string ChangeViewDescription(const std::vector<Change>& changes);
80 // a delegate any time a change is added.
83 // Used to notify the delegate when a change is added. A change corresponds to
100 std::vector<Change>* changes() { return &changes_;
    [all...]
test_change_tracker.cc 32 std::string ChangeToDescription1(const Change& change) {
33 switch (change.type) {
36 change.creator_url.data());
41 ViewIdToString(change.view_id).c_str(),
42 RectToString(change.bounds).c_str(),
43 RectToString(change.bounds2).c_str());
48 ViewIdToString(change.view_id).c_str(),
49 ViewIdToString(change.view_id2).c_str(),
50 ViewIdToString(change.view_id3).c_str())
142 Change change; local
153 Change change; local
165 Change change; local
177 Change change; local
186 Change change; local
193 Change change; local
201 Change change; local
209 Change change; local
217 Change change; local
    [all...]
  /external/clang/lib/Format/
WhitespaceManager.h 85 /// \brief Represents a change before a token, a break inside a token,
87 struct Change {
92 bool operator()(const Change &C1, const Change &C2) const;
98 Change() {}
100 /// \brief Creates a \c Change.
102 /// The generated \c Change will replace the characters at
109 Change(bool CreateReplacement, const SourceRange &OriginalWhitespaceRange,
123 // The kind of the token whose whitespace this change replaces, or in which
124 // this change inserts whitespace
    [all...]
WhitespaceManager.cpp 21 bool WhitespaceManager::Change::IsBeforeInFile::
22 operator()(const Change &C1, const Change &C2) const {
28 WhitespaceManager::Change::Change(
53 Changes.push_back(Change(true, Tok.WhitespaceRange, IndentLevel, Spaces,
62 Changes.push_back(Change(false, Tok.WhitespaceRange, /*IndentLevel=*/0,
75 Changes.push_back(Change(
79 // If we don't add a newline this change doesn't start a comment. Thus,
80 // when we align line comments, we don't need to treat this change as one
    [all...]
  /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()]));
  /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/chromium_org/chrome/browser/chromeos/drive/
file_change.h 32 class Change {
34 Change(ChangeType change, FileType file_type);
43 ChangeType change() const { return change_; } function in class:drive::FileChange::Change
48 bool operator==(const Change& that) const {
49 return change() == that.change() && file_type() == that.file_type();
59 typedef std::deque<Change> List;
65 void Update(const Change& new_change);
71 const Change& front() const { return list_.front();
    [all...]
file_change_unittest.cc 15 FileChange::Change change1(change_type, file_type);
16 EXPECT_EQ(change_type, change1.change());
19 FileChange::Change change2(change_type, file_type);
20 EXPECT_EQ(change_type, change1.change());
24 FileChange::Change change3(change_type, FileChange::FILE_TYPE_DIRECTORY);
25 EXPECT_EQ(change_type, change3.change());
35 changes.Update(FileChange::Change(FileChange::ADD_OR_UPDATE,
file_change.cc 15 FileChange::Change::Change(ChangeType change, FileType file_type)
16 : change_(change), file_type_(file_type) {
19 std::string FileChange::Change::DebugString() const {
21 switch (change()) {
49 void FileChange::ChangeList::Update(const Change& new_change) {
55 Change& last = list_.back();
61 if (last.change() == new_change.change())
    [all...]
  /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()]));
  /sdk/files/proguard/bin/
proguard.bat 6 rem Change current directory and drive to where the script is, to avoid
  /external/chromium_org/v8/src/compiler/
simplified-operator-reducer.cc 64 return Change(node, machine()->ChangeInt32ToFloat64(),
68 return Change(node, machine()->ChangeUint32ToFloat64(),
77 return Change(node, machine()->ChangeFloat64ToInt32(),
87 return Change(node, machine()->ChangeFloat64ToUint32(),
105 Reduction SimplifiedOperatorReducer::Change(Node* node, const Operator* op,
simplified-operator-reducer.h 30 Reduction Change(Node* node, const Operator* op, Node* a);
  /external/clang/include/clang/Rewrite/Core/
Rewriter.h 112 void AddInsertDelta(unsigned OrigOffset, int Change) {
113 return Deltas.AddDelta(2*OrigOffset, Change);
118 void AddReplaceDelta(unsigned OrigOffset, int Change) {
119 return Deltas.AddDelta(2*OrigOffset+1, Change);
  /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...]

Completed in 1460 milliseconds

1 2 3 4 5 6 7 8