HomeSort by relevance Sort by last modified time
    Searched refs:arcmt (Results 1 - 25 of 27) sorted by null

1 2

  /external/clang/tools/
Makefile 11 DIRS := driver libclang c-index-test arcmt-test c-arcmt-test diagtool
16 DIRS := $(filter-out libclang c-index-test, arcmt-test, $(DIRS))
  /external/clang/lib/ARCMigrate/
ARCMTActions.cpp 11 #include "clang/ARCMigrate/ARCMT.h"
15 using namespace arcmt;
18 if (arcmt::checkForManualIssues(CI.getInvocation(), getCurrentFile(),
23 // We only want to see warnings reported from arcmt::checkForManualIssues.
32 return !arcmt::applyTransformations(CI.getInvocation(),
41 if (arcmt::migrateWithTemporaryFiles(CI.getInvocation(),
TransUnusedInitDelegate.cpp 28 using namespace arcmt;
TransARCAssign.cpp 29 using namespace arcmt;
Transforms.h 23 namespace arcmt { namespace in namespace:clang
97 } // end namespace arcmt
ARCMT.cpp 1 //===--- ARCMT.cpp - Migration to ARC mode --------------------------------===//
23 using namespace arcmt;
101 if (arcmt::isARCDiagnostic(Info.getID(), Diags) ||
221 bool arcmt::checkForManualIssues(CompilerInvocation &origCI,
229 std::vector<TransformFn> transforms = arcmt::getAllTransformations();
321 if (arcmt::checkForManualIssues(CInvokForCheck, Filename, Kind, DiagClient,
331 std::vector<TransformFn> transforms = arcmt::getAllTransformations();
354 bool arcmt::applyTransformations(CompilerInvocation &origCI,
361 bool arcmt::migrateWithTemporaryFiles(CompilerInvocation &origCI,
372 bool arcmt::getFileRemappings(std::vector<std::pair<std::string,std::string> >
    [all...]
TransAPIUses.cpp 25 using namespace arcmt;
TransBlockObjCVariable.cpp 33 using namespace arcmt;
Transforms.cpp 24 using namespace arcmt;
308 std::vector<TransformFn> arcmt::getAllTransformations() {
Internals.h 13 #include "clang/ARCMigrate/ARCMT.h"
20 namespace arcmt { namespace in namespace:clang
155 } // end namespace arcmt
PlistReporter.cpp 15 using namespace arcmt;
94 void arcmt::writeARCDiagsToPlist(const std::string &outPath,
TransRetainReleaseDealloc.cpp 26 using namespace arcmt;
TransZeroOutPropsInDealloc.cpp 20 using namespace arcmt;
TransEmptyStatementsAndDealloc.cpp 28 using namespace arcmt;
TransUnbridgedCasts.cpp 43 using namespace arcmt;
FileRemapper.cpp 20 using namespace arcmt;
TransAutoreleasePool.cpp 37 using namespace arcmt;
  /external/clang/include/clang/ARCMigrate/
ARCMTActions.h 17 namespace arcmt { namespace in namespace:clang
ARCMT.h 1 //===-- ARCMT.h - ARC Migration Rewriter ------------------------*- C++ -*-===//
20 namespace arcmt { namespace in namespace:clang
108 } // end namespace arcmt
FileRemapper.h 29 namespace arcmt { namespace in namespace:clang
73 } // end namespace arcmt
  /external/clang/tools/arcmt-test/
Makefile 1 ##===- tools/arcmt-test/Makefile ---------------------------*- Makefile -*-===##
11 TOOLNAME = arcmt-test
arcmt-test.cpp 1 //===-- arcmt-test.cpp - ARC Migration Tool testbed -----------------------===//
10 #include "clang/ARCMigrate/ARCMT.h"
22 using namespace arcmt;
45 "c-arcmt-test) and compare their contents with the filenames "
51 "c-arcmt-test)"));
57 "\nusage with compiler args: arcmt-test [options] --args [compiler flags]\n");
131 arcmt::checkForManualIssues(CI,
175 std::vector<TransformFn> transforms = arcmt::getAllTransformations();
354 llvm::cl::ParseCommandLineOptions(optargc, const_cast<char **>(argv), "arcmt-test");
  /external/clang/tools/c-arcmt-test/
Makefile 1 ##===- tools/c-arcmt-test/Makefile -------------------------*- Makefile -*-===##
11 TOOLNAME = c-arcmt-test
  /external/clang/tools/libclang/
ARCMigrate.cpp 17 #include "clang/ARCMigrate/ARCMT.h"
22 using namespace arcmt;
61 bool err = arcmt::getFileRemappings(remap->Vec, migrate_dir_path,&diagBuffer);
  /external/clang/lib/FrontendTool/
ExecuteCompilerInvocation.cpp 97 Act = new arcmt::CheckAction(Act);
100 Act = new arcmt::ModifyAction(Act);
103 Act = new arcmt::MigrateAction(Act,

Completed in 534 milliseconds

1 2