Searched refs:RemoveRange (Results 1 - 19 of 19) sorted by relevance

/external/clang/lib/Rewrite/Frontend/
H A DFixItRewriter.cpp150 commit.insertFromRange(Hint.RemoveRange.getBegin(),
154 commit.remove(Hint.RemoveRange);
156 if (Hint.RemoveRange.isTokenRange() ||
157 Hint.RemoveRange.getBegin() != Hint.RemoveRange.getEnd())
158 commit.replace(Hint.RemoveRange, Hint.CodeToInsert);
160 commit.insert(Hint.RemoveRange.getBegin(), Hint.CodeToInsert,
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dcentral_freelist.h61 // elements in the range. RemoveRange() is the opposite operation.
65 int RemoveRange(void **start, void **end, int N);
H A Dcentral_freelist.cc244 int CentralFreeList::RemoveRange(void **start, void **end, int N) {
H A Dthread_cache.cc164 int fetch_count = Static::central_cache()[cl].RemoveRange(
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dcentral_freelist.h61 // elements in the range. RemoveRange() is the opposite operation.
65 int RemoveRange(void **start, void **end, int N);
H A Dcentral_freelist.cc245 int CentralFreeList::RemoveRange(void **start, void **end, int N) {
H A Dthread_cache.cc161 int fetch_count = Static::central_cache()[cl].RemoveRange(
/external/clang/lib/Frontend/
H A DDiagnosticRenderer.cpp101 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);
H A DTextDiagnostic.cpp1000 = SM.getDecomposedExpansionLoc(I->RemoveRange.getBegin());
1224 if (I->RemoveRange.isInvalid() ||
1225 I->RemoveRange.getBegin().isMacroID() ||
1226 I->RemoveRange.getEnd().isMacroID())
1232 SourceLocation BLoc = I->RemoveRange.getBegin();
1233 SourceLocation ELoc = I->RemoveRange.getEnd();
1239 if (I->RemoveRange.isTokenRange())
H A DASTUnit.cpp1307 OutFix.RemoveRange = makeStandaloneRange(InFix.RemoveRange, SM, LangOpts);
2580 SourceLocation BL = FileLoc.getLocWithOffset(I->RemoveRange.first);
2581 SourceLocation EL = FileLoc.getLocWithOffset(I->RemoveRange.second);
2582 FH.RemoveRange = CharSourceRange::getCharRange(BL, EL);
H A DSerializedDiagnosticPrinter.cpp668 AddCharSourceRangeToRecord(Fix.RemoveRange, Record, SM);
/external/clang/include/clang/Basic/
H A DDiagnostic.h55 CharSourceRange RemoveRange; member in class:clang::FixItHint
72 return !RemoveRange.isValid();
81 Hint.RemoveRange =
94 Hint.RemoveRange =
103 static FixItHint CreateRemoval(CharSourceRange RemoveRange) { argument
105 Hint.RemoveRange = RemoveRange;
108 static FixItHint CreateRemoval(SourceRange RemoveRange) { argument
109 return CreateRemoval(CharSourceRange::getTokenRange(RemoveRange));
114 static FixItHint CreateReplacement(CharSourceRange RemoveRange, argument
122 CreateReplacement(SourceRange RemoveRange, StringRef Code) argument
[all...]
/external/clang/tools/libclang/
H A DCXStoredDiagnostic.cpp111 LangOpts, Hint.RemoveRange);
/external/chromium_org/v8/src/
H A Dallocation-tracker.cc121 RemoveRange(start, end);
141 RemoveRange(from, from + size);
161 void AddressToTraceMap::RemoveRange(Address start, Address end) { function in class:v8::internal::AddressToTraceMap
H A Dallocation-tracker.h82 void RemoveRange(Address start, Address end);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DListExtensions.cs182 list.RemoveRange(size, list.Count - size);
/external/clang/include/clang/Frontend/
H A DASTUnit.h69 std::pair<unsigned, unsigned> RemoveRange; member in struct:clang::ASTUnit::StandaloneFixIt
/external/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp824 S.Diag(Fixit1.RemoveRange.getBegin(), diag::note_uninit_fixit_remove_cond)
H A DSemaDecl.cpp6915 SourceRange RemoveRange = TemplateParams->getSourceRange(); local
6929 << Name << RemoveRange
6930 << FixItHint::CreateRemoval(RemoveRange)

Completed in 5423 milliseconds