HomeSort by relevance Sort by last modified time
    Searched defs:Change (Results 1 - 19 of 19) sorted by null

  /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/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,
  /external/chromium_org/mojo/services/view_manager/
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...]
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...]
  /external/chromium_org/chrome/browser/chromeos/drive/
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...]
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...]
  /external/chromium_org/ppapi/generators/
idl_diff.py 28 # Change
30 # A Change object contains the previous lines, new news and change type.
32 class Change(object):
55 # Return True if this change is only a one line change in the copyright notice
58 def IsCopyright(change):
59 if len(change.now) != 1 or len(change.was) != 1: return False
60 if 'Copyright (c)' not in change.now[0]: return Fals
    [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...]
  /external/llvm/lib/Support/
DAGDeltaAlgorithm.cpp 127 /// ExecuteOneTest - Execute a single test predicate on the change set \p S.
212 change_ty Change = Worklist.back();
215 std::set<change_ty> &ChangeSuccs = SuccClosure[Change];
216 for (pred_iterator_ty it = pred_begin(Change),
217 ie = pred_end(Change); it != ie; ++it) {
218 SuccClosure[*it].insert(Change);
  /external/chromium_org/mojo/services/public/cpp/view_manager/tests/
view_unittest.cc 329 struct Change {
334 typedef std::vector<Change> Changes;
360 Change change; variable
361 change.view = view;
362 change.relative_view = relative_view;
363 change.direction = direction;
364 changes_.push_back(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/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/llvm/lib/Target/AArch64/
AArch64A57FPLoadBalancing.cpp 15 // adversely affect this load balancing and to change the registers used so as
165 /// killed with no intervening uses, we can safely change its register.
168 /// beyond our model and either must not change its register or must
181 /// we cannot change LastInst's outgoing register.
429 // chains that we cannot change before we look at those we can,
431 // change them to!
546 // Only change the def if this isn't the last instruction.
550 bool Change = TransformAll || getColor(MO.getReg()) != C;
552 Change = false;
554 if (Change) {
    [all...]
  /external/llvm/lib/Transforms/Scalar/
TailRecursionElimination.cpp 399 // Change any tail recursive calls to loops.
407 bool Change = ProcessReturningBlock(Ret, OldEntry, TailCallsAreMarkedTail,
409 if (!Change && BB->getFirstNonPHIOrDbg() == Ret)
410 Change = FoldReturnAndProcessPred(BB, Ret, OldEntry,
413 MadeChange |= Change;
803 bool Change = false;
    [all...]
  /external/llvm/lib/CodeGen/
IfConversion.cpp 314 bool Change = false;
399 Change |= RetVal;
407 if (!Change)
409 MadeChange |= Change;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.pde.api.tools_1.0.202.v20100820_r361.jar 
org.eclipse.jface_3.6.1.M20100825-0800.jar 

Completed in 6346 milliseconds