Searched refs:Change (Results 1 - 25 of 66) sorted by relevance

123

/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-mips-elf/
H A Dmode-change-error-1.d1 #name: Mode Change Error 1
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Rewrite/Core/
H A DRewriteBuffer.h104 void AddInsertDelta(unsigned OrigOffset, int Change) { argument
105 return Deltas.AddDelta(2*OrigOffset, Change);
110 void AddReplaceDelta(unsigned OrigOffset, int Change) { argument
111 return Deltas.AddDelta(2*OrigOffset+1, Change);
/netbsd-current/external/apache2/llvm/dist/clang/lib/Format/
H A DWhitespaceManager.h89 struct Change { struct in class:clang::format::WhitespaceManager
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,
154 // If this Change represents a continuation of a block comment,
155 // \c StartOfBlockComment is pointer to the first Change in the block
159 const Change *StartOfBlockComment;
225 SmallVector<Change, 1
[all...]
H A DWhitespaceManager.cpp20 bool WhitespaceManager::Change::IsBeforeInFile::operator()(
21 const Change &C1, const Change &C2) const {
27 WhitespaceManager::Change::Change(const FormatToken &Tok, function in class:clang::format::WhitespaceManager::Change
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 *LastOutsideTokenChang
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DSIModeRegister.cpp86 Status Change; member in class:BlockData
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);
273 } else if (!NewInfo->Change.isCompatible(InstrMode)) {
280 if (!IPChange.delta(NewInfo->Change)
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Tooling/Transformer/
H A DTransformer.h26 std::function<void(Expected<clang::tooling::AtomicChange> Change)>;
/netbsd-current/external/gpl3/gdb/dist/sim/testsuite/example-synacor/
H A Dmem.s16 # Change the first JMP to skip HALT and hit the pass.
/netbsd-current/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Rename/
H A DRenamingAction.cpp153 AtomicChange Change(SM, Ranges[0].getBegin());
156 Change.replace(SM, CharSourceRange::getCharRange(Range.value()),
161 Changes.push_back(std::move(Change));
223 Expected<std::vector<AtomicChange>> Change = local
225 if (!Change) {
227 << "'! " << llvm::toString(Change.takeError()) << "\n";
230 convertChangesToFileReplacements(*Change, &FileToReplaces);
/netbsd-current/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Extract/
H A DExtract.cpp150 AtomicChange Change(SM, ExtractedDeclLocation);
170 auto Err = Change.insert(SM, ExtractedDeclLocation, OS.str());
186 auto Err = Change.replace(
194 return AtomicChanges{std::move(Change)};
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Tooling/ASTDiff/
H A DASTDiff.h42 ChangeKind Change = None; member in struct:clang::diff::Node
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/
H A DDAGDeltaAlgorithm.cpp203 change_ty Change = Worklist.back(); local
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);
/netbsd-current/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/
H A DAtomicChange.cpp150 for (const auto &Change : Changes) {
151 for (llvm::StringRef Header : Change.getInsertedHeaders()) {
164 for (const std::string &Header : Change.getRemovedHeaders()) {
186 for (const auto &Change : Changes)
187 for (const auto &R : Change.getReplacements())
/netbsd-current/external/apache2/llvm/dist/clang/tools/clang-refactor/
H A DTestSupport.cpp70 for (const auto &Change : Changes)
71 OS << const_cast<tooling::AtomicChange &>(Change).toYAMLString() << "\n";
88 for (const auto &Change : Changes)
89 Files.insert(Change.getFilePath());
H A DClangRefactor.cpp480 for (const auto &Change : Changes)
481 Files.insert(Change.getFilePath());
/netbsd-current/external/apache2/llvm/dist/clang/tools/clang-diff/
H A DClangDiff.cpp301 if (Node.Change != diff::None)
302 OS << " class='" << getChangeKindAbbr(Node.Change) << "'";
415 switch (DstNode.Change) {
428 if (DstNode.Change == diff::Insert)
430 else if (DstNode.Change == diff::Move)
432 else if (DstNode.Change == diff::UpdateMove)
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A DChangeLog-3.x93 Change @ to $.
102 * valprint.c: Change it so "array-max 0" means there is
105 * expread.y (yylex): Change error message "invalid token in
204 * version.c: Change version to 3.4.xxx.
210 * version.c: Change version to 3.4.
313 * config.gdb: Change /dev/null to m-i386.h for various
330 * version.c: Change version number to 3.3.xxx.
334 * version.c: Change version number to 3.3.
338 * config.gdb (i386): Change /dev/null to m-i386.h
400 * remote-multi.shar (remote_utils.c, putpkt): Change csu
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A DChangeLog-3.x93 Change @ to $.
102 * valprint.c: Change it so "array-max 0" means there is
105 * expread.y (yylex): Change error message "invalid token in
204 * version.c: Change version to 3.4.xxx.
210 * version.c: Change version to 3.4.
313 * config.gdb: Change /dev/null to m-i386.h for various
330 * version.c: Change version number to 3.3.xxx.
334 * version.c: Change version number to 3.3.
338 * config.gdb (i386): Change /dev/null to m-i386.h
400 * remote-multi.shar (remote_utils.c, putpkt): Change csu
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/tools/msbuild/
H A Dinstall.bat10 REM Change to the directory of this batch file.
/netbsd-current/external/apache2/llvm/dist/clang/lib/Tooling/ASTDiff/
H A DASTDiff.cpp68 // Compute Change for each node based on similarity.
920 T1.getMutableNode(Id1).Change = Delete;
926 T2.getMutableNode(Id2).Change = Insert;
952 N1.Change = N2.Change = Move;
955 N1.Change = N2.Change = (N1.Change == Move ? UpdateMove : Update);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64A57FPLoadBalancing.cpp576 bool Change = TransformAll || getColor(MO.getReg()) != C; local
578 Change = false;
580 if (Change) {
/netbsd-current/usr.bin/make/unit-tests/
H A Dopt-jobs-no-action.mk18 # Change the templates for running the commands in jobs mode, to make it
/netbsd-current/external/gpl3/gdb.old/dist/zlib/os400/
H A Dzlib.inc353 D deflateParams PR 10I 0 extproc('deflateParams') Change level & strat
365 D deflateBound PR 10U 0 extproc('deflateBound') Change level & strat
369 D deflatePending PR 10I 0 extproc('deflatePending') Change level & strat
374 D deflatePrime PR 10I 0 extproc('deflatePrime') Change level & strat
/netbsd-current/external/gpl3/binutils.old/dist/zlib/os400/
H A Dzlib.inc353 D deflateParams PR 10I 0 extproc('deflateParams') Change level & strat
365 D deflateBound PR 10U 0 extproc('deflateBound') Change level & strat
369 D deflatePending PR 10I 0 extproc('deflatePending') Change level & strat
374 D deflatePrime PR 10I 0 extproc('deflatePrime') Change level & strat
/netbsd-current/common/dist/zlib/os400/
H A Dzlib.inc353 D deflateParams PR 10I 0 extproc('deflateParams') Change level & strat
365 D deflateBound PR 10U 0 extproc('deflateBound') Change level & strat
369 D deflatePending PR 10I 0 extproc('deflatePending') Change level & strat
374 D deflatePrime PR 10I 0 extproc('deflatePrime') Change level & strat
/netbsd-current/external/gpl3/binutils/dist/zlib/os400/
H A Dzlib.inc353 D deflateParams PR 10I 0 extproc('deflateParams') Change level & strat
365 D deflateBound PR 10U 0 extproc('deflateBound') Change level & strat
369 D deflatePending PR 10I 0 extproc('deflatePending') Change level & strat
374 D deflatePrime PR 10I 0 extproc('deflatePrime') Change level & strat

Completed in 618 milliseconds

123