HomeSort by: relevance | last modified time | path
    Searched defs:Change (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/ASTDiff/
ASTDiff.h 42 ChangeKind Change = None;
  /src/external/apache2/llvm/dist/clang/lib/Format/
WhitespaceManager.h 87 /// Represents a change before a token, a break inside a token,
89 struct Change {
94 bool operator()(const Change &C1, const Change &C2) const;
100 /// Creates a \c Change.
102 /// The generated \c Change will replace the characters at
109 Change(const FormatToken &Tok, bool CreateReplacement,
115 // The kind of the token whose whitespace this change replaces, or in which
116 // this change inserts whitespace.
139 // If this change is inside of a token but not at the start of the token o
    [all...]
WhitespaceManager.cpp 20 bool WhitespaceManager::Change::IsBeforeInFile::operator()(
21 const Change &C1, const Change &C2) const {
27 WhitespaceManager::Change::Change(const FormatToken &Tok,
53 Changes.push_back(Change(Tok, /*CreateReplacement=*/true, Tok.WhitespaceRange,
63 Changes.push_back(Change(Tok, /*CreateReplacement=*/false,
83 Change(Tok, /*CreateReplacement=*/true,
94 llvm::sort(Changes, Change::IsBeforeInFile(SourceMgr));
110 Change *LastOutsideTokenChange = &Changes[0]
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Rename/
RenamingAction.cpp 153 AtomicChange Change(SM, Ranges[0].getBegin());
156 Change.replace(SM, CharSourceRange::getCharRange(Range.value()),
161 Changes.push_back(std::move(Change));
166 /// Takes each atomic change and inserts its replacements into the set of
223 Expected<std::vector<AtomicChange>> Change =
225 if (!Change) {
227 << "'! " << llvm::toString(Change.takeError()) << "\n";
230 convertChangesToFileReplacements(*Change, &FileToReplaces);
  /src/external/apache2/llvm/dist/llvm/lib/Support/
DAGDeltaAlgorithm.cpp 123 /// ExecuteOneTest - Execute a single test predicate on the change set \p S.
203 change_ty Change = Worklist.back();
206 std::set<change_ty> &ChangeSuccs = SuccClosure[Change];
207 for (pred_iterator_ty it = pred_begin(Change),
208 ie = pred_end(Change); it != ie; ++it) {
209 SuccClosure[*it].insert(Change);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIModeRegister.cpp 60 // produce the delta required to change the Mode to the required Mode
86 Status Change;
97 // which is used in Phase 3 if we need to insert a mode change.
181 // It is possible (though unlikely) for an instruction to require a change to
205 // - update the Change status, which tracks the changes to the Mode register
220 // - on exit we have set the Require, Change, and initial Exit modes.
255 insertSetreg(MBB, InsertionPoint, TII, IPChange.delta(NewInfo->Change));
269 NewInfo->Change = NewInfo->Change.merge(Setreg);
271 NewInfo->Change = NewInfo->Change.mergeUnknown(Mask)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64A57FPLoadBalancing.cpp 14 // adversely affect this load balancing and to change the registers used so as
179 /// killed with no intervening uses, we can safely change its register.
182 /// beyond our model and either must not change its register or must
195 /// we cannot change LastInst's outgoing register.
449 // chains that we cannot change before we look at those we can,
451 // change them to!
572 // Only change the def if this isn't the last instruction.
576 bool Change = TransformAll || getColor(MO.getReg()) != C;
578 Change = false;
580 if (Change) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
IfConversion.cpp 488 bool Change = false;
587 Change |= RetVal;
595 if (!Change)
597 MadeChange |= Change;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
AttributorAttributes.cpp 414 /// information in \p R and indicate/return if \p S did change (as-in update is
1068 // The flag to indicate a change.
2166 /// "Change" here means that their size changes.
3129 // Flag to determine if we can change an invoke to a call assuming the
3278 // First, determine if we can change an invoke to a call assuming the
3347 ChangeStatus Change = ChangeStatus::UNCHANGED;
3368 Change = ChangeStatus::CHANGED;
3404 Change = ChangeStatus::CHANGED;
3443 return Change;
3556 ChangeStatus Change = AADereferenceable::manifest(A)
    [all...]

Completed in 30 milliseconds