Searched refs:fixit (Results 1 – 25 of 34) sorted by relevance
12
/external/v8/tools/clang/scripts/ |
D | apply_fixits.py | 66 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/ |
D | pass5.c | 322 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/ |
D | fixit-static-object-decl.m | 3 // RUN: not %clang_cc1 -fixit -x objective-c %t 8 // RUN: not %clang_cc1 -fixit -x objective-c++ %t -std=c++11
|
D | fixit-missing-method-return-type.m | 3 // 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
|
D | fixit-objc-message.m | 3 // RUN: not %clang_cc1 -pedantic -Wall -fixit -x objective-c %t 8 // RUN: not %clang_cc1 -pedantic -Wall -fixit -x objective-c++ %t
|
D | auto-fixit.m | 2 RUN: %clang_cc1 -x objective-c -fixit %t
|
D | fixit-objc.m | 3 // RUN: not %clang_cc1 -pedantic -fixit -x objective-c %t 8 warnings will be fixed by -fixit, and the resulting file should
|
D | multiarg-selector-fixit.m | 2 // RUN: %clang_cc1 -x objective-c -fixit %t
|
D | fixit-missing-self-in-block.m | 2 // RUN: %clang_cc1 -x objective-c -fobjc-arc -fblocks -fixit %t
|
D | fixit-multiple-selector-warnings.m | 2 RUN: %clang_cc1 -x objective-c -Wselector-type-mismatch -fixit %t
|
D | property-access-fixit.m | 2 // RUN: %clang_cc1 -x objective-c -fixit %t
|
D | selector-fixit.m | 2 // RUN: %clang_cc1 -x objective-c -Wundeclared-selector -fixit %t
|
D | fixit-objc-arc.m | 3 // RUN: not %clang_cc1 -pedantic -fobjc-arc -fixit -x objective-c %t
|
D | auto-isa-fixit.m | 2 // RUN: %clang_cc1 -x objective-c -fixit %t
|
D | objc-literals.m | 3 // RUN: not %clang_cc1 -fsyntax-only -fixit -x objective-c %t
|
D | format-no-fixit.m | 19 // This is okay, but we won't suggest a fixit; arbitrary structure pointers may
|
/external/clang/unittests/Tooling/ |
D | FixItTest.cpp | 16 using tooling::fixit::getText; 17 using tooling::fixit::createRemoval; 18 using tooling::fixit::createReplacement;
|
/external/clang/lib/Tooling/ |
D | FixIt.cpp | 19 namespace fixit { namespace
|
/external/clang/test/Parser/ |
D | warn-semicolon-before-method-body.m | 5 // warn about it and suggest a fixit.
|
/external/clang/include/clang/Tooling/ |
D | FixIt.h | 27 namespace fixit {
|
/external/clang/test/SemaObjC/ |
D | cocoa-api-usage.m | 4 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-arc %t.m -fixit -Wobjc-cocoa-api
|
D | cocoa-api-usage.m.fixed | 4 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-arc %t.m -fixit -Wobjc-cocoa-api
|
/external/clang/docs/ |
D | ClangTools.rst | 80 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
|
D | Tooling.rst | 93 * Automatic fixing of compile errors (:program:`clang-fixit`)
|
/external/clang/include/clang/Basic/ |
D | DiagnosticOptions.def | 54 DIAGOPT(ShowFixits, 1, 1) /// Show fixit information.
|
12