HomeSort by relevance Sort by last modified time
    Searched refs:RemoveRange (Results 1 - 19 of 19) sorted by null

  /external/clang/lib/Frontend/Rewrite/
FixItRewriter.cpp 155 commit.insertFromRange(Hint.RemoveRange.getBegin(),
159 commit.remove(Hint.RemoveRange);
161 if (Hint.RemoveRange.isTokenRange() ||
162 Hint.RemoveRange.getBegin() != Hint.RemoveRange.getEnd())
163 commit.replace(Hint.RemoveRange, Hint.CodeToInsert);
165 commit.insert(Hint.RemoveRange.getBegin(), Hint.CodeToInsert,
  /external/clang/lib/Frontend/
DiagnosticRenderer.cpp 101 commit.insertFromRange(Hint.RemoveRange.getBegin(),
105 commit.remove(Hint.RemoveRange);
107 if (Hint.RemoveRange.isTokenRange() ||
108 Hint.RemoveRange.getBegin() != Hint.RemoveRange.getEnd())
109 commit.replace(Hint.RemoveRange, Hint.CodeToInsert);
111 commit.insert(Hint.RemoveRange.getBegin(), Hint.CodeToInsert,
151 if (I->RemoveRange.isValid())
152 MutableRanges.push_back(I->RemoveRange);
TextDiagnostic.cpp     [all...]
ASTUnit.cpp     [all...]
SerializedDiagnosticPrinter.cpp 731 AddCharSourceRangeToRecord(Fix.RemoveRange, Record, SM);
    [all...]
  /external/clang/include/clang/Basic/
Diagnostic.h 56 CharSourceRange RemoveRange;
73 return !RemoveRange.isValid();
82 Hint.RemoveRange =
95 Hint.RemoveRange =
104 static FixItHint CreateRemoval(CharSourceRange RemoveRange) {
106 Hint.RemoveRange = RemoveRange;
109 static FixItHint CreateRemoval(SourceRange RemoveRange) {
110 return CreateRemoval(CharSourceRange::getTokenRange(RemoveRange));
115 static FixItHint CreateReplacement(CharSourceRange RemoveRange,
    [all...]
  /external/clang/tools/libclang/
CXStoredDiagnostic.cpp 111 LangOpts, Hint.RemoveRange);
  /external/v8/test/unittests/heap/
slot-set-unittest.cc 105 set.RemoveRange(start, end);
117 TEST(SlotSet, RemoveRange) {
136 set.RemoveRange(0, Page::kPageSize);
  /external/v8/src/profiler/
allocation-tracker.cc 121 RemoveRange(start, end);
141 RemoveRange(from, from + size);
161 void AddressToTraceMap::RemoveRange(Address start, Address end) {
allocation-tracker.h 91 void RemoveRange(Address start, Address end);
  /external/v8/src/heap/
remembered-set.h 48 static void RemoveRange(Page* page, Address start, Address end) {
55 slot_set->RemoveRange(static_cast<uint32_t>(start_offset),
slot-set.h 66 void RemoveRange(int start_offset, int end_offset) {
heap.cc     [all...]
mark-compact.cc     [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
ListExtensions.cs 182 list.RemoveRange(size, list.Count - size);
  /prebuilts/misc/common/swig/include/2.0.11/csharp/
std_vector.i 285 void RemoveRange(int index, int count) throw (std::out_of_range, std::invalid_argument) {
  /external/clang/include/clang/Frontend/
ASTUnit.h 71 std::pair<unsigned, unsigned> RemoveRange;
    [all...]
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp 831 S.Diag(Fixit1.RemoveRange.getBegin(), diag::note_uninit_fixit_remove_cond)
    [all...]
SemaDecl.cpp     [all...]

Completed in 333 milliseconds