OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:fixits
(Results
26 - 50
of
101
) sorted by null
1
2
3
4
5
/external/clang/test/Misc/
serialized-diags.c
11
// Test handling of
FixIts
that only remove text.
28
// Test handling of warnings that have empty
fixits
.
39
//
FIXITs
at different levels (one at the note, another at the main diagnostic).
63
// CHECK: Number
FIXITs
= 0
65
// CHECK: Number
FIXITs
= 0
/external/clang/include/clang/Sema/
SemaFixItUtils.h
1
//===--- SemaFixItUtils.h - Sema
FixIts
-----------------------------------===//
30
/// The class facilities generation and storage of conversion
FixIts
. Hints for
45
/// of the Hints vector since we allow multiple
FixIts
per conversion.
/external/clang/test/FixIt/
fixit-function-call.cpp
1
// RUN: not %clang_cc1 -fdiagnostics-parseable-
fixits
-x c++ %s 2> %t
6
/* Test
fixits
for * and & mismatch in function arguments.
7
* Since
fixits
are on the notes, they cannot be applied automatically. */
fixit-class-method-messaging.m
2
// RUN: %clang_cc1 -fdiagnostics-parseable-
fixits
%s 2>&1 | FileCheck %s
fixit-uninit.c
2
// RUN: %clang_cc1 -fsyntax-only -Wuninitialized -fdiagnostics-parseable-
fixits
%s 2>&1 | FileCheck %s
fixit-vexing-parse-cxx0x.cpp
2
// RUN: %clang_cc1 -fdiagnostics-parseable-
fixits
-x c++ -std=c++11 %s 2>&1 | FileCheck %s
format-no-fixit.m
2
// RUN: %clang_cc1 -fdiagnostics-parseable-
fixits
-fsyntax-only %s 2>&1 | FileCheck %s
format.mm
2
// RUN: %clang_cc1 -fdiagnostics-parseable-
fixits
-fblocks %s 2>&1 | FileCheck %s
typo.c
2
// RUN: not %clang_cc1 -fsyntax-only -fdiagnostics-parseable-
fixits
%s 2>&1 | FileCheck %s
/external/clang/test/Sema/
warn-main-return-type.c
2
// RUN: not %clang_cc1 -fsyntax-only -fdiagnostics-parseable-
fixits
%s 2>&1 | FileCheck %s
3
// RUN: not %clang_cc1 -fsyntax-only -fdiagnostics-parseable-
fixits
-x c++ %s 2>&1 | FileCheck %s
warn-missing-prototypes.c
2
// RUN: %clang_cc1 -fsyntax-only -Wdocumentation -Wmissing-prototypes -fdiagnostics-parseable-
fixits
%s 2>&1 | FileCheck %s
warn-absolute-value-header.c
2
// RUN: %clang_cc1 -triple i686-pc-linux-gnu -fsyntax-only %s -Wabsolute-value -fdiagnostics-parseable-
fixits
2>&1 | FileCheck %s
inline-asm-validate-aarch64.c
1
// RUN: %clang_cc1 -triple arm64-apple-darwin -fsyntax-only -fdiagnostics-parseable-
fixits
%s 2>&1 | FileCheck %s
/external/clang/test/PCH/
macro-undef.cpp
3
// RUN: %clang_cc1 -fsyntax-only -include-pch %t %s -Wuninitialized -fdiagnostics-parseable-
fixits
2>&1 | FileCheck %s
/external/clang/test/SemaObjC/
illegal-nonarc-bridged-cast.m
33
void
fixits
() {
arc-dict-bridged-cast.m
2
// RUN: not %clang_cc1 -triple x86_64-apple-darwin11 -fsyntax-only -fobjc-arc -fdiagnostics-parseable-
fixits
%s 2>&1 | FileCheck %s
dealloc.m
2
// RUN: not %clang_cc1 -triple x86_64-apple-darwin11 -fsyntax-only -fobjc-arc -fblocks -Wdealloc-in-category -fdiagnostics-parseable-
fixits
%s 2>&1 | FileCheck %s
arc-bridged-cast.m
2
// RUN: not %clang_cc1 -triple x86_64-apple-darwin11 -fsyntax-only -fobjc-arc -fblocks -fdiagnostics-parseable-
fixits
%s 2>&1 | FileCheck %s
39
CFTypeRef
fixits
() {
/external/llvm/lib/Support/
SourceMgr.cpp
138
ArrayRef<SMFixIt>
FixIts
) const {
195
LineStr, ColRanges,
FixIts
);
218
ArrayRef<SMFixIt>
FixIts
, bool ShowColors) const {
219
PrintMessage(OS, GetMessage(Loc, Kind, Msg, Ranges,
FixIts
), ShowColors);
224
ArrayRef<SMFixIt>
FixIts
, bool ShowColors) const {
225
PrintMessage(llvm::errs(), Loc, Kind, Msg, Ranges,
FixIts
, ShowColors);
239
FixIts
(Hints.begin(), Hints.end()) {
240
std::sort(
FixIts
.begin(),
FixIts
.end());
244
ArrayRef<SMFixIt>
FixIts
, ArrayRef<char> SourceLine)
[
all
...]
/external/llvm/include/llvm/Support/
SourceMgr.h
164
ArrayRef<SMFixIt>
FixIts
= None,
170
ArrayRef<SMFixIt>
FixIts
= None,
187
ArrayRef<SMFixIt>
FixIts
= None) const;
241
SmallVector<SMFixIt, 4>
FixIts
;
257
ArrayRef<SMFixIt>
FixIts
= None);
272
FixIts
.push_back(Hint);
276
return
FixIts
;
/external/clang/bindings/python/examples/cindex/
cindex-dump.py
22
'
fixits
' : diag.
fixits
}
/external/clang/tools/libclang/
CXLoadedDiagnostic.h
55
/// \brief Return the number of
FixIts
.
85
std::vector<std::pair<CXSourceRange, const char *> >
FixIts
;
CIndexDiagnostic.h
85
/// \brief Return the number of
FixIts
.
146
/// \brief Return the number of
FixIts
.
/external/clang/test/Parser/
cxx0x-for-range.cpp
1
// RUN: not %clang_cc1 -fsyntax-only -fdiagnostics-parseable-
fixits
-std=c++11 %s 2>&1 | FileCheck %s
/external/clang/test/SemaCXX/
ms-friend-lookup.cpp
2
// RUN: not %clang_cc1 %s -triple i686-pc-win32 -std=c++11 -Wmicrosoft -fms-compatibility -fdiagnostics-parseable-
fixits
2>&1 | FileCheck %s
Completed in 973 milliseconds
1
2
3
4
5