Searched defs:FixIt (Results 1 - 7 of 7) sorted by relevance

/external/v8/tools/clang/scripts/
H A Dapply_fixits.py37 FixIt = collections.namedtuple( variable
38 'FixIt', ('start_line', 'start_col', 'end_line', 'end_col', 'text'))
61 fixits[m.group('file')].append(FixIt(
/external/clang/tools/libclang/
H A DCXStoredDiagnostic.cpp103 CXString CXStoredDiagnostic::getFixIt(unsigned FixIt, argument
105 const FixItHint &Hint = Diag.fixit_begin()[FixIt];
H A DCIndexDiagnostic.cpp79 CXString getFixIt(unsigned FixIt,
443 CXString clang_getDiagnosticFixIt(CXDiagnostic Diag, unsigned FixIt, argument
446 if (!D || FixIt >= D->getNumFixIts()) {
451 return D->getFixIt(FixIt, ReplacementRange);
/external/clang/include/clang/Frontend/
H A DFrontendOptions.h42 FixIt, ///< Parse and apply any fixits to the source. enumerator in enum:clang::frontend::ActionKind
/external/clang/bindings/python/clang/
H A Dcindex.py358 return FixIt(range, value)
409 class FixIt(object): class in inherits:object
411 A FixIt represents a transformation to be applied to the source to
421 return "<FixIt range %r, value %r>" % (self.range, self.value)
3736 'FixIt',
/external/clang/lib/Sema/
H A DSemaChecking.cpp4523 ArrayRef<FixItHint> FixIt) {
4525 Loc, IsStringLocation, StringRange, FixIt);
4554 /// \param FixIt optional fix it hint for the format string.
4559 Range StringRange, ArrayRef<FixItHint> FixIt) {
4563 D << FixIt; local
4573 Note << FixIt; local
4519 EmitFormatDiagnostic(PartialDiagnostic PDiag, SourceLocation Loc, bool IsStringLocation, Range StringRange, ArrayRef<FixItHint> FixIt) argument
4556 EmitFormatDiagnostic( Sema &S, bool InFunctionCall, const Expr *ArgumentExpr, const PartialDiagnostic &PDiag, SourceLocation Loc, bool IsStringLocation, Range StringRange, ArrayRef<FixItHint> FixIt) argument
H A DSemaDeclCXX.cpp8613 FixItHint FixIt; local
8616 FixIt = FixItHint::CreateReplacement(
8622 << FixIt;
8627 FixItHint FixIt; local
8630 FixIt = FixItHint::CreateReplacement(
8636 << FixIt;

Completed in 659 milliseconds