Home
last modified time | relevance | path

Searched refs:getStart (Results 1 – 25 of 175) sorted by relevance

1234567

/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DImmutableIntervalMap.h29 int64_t getStart() const { return Start; } in getStart() function
51 return L.getStart() == R.getStart() && L.getEnd() == R.getEnd(); in isEqual()
60 if (L.getStart() < R.getStart()) { in isLess()
61 assert(L.getEnd() < R.getStart()); in isLess()
63 } else if (L.getStart() == R.getStart()) { in isLess()
67 assert(L.getStart() > R.getEnd()); in isLess()
73 if (K.getStart() >= L.getStart() && K.getEnd() <= L.getEnd()) in isContainedIn()
80 ID.AddInteger(V.first.getStart()); in Profile()
158 if (CurrentK.getStart() > K.getEnd()) in removeOverlap()
161 else if (CurrentK.getEnd() < K.getStart()) in removeOverlap()
[all …]
/external/apache-commons-bcel/src/test/java/org/apache/bcel/generic/
DMethodGenTestCase.java71 final InstructionHandle start = lv.getStart(); in testRemoveLocalVariable()
83 assertNull("scope start", lv.getStart()); in testRemoveLocalVariable()
92 final InstructionHandle start = lv.getStart(); in testRemoveLocalVariables()
104 assertNull("scope start", lv.getStart()); in testRemoveLocalVariables()
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
DDumbTextComponent.java189 int start = selection.getStart(); in keyPressed()
260 start = selection.getStart(); in keyPressed()
277 contents.substring(selection.getStart(), selection.getEnd())); in copy()
339 start = selection.getStart(); in keyTyped()
354 start = selection.getStart(); in keyTyped()
386 if (activeStart > selection.getStart()) { in validateKeyStart()
387 activeStart = selection.getStart(); in validateKeyStart()
430 return selection.getStart(); in getSelectionStart()
472 if (activeStart == -1) activeStart = selection.getStart(); in insertText()
473 replaceRange(text, selection.getStart(), selection.getEnd()); in insertText()
[all …]
DSelection.java18 public int getStart() { in getStart() method in Selection
52 return getStart() < other.getEnd(); in isLessThan()
/external/antlr/runtime/ObjC/Framework/
DTreeRuleReturnScope.h40 @property (retain, getter=getStart, setter=setStart:) CommonTree *start;
47 - (CommonTree *)getStart;
DLexerRuleReturnScope.h34 - (NSInteger) getStart;
40 @property (assign, getter=getStart, setter=setStart:) NSInteger start;
DParserRuleReturnScope.h35 @property (retain, getter=getStart, setter=setStart:) id<Token> start;
38 - (id<Token>) getStart;
DCommonToken.h115 - (NSInteger)getStart;
137 @property (assign, getter=getStart, setter=setStart:) NSInteger startIndex;
DRuleReturnScope.h40 - (id<Token>) getStart;
/external/llvm/include/llvm/IR/
DDominators.h49 const BasicBlock *getStart() const { in getStart() function
69 return hash_combine(BBInfo::getHashValue(Edge.getStart()),
73 return BBInfo::isEqual(LHS.getStart(), RHS.getStart()) &&
/external/compiler-rt/lib/ubsan/
Dubsan_diag.cc230 Best->getStart().getMemoryLocation() > in upperBound()
231 Ranges[I].getStart().getMemoryLocation())) in upperBound()
255 Min = __sanitizer::Min(Ranges[I].getStart().getMemoryLocation(), Min); in PrintMemorySnippet()
287 if (InRange && InRange->getStart().getMemoryLocation() < P) in PrintMemorySnippet()
289 if (InRange && InRange->getStart().getMemoryLocation() <= P) in PrintMemorySnippet()
310 if (InRange && InRange->getStart().getMemoryLocation() == P) { in PrintMemorySnippet()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/
DExample2_24Test.java125 map.put("start", line.getStart()); in representData()
135 map.put("start", label.getStart()); in representData()
205 public Map<String, Integer> getStart() { in getStart() method in Example2_24Test.Line
225 public Map<String, Integer> getStart() { in getStart() method in Example2_24Test.Label
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DDominators.h88 const BasicBlock *getStart() const {
114 return hash_combine(BBInfo::getHashValue(Edge.getStart()),
119 return BBInfo::isEqual(LHS.getStart(), RHS.getStart()) &&
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/
DTestMultipleParagraphs.java110 paraStart = run.getStart(); in testMultipleParagraphs()
135 paraStart = run.getStart(); in testMultipleParagraphs()
250 run.getStart() + "-" + run.getLimit() + in testMultipleParagraphs()
285 paraStart = run.getStart(); in testMultipleParagraphs()
306 run.getStart() + "-" + run.getLimit() + in testMultipleParagraphs()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
DTestMultipleParagraphs.java107 paraStart = run.getStart(); in testMultipleParagraphs()
132 paraStart = run.getStart(); in testMultipleParagraphs()
247 run.getStart() + "-" + run.getLimit() + in testMultipleParagraphs()
282 paraStart = run.getStart(); in testMultipleParagraphs()
303 run.getStart() + "-" + run.getLimit() + in testMultipleParagraphs()
/external/clang/lib/CodeGen/
DCoverageMappingGen.cpp144 SourceLocation getStart(const Stmt *S) { in getStart() function in __anon1aa876fb0111::CoverageMappingBuilder
325 SourceLocation Start = getStart(Body); in VisitDecl()
461 size_t Index = pushRegion(TopCount, getStart(S), getEnd(S)); in propagateCounts()
468 if (SM.isBeforeInTranslationUnit(getStart(S), S->getLocStart())) in propagateCounts()
570 SourceLocation StartLoc = getStart(S); in extendRegion()
643 SourceLocation Start = getStart(S); in VisitLabelStmt()
798 pushRegion(Counter::getZero(), getStart(CS->body_front()), in VisitSwitchStmt()
814 pushRegion(ExitCount, getStart(S), ExitLoc); in VisitSwitchStmt()
826 if (Parent.hasStartLoc() && Parent.getStartLoc() == getStart(S)) in VisitSwitchCase()
829 pushRegion(Count, getStart(S)); in VisitSwitchCase()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DMethodGen.java135 start = il.getStart(); in MethodGen()
353 if ((lg[i].getStart() == null) && (il != null)) { in getLocalVariables()
354 lg[i].setStart(il.getStart()); in getLocalVariables()
726 start = il.getStart(); in updateLocalVariableTable()
763 for (InstructionHandle ih = il.getStart(); ih != null; ih = next) { in removeNOPs()
908 for (InstructionHandle ih = il.getStart(); ih != null; ih = ih.getNext()) { in setMaxLocals()
1001 InstructionHandle ih = il.getStart(); in getMaxStack()
/external/autotest/frontend/client/src/autotest/common/ui/
DPaginator.java103 public int getStart() { in getStart() method in Paginator
160 int displayStart = getStart() + 1; in update()
/external/clang/include/clang/Analysis/Analyses/
DFormatString.h92 const char *getStart() const { in getStart() function
188 const char *getStart() const { in getStart() function
193 return StringRef(getStart(), getLength()); in getCharacters()
308 const char *getStart() const { in getStart() function
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DDependenceAnalysis.cpp873 const SCEV *Start = AddRec->getStart(); in checkSrcSubscript()
898 const SCEV *Start = AddRec->getStart(); in checkDstSubscript()
1039 if (SE->isKnownNonNegative(AddRec->getStart()) && in isKnownNonNegative()
2147 const SCEV *SrcConst = SrcAddRec->getStart(); in testSIV()
2148 const SCEV *DstConst = DstAddRec->getStart(); in testSIV()
2170 const SCEV *SrcConst = SrcAddRec->getStart(); in testSIV()
2180 const SCEV *DstConst = DstAddRec->getStart(); in testSIV()
2224 SrcConst = SrcAddRec->getStart(); in testRDIV()
2227 DstConst = DstAddRec->getStart(); in testRDIV()
2233 dyn_cast<SCEVAddRecExpr>(SrcAddRec->getStart())) { in testRDIV()
[all …]
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/
DRuleReturnScope.java33 public Object getStart() { return null; } in getStart() method in RuleReturnScope
DParserRuleReturnScope.java51 public Object getStart() { return start; } in getStart() method in ParserRuleReturnScope
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/tree/
DTreeRuleReturnScope.js11 getStart: function() { return this.start; } method
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/
DTreeRuleReturnScope.java43 public Object getStart() { return start; } in getStart() method in TreeRuleReturnScope
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/
DParserRuleReturnScope.js25 getStart: function() { return this.start; }, method

1234567