| /src/external/apache2/llvm/dist/clang/lib/Format/ |
| WhitespaceManager.cpp | 53 Changes.push_back(Change(Tok, /*CreateReplacement=*/true, Tok.WhitespaceRange, 63 Changes.push_back(Change(Tok, /*CreateReplacement=*/false, 82 Changes.push_back( 91 if (Changes.empty()) 94 llvm::sort(Changes, Change::IsBeforeInFile(SourceMgr)); 109 Changes[0].PreviousEndOfTokenColumn = 0; 110 Change *LastOutsideTokenChange = &Changes[0]; 111 for (unsigned i = 1, e = Changes.size(); i != e; ++i) { 113 Changes[i].OriginalWhitespaceRange.getBegin(); 115 Changes[i - 1].OriginalWhitespaceRange.getEnd() [all...] |
| WhitespaceManager.h | 90 /// Functor to sort changes in original source order. 122 // Changes might be in the middle of a token, so we cannot just keep the 181 /// \brief Align consecutive C/C++ preprocessor macros over all \c Changes. 184 /// Align consecutive assignments over all \c Changes. 187 /// Align consecutive bitfields over all \c Changes. 190 /// Align consecutive declarations over all \c Changes. 193 /// Align consecutive declarations over all \c Changes. 196 /// Align trailing comments over all \c Changes. 203 /// Align escaped newlines over all \c Changes. 210 /// Fill \c Replaces with the replacements for all effective changes [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| DeltaAlgorithm.cpp | 17 bool DeltaAlgorithm::GetTestResult(const changeset_ty &Changes) { 18 if (FailedTestsCache.count(Changes)) 21 bool Result = ExecuteOneTest(Changes); 23 FailedTestsCache.insert(Changes); 44 DeltaAlgorithm::Delta(const changeset_ty &Changes, 46 // Invariant: union(Res) == Changes 47 UpdatedSearchState(Changes, Sets); 51 return Changes; 55 if (Search(Changes, Sets, Res)) 64 return Changes; [all...] |
| DAGDeltaAlgorithm.cpp | 117 void UpdatedSearchState(const changeset_ty &Changes, 120 DDA.UpdatedSearchState(Changes, Sets, Required); 138 DAGDeltaAlgorithmImpl(DAGDeltaAlgorithm &DDA, const changeset_ty &Changes, 143 /// GetTestResult - Get the test result for the active set \p Changes with 144 /// \p Required changes from the cache, executing the test if necessary. 146 /// \param Changes - The set of active changes being minimized, which should 148 /// \param Required - The set of changes which have previously been 151 bool GetTestResult(const changeset_ty &Changes, const changeset_ty &Required); 154 /// Helper object for minimizing an active set of changes [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| DeltaAlgorithm.h | 28 /// (2) If the predicate returns true for a set of changes, it should return 47 /// GetTestResult - Get the test result for the \p Changes from the 50 /// \param Changes - The change set to test. 52 bool GetTestResult(const changeset_ty &Changes); 54 /// Split - Partition a set of changes \p S into one or two subsets. 57 /// Delta - Minimize a set of \p Changes which has been partitioned into 59 changeset_ty Delta(const changeset_ty &Changes, 63 /// removed from \p Changes while still satisfying the predicate. 65 /// \param Res - On success, a subset of Changes which satisfies the 68 bool Search(const changeset_ty &Changes, const changesetlist_ty &Sets [all...] |
| DAGDeltaAlgorithm.h | 26 /// The DAG should be used to represent dependencies in the changes which are 33 /// eagerly prune large subsets of changes. As with \see DeltaAlgorithm, the DAG 52 /// Run - Minimize the DAG formed by the \p Changes vertices and the 54 /// changes and returning the smallest set which still satisfies the test 57 /// \param Changes The list of changes. 59 /// \param Dependencies The list of dependencies amongst changes. For each 60 /// (x,y) in \p Dependencies, both x and y must be in \p Changes. The 64 changeset_ty Run(const changeset_ty &Changes, 67 /// UpdatedSearchState - Callback used when the search state changes [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/ |
| RefactoringActionRules.h | 48 /// form of atomic changes. 56 Expected<AtomicChanges> Changes = createSourceReplacements(Context); 57 if (!Changes) 58 Consumer.handleError(Changes.takeError()); 60 Consumer.handle(std::move(*Changes));
|
| AtomicChange.h | 10 // changes, e.g. replacements and header insertions. 76 /// applying changes. 154 // Defines specs for applying changes. 163 // Options for selectively formatting changes with clang-format: 172 /// Applies all AtomicChanges in \p Changes to the \p Code. 175 /// \p FilePath, i.e. callers are responsible for ensuring all changes are for 178 /// \returns The changed code if all changes are applied successfully; 184 llvm::ArrayRef<AtomicChange> Changes,
|
| /src/external/mit/expat/dist/lib/ |
| Makefile.am | 102 ../Changes 105 cd "$(DESTDIR)$(docdir)" && $(am__mv) Changes changelog
|
| /src/external/lgpl3/mpfr/dist/tools/ |
| ck-news | 34 my $r1 = qr/^Changes from version/;
|
| /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/ |
| AtomicChange.cpp | 145 llvm::ArrayRef<AtomicChange> Changes, 150 for (const auto &Change : Changes) { 180 // Combine replacements in all Changes as a `Replacements`. This ignores the 184 llvm::ArrayRef<AtomicChange> Changes) { 186 for (const auto &Change : Changes) 302 llvm::ArrayRef<AtomicChange> Changes, 305 createReplacementsForHeaders(FilePath, Code, Changes, Spec.Style); 308 "Failed to create replacements for header changes: " + 312 combineReplacementsInChanges(FilePath, Changes); 314 return make_string_error("Failed to combine replacements in all changes: " [all...] |
| /src/external/apache2/llvm/dist/clang/tools/clang-refactor/ |
| TestSupport.cpp | 69 void dumpChanges(const tooling::AtomicChanges &Changes, raw_ostream &OS) { 70 for (const auto &Change : Changes) 85 bool printRewrittenSources(const tooling::AtomicChanges &Changes, 88 for (const auto &Change : Changes) 100 Changes, Spec); 131 void handle(tooling::AtomicChanges Changes) override { 132 handleResult(std::move(Changes));
|
| ClangRefactor.cpp | 316 ClangRefactorConsumer(AtomicChanges &Changes) : SourceChanges(&Changes) {} 330 void handle(AtomicChanges Changes) override { 331 SourceChanges->insert(SourceChanges->begin(), Changes.begin(), 332 Changes.end()); 347 Consumer(new ClangRefactorConsumer(Changes)), HasFailed(false) { 476 // FIXME(ioeric): this seems to only works for changes in a single file at 480 for (const auto &Change : Changes) 494 Changes, Spec); 604 AtomicChanges Changes; [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Rename/ |
| RenamingAction.cpp | 148 std::vector<AtomicChange> Changes; 161 Changes.push_back(std::move(Change)); 163 return std::move(Changes);
|
| /src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
| ParsedAttr.h | 156 AvailabilityChange Changes[NumAvailabilitySlots]; 165 Changes[IntroducedSlot] = Introduced; 166 Changes[DeprecatedSlot] = Deprecated; 167 Changes[ObsoletedSlot] = Obsoleted; 493 return getAvailabilityData()->Changes[detail::IntroducedSlot]; 499 return getAvailabilityData()->Changes[detail::DeprecatedSlot]; 505 return getAvailabilityData()->Changes[detail::ObsoletedSlot];
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| CloneFunction.cpp | 86 CloneFunctionChangeType Changes, 98 bool ModuleLevelChanges = Changes > CloneFunctionChangeType::LocalChangesOnly; 143 if (Changes < CloneFunctionChangeType::DifferentModule) { 159 if (Changes == CloneFunctionChangeType::DifferentModule) { 197 if (Changes < CloneFunctionChangeType::DifferentModule && 199 // Turn on module-level changes, since we need to clone (some of) the 250 if (Changes != CloneFunctionChangeType::DifferentModule) 256 // FIXME: This is making global / module-level changes, which doesn't seem
|
| /src/external/mit/expat/dist/ |
| Makefile.am | 108 Changes \
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/ |
| Cloning.h | 140 /// If \p Changes is \a CloneFunctionChangeType::LocalChangesOnly, VMap is 144 /// If \p Changes is less than \a CloneFunctionChangeType::DifferentModule 147 /// cloned, effectively upgrading \p Changes to GlobalChanges while suppressing 150 /// If \p Changes is \a CloneFunctionChangeType::DifferentModule, the new 159 ValueToValueMapTy &VMap, CloneFunctionChangeType Changes, 206 /// changes it makes.
|
| /src/usr.bin/make/unit-tests/ |
| varname-dot-suffixes.mk | 46 # Changes to the suffixes list are reflected immediately.
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/ |
| PGOInstrumentation.cpp | 1353 bool Changes = true; 1355 while (Changes) { 1357 Changes = false; 1369 Changes = true; 1373 Changes = true; 1386 Changes = true; 1394 Changes = true;
|
| /src/external/apache2/llvm/dist/clang/lib/Parse/ |
| ParseDecl.cpp | 1033 AvailabilityChange Changes[Unknown]; 1114 if (Changes[Deprecated].KeywordLoc.isValid()) { 1117 << SourceRange(Changes[Deprecated].KeywordLoc); 1120 Changes[Deprecated].KeywordLoc = KeywordLoc; 1122 Changes[Deprecated].Version = VersionTuple(1); 1192 if (!Changes[Index].KeywordLoc.isInvalid()) { 1195 << SourceRange(Changes[Index].KeywordLoc, 1196 Changes[Index].VersionRange.getEnd()); 1199 Changes[Index].KeywordLoc = KeywordLoc; 1200 Changes[Index].Version = Version [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/ |
| ARMParallelDSP.cpp | 296 bool Changes = MatchSMLAD(F); 297 return Changes;
|
| /src/external/gpl3/gdb/dist/gdb/ |
| ChangeLog-3.x | 152 * valprint.c (val_print): Undo changes of Nov 11 & 16. 507 values.c, eval.c, valarith.c, valprint.c, valops.c: Merge changes 721 changes in comment. 807 * gdb.texinfo (GDB History): Document the two changes below. 896 * m-news.h, m-newsos3.h, news-dep.c: Merge additional changes 1221 Merge in Hikichi's changes for Sony/News-OS 3 support. 1326 enable_breakpoint, disable_breakpoint): #ifdef'd out changes 1333 * ns32k-opcode.h, ns32k-pinsn.c: Backed out changes of June 24th; 1356 message when the frame only changes implicitly. 1482 Changes by David Taylor at TMC [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/ |
| ChangeLog-3.x | 152 * valprint.c (val_print): Undo changes of Nov 11 & 16. 507 values.c, eval.c, valarith.c, valprint.c, valops.c: Merge changes 721 changes in comment. 807 * gdb.texinfo (GDB History): Document the two changes below. 896 * m-news.h, m-newsos3.h, news-dep.c: Merge additional changes 1221 Merge in Hikichi's changes for Sony/News-OS 3 support. 1326 enable_breakpoint, disable_breakpoint): #ifdef'd out changes 1333 * ns32k-opcode.h, ns32k-pinsn.c: Backed out changes of June 24th; 1356 message when the frame only changes implicitly. 1482 Changes by David Taylor at TMC [all...] |
| /src/external/apache2/llvm/dist/llvm/bindings/go/llvm/ |
| ir.go | 1928 // Changes the type of M so it can be passed to FunctionPassManagers and the
|