OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Change
(Results
1 - 25
of
69
) sorted by relevancy
1
2
3
/src/external/apache2/llvm/dist/clang/include/clang/Rewrite/Core/
RewriteBuffer.h
104
void AddInsertDelta(unsigned OrigOffset, int
Change
) {
105
return Deltas.AddDelta(2*OrigOffset,
Change
);
110
void AddReplaceDelta(unsigned OrigOffset, int
Change
) {
111
return Deltas.AddDelta(2*OrigOffset+1,
Change
);
/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/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/clang/include/clang/Tooling/Transformer/
Transformer.h
26
std::function<void(Expected<clang::tooling::AtomicChange>
Change
)>;
/src/external/gpl3/gdb/dist/sim/testsuite/example-synacor/
mem.s
16
#
Change
the first JMP to skip HALT and hit the pass.
/src/external/gpl3/gdb.old/dist/sim/testsuite/example-synacor/
mem.s
16
#
Change
the first JMP to skip HALT and hit the pass.
/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/usr.sbin/sysinst/arch/atari/
msg.md.en
57
partitions to NetBSD before NetBSD is able to use the disk.
Change
the 'id'
58
of all partitions you want to use for NetBSD file systems to 'NBD'.
Change
/src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Extract/
Extract.cpp
150
AtomicChange
Change
(SM, ExtractedDeclLocation);
170
auto Err =
Change
.insert(SM, ExtractedDeclLocation, OS.str());
186
auto Err =
Change
.replace(
194
return AtomicChanges{std::move(
Change
)};
/src/external/apache2/llvm/dist/clang/include/clang/Tooling/ASTDiff/
ASTDiff.h
42
ChangeKind
Change
= None;
/src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/
AtomicChange.cpp
150
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())
/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/clang/tools/clang-diff/
ClangDiff.cpp
301
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)
/src/external/apache2/llvm/dist/clang/tools/clang-refactor/
TestSupport.cpp
70
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());
ClangRefactor.cpp
480
for (const auto &
Change
: Changes)
481
Files.insert(
Change
.getFilePath());
/src/external/gpl3/gdb/dist/gdb/
ChangeLog-3.x
93
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
csum to unsigned
[
all
...]
/src/external/gpl3/gdb.old/dist/gdb/
ChangeLog-3.x
93
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
csum to unsigned
[
all
...]
/src/external/apache2/llvm/dist/llvm/tools/msbuild/
install.bat
10
REM
Change
to the directory of this batch file.
/src/external/apache2/llvm/dist/clang/lib/Tooling/ASTDiff/
ASTDiff.cpp
68
// 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);
/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/usr.bin/make/unit-tests/
opt-jobs-no-action.mk
18
#
Change
the templates for running the commands in jobs mode, to make it
/src/external/gpl3/binutils/dist/zlib/os400/
zlib.inc
353
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
/src/external/gpl3/binutils.old/dist/zlib/os400/
zlib.inc
353
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
/src/external/gpl3/gdb.old/dist/zlib/os400/
zlib.inc
353
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 58 milliseconds
1
2
3
Indexes created Wed Sep 23 00:26:21 UTC 2026