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

  /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));
  /src/external/apache2/llvm/dist/clang/lib/Format/
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/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/tools/clang-refactor/
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/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/Target/ARM/
ARMParallelDSP.cpp 296 bool Changes = MatchSMLAD(F);
297 return Changes;
  /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...]

Completed in 65 milliseconds