Home
last modified time | relevance | path

Searched refs:getEnd (Results 1 – 25 of 157) sorted by relevance

1234567

/external/clang/lib/Rewrite/
DRewriter.cpp127 !isRewritable(Range.getEnd())) return -1; in getRangeSize()
133 EndOff = getLocationOffsetAndFileID(Range.getEnd(), EndFileID); in getRangeSize()
152 EndOff += Lexer::MeasureTokenLength(Range.getEnd(), *SourceMgr, *LangOpts); in getRangeSize()
170 !isRewritable(Range.getEnd())) in getRewrittenText()
176 EndOff = getLocationOffsetAndFileID(Range.getEnd(), EndFileID); in getRewrittenText()
191 EndOff += Lexer::MeasureTokenLength(Range.getEnd(), *SourceMgr, *LangOpts); in getRewrittenText()
201 EndOff += Lexer::MeasureTokenLength(Range.getEnd(), *SourceMgr, *LangOpts); in getRewrittenText()
315 if (!isRewritable(range.getEnd())) return true; in ReplaceText()
331 if (!isRewritable(range.getEnd())) return true; in IncreaseIndentation()
338 EndOff = getLocationOffsetAndFileID(range.getEnd(), EndFileID); in IncreaseIndentation()
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
DDumbTextComponent.java188 int end = selection.getEnd(); in keyPressed()
259 end = selection.getEnd(); in keyPressed()
275 contents.substring(selection.getStart(), selection.getEnd())); in copy()
338 end = selection.getEnd(); in keyTyped()
353 end = selection.getEnd(); in keyTyped()
432 return selection.getEnd(); in getSelectionEnd()
471 replaceRange(text, selection.getStart(), selection.getEnd()); in insertText()
572 offset2Point(selection.getEnd(), false, endPoint); in drawSelection()
781 if (selection.getEnd() == 0) return; in fixHex()
785 int min = Math.min(8,selection.getEnd()); in fixHex()
[all …]
DSelection.java20 public int getEnd() { in getEnd() method in Selection
50 return getStart() < other.getEnd(); in isLessThan()
/external/clang/lib/Edit/
DCommit.cpp104 commitableAfter = insertAfterToken(range.getEnd(), after); in insertWrap()
106 commitableAfter = insert(range.getEnd(), after); in insertWrap()
155 addRemove(replacementRange.getEnd(), in replaceWithInner()
302 if (range.getBegin().isMacroID() || range.getEnd().isMacroID()) in canRemoveRange()
305 SM.isInSystemHeader(range.getEnd())) in canRemoveRange()
312 std::pair<FileID, unsigned> endInfo = SM.getDecomposedLoc(range.getEnd()); in canRemoveRange()
DRewriteObjCFoundationAPI.cpp196 commit.replaceWithInner(SourceRange(ArgRange.getBegin(), MsgRange.getEnd()), in rewriteToSubscriptGetCommon()
248 commit.replaceWithInner(SourceRange(Arg1Range.getBegin(), MsgRange.getEnd()), in rewriteToArraySubscriptSet()
284 commit.replaceWithInner(SourceRange(Arg0Range.getBegin(), MsgRange.getEnd()), in rewriteToDictionarySubscriptSet()
518 commit.insertAfterToken(ValRange.getEnd(), "}"); in rewriteToDictionaryLiteral()
545 commit.insertAfterToken(KeyRange.getEnd(), ": "); in rewriteToDictionaryLiteral()
546 commit.insertFromRange(KeyRange.getEnd(), ValRange, /*afterToken=*/true); in rewriteToDictionaryLiteral()
589 commit.insertAfterToken(KeyRange.getEnd(), ": "); in rewriteToDictionaryLiteral()
590 commit.insertFromRange(KeyRange.getEnd(), ValRange, /*afterToken=*/true); in rewriteToDictionaryLiteral()
688 literalRange.getEnd().isMacroID()) in getLiteralInfo()
863 SourceLocation LitE = LitInfo.WithoutSuffRange.getEnd(); in rewriteToNumberLiteral()
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
DBlockAddresses.java108 public CodeAddress getEnd(BasicBlock block) { in getEnd() method in BlockAddresses
119 public CodeAddress getEnd(int label) { in getEnd() method in BlockAddresses
DStdCatchBuilder.java284 CodeAddress endAddress = addresses.getEnd(end); in makeEntry()
312 int endAddress = addresses.getEnd(end).getAddress(); in rangeIsValid()
/external/dexmaker/src/dx/java/com/android/dx/util/
DByteArrayAnnotatedOutput.java378 int lastEnd = (asz == 0) ? 0 : annotations.get(asz - 1).getEnd(); in annotate()
457 } else if (last.getEnd() > cursor) { in finishAnnotating()
496 end = a.getEnd(); in writeAnnotationsTo()
619 public int getEnd() { in getEnd() method in ByteArrayAnnotatedOutput.Annotation
/external/clang/lib/Lex/
DPreprocessingRecord.cpp129 assert(!SourceMgr.isBeforeInTranslationUnit(Range.getEnd(),Range.getBegin())); in getPreprocessedEntitiesInRangeSlow()
161 assert(!SourceMgr.isBeforeInTranslationUnit(Range.getEnd(),Range.getBegin())); in findLocalPreprocessedEntitiesInRange()
164 unsigned End = findEndLocalPreprocessedEntity(Range.getEnd()); in findLocalPreprocessedEntitiesInRange()
219 if (SourceMgr.isBeforeInTranslationUnit((*I)->getSourceRange().getEnd(), in findBeginLocalPreprocessedEntity()
471 EndLoc = FilenameRange.getEnd(); in InclusionDirective()
DPPConditionalDirectiveRecord.cpp35 if (SourceMgr.isBeforeInTranslationUnit(Range.getEnd(), low->getLoc())) in rangeIntersectsConditionalDirective()
40 Range.getEnd(), CondDirectiveLoc::Comp(SourceMgr)); in rangeIntersectsConditionalDirective()
/external/compiler-rt/lib/ubsan/
Dubsan_diag.cc238 if (Ranges[I].getEnd().getMemoryLocation() > Loc && in upperBound()
266 Max = __sanitizer::Max(Ranges[I].getEnd().getMemoryLocation(), Max); in renderMemorySnippet()
292 if (InRange && InRange->getEnd().getMemoryLocation() == P) in renderMemorySnippet()
309 if (!InRange || InRange->getEnd().getMemoryLocation() == P) in renderMemorySnippet()
/external/autotest/frontend/client/src/autotest/common/ui/
DPaginator.java111 public int getEnd() { in getEnd() method in Paginator
163 statusLabel.setText(displayStart + "-" + getEnd() + in update()
/external/skia/src/xml/
DSkXMLWriter.cpp78 SkXMLWriter::Elem* SkXMLWriter::getEnd() in getEnd() function in SkXMLWriter
251 Elem* elem = getEnd(); in onEndElement()
314 Elem* elem = this->getEnd(); in onEndElement()
/external/clang/include/clang/Basic/
DSourceLocation.h202 SourceLocation getEnd() const { return E; } in getEnd() function
255 SourceLocation getEnd() const { return Range.getEnd(); } in getEnd() function
/external/clang/lib/ARCMigrate/
DTransformActions.cpp69 SourceLocation beginLoc = range.getBegin(), endLoc = range.getEnd(); in CharRange()
409 return canInsert(range.getBegin()) && canInsertAfterToken(range.getEnd()); in canRemoveRange()
473 if (replacementRange.getEnd() != range.getEnd()) in commitReplace()
475 getLocForEndOfToken(replacementRange.getEnd(), in commitReplace()
477 range.getEnd())); in commitReplace()
DTransProtectedScope.cpp176 Pass.TA.insert(info.Range.getEnd(), "}\n"); in tryFixing()
194 SM.isBeforeInTranslationUnit(Loc, R.getEnd()); in isInRange()
/external/clang/lib/CodeGen/
DCoverageMappingGen.cpp140 SourceLocation getEnd(const Stmt *S) { in getEnd() function in __anonb1e50e330111::CoverageMappingBuilder
219 auto LocEnd = I.getEnd(); in gatherSkippedRegions()
312 SourceRegions.emplace_back(Counter(), getStart(Body), getEnd(Body)); in VisitDecl()
432 size_t Index = pushRegion(TopCount, getStart(S), getEnd(S)); in propagateCounts()
541 Region.setEndLoc(getEnd(S)); in terminateRegion()
577 handleFileExit(getEnd(S)); in VisitStmt()
639 adjustForOutOfOrderTraversal(getEnd(S)); in VisitWhileStmt()
692 adjustForOutOfOrderTraversal(getEnd(S)); in VisitForStmt()
758 getEnd(CS->body_back())); in VisitSwitchStmt()
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
DBlock.java46 public Label getEnd() { in getEnd() method in Block
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/actions/
DFloatAction.java64 public float getEnd () { in getEnd() method in FloatAction
DIntAction.java64 public int getEnd () { in getEnd() method in IntAction
/external/clang/include/clang/AST/
DNestedNameSpecifier.h288 return getSourceRange().getEnd(); in getEndLoc()
300 return getLocalSourceRange().getEnd(); in getLocalEndLoc()
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
DCatchStructs.java204 int end = one.getEnd(); in writeTo()
250 + ".." + Hex.u2or4(entry.getEnd()); in annotateEntries()
/external/clang/lib/Format/
DWhitespaceManager.cpp116 Changes[i - 1].OriginalWhitespaceRange.getEnd()); in calculateLineBreakInformation()
355 Changes[i].OriginalWhitespaceRange.getEnd()); in alignTrailingComments()
359 Changes[j].OriginalWhitespaceRange.getEnd()); in alignTrailingComments()
477 unsigned WhitespaceLength = SourceMgr.getFileOffset(Range.getEnd()) - in storeReplacement()
/external/clang/include/clang/Rewrite/Core/
DHTMLRewrite.h42 HighlightRange(R, Range.getBegin(), Range.getEnd(), StartTag, EndTag); in HighlightRange()
/external/llvm/lib/IR/
DDominators.cpp151 const BasicBlock *End = BBE.getEnd(); in dominates()
202 if (PN && PN->getParent() == BBE.getEnd() && in dominates()

1234567