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

1 2

  /external/v8/tools/clang/scripts/
apply_fixits.py 7 # that clang's -Xclang -fixit-recompile flag, which automatically applies fixits
37 FixIt = collections.namedtuple(
38 'FixIt', ('start_line', 'start_col', 'end_line', 'end_col', 'text'))
61 fixits[m.group('file')].append(FixIt(
69 for fixit in v:
70 if fixit.start_line != fixit.end_line:
71 print 'error: multiline fixits not supported! file: %s, fixit: %s' % (
72 k, fixit)
74 if fixit == last_fixit
    [all...]
  /external/clang/tools/libclang/
CIndexDiagnostic.h 88 /// \brief Return the FixIt information (source range and inserted text).
89 virtual CXString getFixIt(unsigned FixIt,
149 /// \brief Return the FixIt information (source range and inserted text).
150 CXString getFixIt(unsigned FixIt,
CXStoredDiagnostic.cpp 103 CXString CXStoredDiagnostic::getFixIt(unsigned FixIt,
105 const FixItHint &Hint = Diag.fixit_begin()[FixIt];
CXLoadedDiagnostic.h 58 /// \brief Return the FixIt information (source range and inserted text).
59 CXString getFixIt(unsigned FixIt,
CIndexDiagnostic.cpp 79 CXString getFixIt(unsigned FixIt,
443 CXString clang_getDiagnosticFixIt(CXDiagnostic Diag, unsigned FixIt,
446 if (!D || FixIt >= D->getNumFixIts()) {
451 return D->getFixIt(FixIt, ReplacementRange);
CXLoadedDiagnostic.cpp 143 CXString CXLoadedDiagnostic::getFixIt(unsigned FixIt,
145 assert(FixIt < FixIts.size());
147 *ReplacementRange = FixIts[FixIt].first;
148 return cxstring::createRef(FixIts[FixIt].second);
372 return reportInvalidFile("Out-of-bounds string in FIXIT");
  /external/clang/include/clang/Frontend/
FrontendOptions.h 42 FixIt, ///< Parse and apply any fixits to the source.
  /external/clang/lib/FrontendTool/
ExecuteCompilerInvocation.cpp 54 case FixIt: return llvm::make_unique<FixItAction>();
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Frontend/
FrontendOptions.h 42 FixIt, ///< Parse and apply any fixits to the source.
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Frontend/
FrontendOptions.h 42 FixIt, ///< Parse and apply any fixits to the source.
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Frontend/
FrontendOptions.h 42 FixIt, ///< Parse and apply any fixits to the source.
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Frontend/
FrontendOptions.h 42 FixIt, ///< Parse and apply any fixits to the source.
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Frontend/
FrontendOptions.h 42 FixIt, ///< Parse and apply any fixits to the source.
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Frontend/
FrontendOptions.h 42 FixIt, ///< Parse and apply any fixits to the source.
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Frontend/
FrontendOptions.h 42 FixIt, ///< Parse and apply any fixits to the source.
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Frontend/
FrontendOptions.h 42 FixIt, ///< Parse and apply any fixits to the source.
  /external/clang/lib/Frontend/
ASTUnit.cpp     [all...]
  /external/clang/utils/TableGen/
ClangDiagnosticsEmitter.cpp 243 SMFixIt FixIt(InGroupRange, Replacement);
250 InGroupRange.isValid() ? FixIt
    [all...]
  /external/clang/bindings/python/clang/
cindex.py 358 return FixIt(range, value)
409 class FixIt(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)
    [all...]
  /external/clang/include/clang-c/
Index.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang-c/
Index.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang-c/
Index.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang-c/
Index.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang-c/
Index.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang-c/
Index.h     [all...]

Completed in 1511 milliseconds

1 2