Home
last modified time | relevance | path

Searched refs:fixit (Results 1 – 25 of 34) sorted by relevance

12

/external/v8/tools/clang/scripts/
Dapply_fixits.py66 for fixit in v:
67 if fixit.start_line != fixit.end_line:
69 k, fixit)
71 if fixit == last_fixit:
73 last_fixit = fixit
76 line = lines[fixit.start_line - 1]
77 lines[fixit.start_line - 1] = (line[:-fixit.start_col - 1] + fixit.text
78 + line[-fixit.end_col - 1:])
/external/e2fsprogs/e2fsck/
Dpass5.c322 int fixit, had_problem; in check_block_bitmaps() local
504 fixit = end_problem_latch(ctx, PR_LATCH_BBITMAP); in check_block_bitmaps()
506 fixit = -1; in check_block_bitmaps()
509 if (fixit == 1) { in check_block_bitmaps()
527 } else if (fixit == 0) in check_block_bitmaps()
576 int fixit, had_problem; in check_inode_bitmaps() local
768 fixit = end_problem_latch(ctx, PR_LATCH_IBITMAP); in check_inode_bitmaps()
770 fixit = -1; in check_inode_bitmaps()
773 if (fixit == 1) { in check_inode_bitmaps()
793 } else if (fixit == 0) in check_inode_bitmaps()
/external/clang/test/FixIt/
Dfixit-static-object-decl.m3 // RUN: not %clang_cc1 -fixit -x objective-c %t
8 // RUN: not %clang_cc1 -fixit -x objective-c++ %t -std=c++11
Dfixit-missing-method-return-type.m3 // RUN: %clang_cc1 -Wmissing-method-return-type -fixit -x objective-c -Wno-objc-root-class %t
8 // RUN: %clang_cc1 -Wmissing-method-return-type -fixit -x objective-c++ -Wno-objc-root-class %t
Dfixit-objc-message.m3 // RUN: not %clang_cc1 -pedantic -Wall -fixit -x objective-c %t
8 // RUN: not %clang_cc1 -pedantic -Wall -fixit -x objective-c++ %t
Dauto-fixit.m2 RUN: %clang_cc1 -x objective-c -fixit %t
Dfixit-objc.m3 // RUN: not %clang_cc1 -pedantic -fixit -x objective-c %t
8 warnings will be fixed by -fixit, and the resulting file should
Dmultiarg-selector-fixit.m2 // RUN: %clang_cc1 -x objective-c -fixit %t
Dfixit-missing-self-in-block.m2 // RUN: %clang_cc1 -x objective-c -fobjc-arc -fblocks -fixit %t
Dfixit-multiple-selector-warnings.m2 RUN: %clang_cc1 -x objective-c -Wselector-type-mismatch -fixit %t
Dproperty-access-fixit.m2 // RUN: %clang_cc1 -x objective-c -fixit %t
Dselector-fixit.m2 // RUN: %clang_cc1 -x objective-c -Wundeclared-selector -fixit %t
Dfixit-objc-arc.m3 // RUN: not %clang_cc1 -pedantic -fobjc-arc -fixit -x objective-c %t
Dauto-isa-fixit.m2 // RUN: %clang_cc1 -x objective-c -fixit %t
Dobjc-literals.m3 // RUN: not %clang_cc1 -fsyntax-only -fixit -x objective-c %t
Dformat-no-fixit.m19 // This is okay, but we won't suggest a fixit; arbitrary structure pointers may
/external/clang/unittests/Tooling/
DFixItTest.cpp16 using tooling::fixit::getText;
17 using tooling::fixit::createRemoval;
18 using tooling::fixit::createReplacement;
/external/clang/lib/Tooling/
DFixIt.cpp19 namespace fixit { namespace
/external/clang/test/Parser/
Dwarn-semicolon-before-method-body.m5 // warn about it and suggest a fixit.
/external/clang/include/clang/Tooling/
DFixIt.h27 namespace fixit {
/external/clang/test/SemaObjC/
Dcocoa-api-usage.m4 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-arc %t.m -fixit -Wobjc-cocoa-api
Dcocoa-api-usage.m.fixed4 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-arc %t.m -fixit -Wobjc-cocoa-api
/external/clang/docs/
DClangTools.rst80 an IDE or editor. Furthermore, it can be used in fixit-mode to directly apply
81 fixit-hints offered by clang. See :doc:`HowToSetupToolingForLLVM` for
DTooling.rst93 * Automatic fixing of compile errors (:program:`clang-fixit`)
/external/clang/include/clang/Basic/
DDiagnosticOptions.def54 DIAGOPT(ShowFixits, 1, 1) /// Show fixit information.

12