Home
last modified time | relevance | path

Searched refs:checkIndex (Results 1 – 25 of 33) sorted by relevance

12

/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/statics/
DPass2Verifier.java364 private void checkIndex(final Node referrer, final int index, final Class<?> shouldbe) { in checkIndex() method in Pass2Verifier.CPESSC_Visitor
444 checkIndex(obj, obj.getNameIndex(), CONST_Utf8); in visitConstantClass()
452 checkIndex(obj, obj.getClassIndex(), CONST_Class); in visitConstantFieldref()
453 checkIndex(obj, obj.getNameAndTypeIndex(), CONST_NameAndType); in visitConstantFieldref()
460 checkIndex(obj, obj.getClassIndex(), CONST_Class); in visitConstantMethodref()
461 checkIndex(obj, obj.getNameAndTypeIndex(), CONST_NameAndType); in visitConstantMethodref()
468 checkIndex(obj, obj.getClassIndex(), CONST_Class); in visitConstantInterfaceMethodref()
469 checkIndex(obj, obj.getNameAndTypeIndex(), CONST_NameAndType); in visitConstantInterfaceMethodref()
476 checkIndex(obj, obj.getStringIndex(), CONST_Utf8); in visitConstantString()
511 checkIndex(obj, obj.getNameIndex(), CONST_Utf8); in visitConstantNameAndType()
[all …]
/external/opencensus-java/api/src/test/java/io/opencensus/internal/
DUtilsTest.java101 Utils.checkIndex(1, 2); in checkIndex_Valid()
108 Utils.checkIndex(0, -1); in checkIndex_NegativeSize()
115 Utils.checkIndex(-2, 10); in checkIndex_NegativeIndex()
122 Utils.checkIndex(5, 5); in checkIndex_IndexEqualToSize()
129 Utils.checkIndex(11, 10); in checkIndex_IndexGreaterThanSize()
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/source/
DSinglePeriodTimeline.java183 Assertions.checkIndex(windowIndex, 0, 1); in getWindow()
221 Assertions.checkIndex(periodIndex, 0, 1); in getPeriod()
233 Assertions.checkIndex(periodIndex, 0, 1); in getUidOfPeriod()
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
DSparseFieldVector.java308 checkIndex(index); in getEntry()
320 checkIndex(index); in getSubVector()
321 checkIndex(index + n - 1); in getSubVector()
470 checkIndex(index); in setEntry()
477 checkIndex(index); in setSubVector()
478 checkIndex(index + v.getDimension() - 1); in setSubVector()
484 checkIndex(index); in setSubVector()
485 checkIndex(index + v.length - 1); in setSubVector()
550 private void checkIndex(final int index) throws MatrixIndexException { in checkIndex() method in SparseFieldVector
DArrayFieldVector.java700 checkIndex(index); in getSubVector()
701 checkIndex(index + n - 1); in getSubVector()
711 checkIndex(index); in setEntry()
726 checkIndex(index); in setSubVector()
727 checkIndex(index + v.getDimension() - 1); in setSubVector()
736 checkIndex(index); in setSubVector()
737 checkIndex(index + v.length - 1); in setSubVector()
861 private void checkIndex(final int index) in checkIndex() method in ArrayFieldVector
DOpenMapRealVector.java376 checkIndex(index);
377 checkIndex(index + n - 1);
460 checkIndex(index);
642 checkIndex(index);
653 checkIndex(index);
654 checkIndex(index + v.getDimension() - 1);
661 checkIndex(index);
662 checkIndex(index + v.length - 1);
DArrayRealVector.java1029 checkIndex(index); in getSubVector()
1030 checkIndex(index + n - 1); in getSubVector()
1040 checkIndex(index); in setEntry()
1056 checkIndex(index); in setSubVector()
1057 checkIndex(index + v.getDimension() - 1); in setSubVector()
1067 checkIndex(index); in setSubVector()
1068 checkIndex(index + v.length - 1); in setSubVector()
DAbstractRealVector.java70 protected void checkIndex(final int index) in checkIndex() method in AbstractRealVector
80 checkIndex(index); in setSubVector()
81 checkIndex(index + v.getDimension() - 1); in setSubVector()
87 checkIndex(index); in setSubVector()
88 checkIndex(index + v.length - 1); in setSubVector()
/external/opencensus-java/api/src/main/java/io/opencensus/trace/
DTraceOptions.java101 Utils.checkIndex(srcOffset, src.length); in fromBytes()
159 Utils.checkIndex(destOffset, dest.length); in copyBytesTo()
/external/guava/guava/src/com/google/common/math/
DQuantiles.java219 checkIndex(index, scale); in ScaleAndIndex()
319 checkIndex(index, scale); in ScaleAndIndexes()
471 private static void checkIndex(int index, int scale) { in checkIndex() method in Quantiles
/external/guava/android/guava/src/com/google/common/math/
DQuantiles.java219 checkIndex(index, scale); in ScaleAndIndex()
319 checkIndex(index, scale); in ScaleAndIndexes()
471 private static void checkIndex(int index, int scale) { in checkIndex() method in Quantiles
/external/libxml2/
DHTMLparser.c4957 ctxt->checkIndex = 0; in htmlInitParserCtxt()
5148 if (ctxt->checkIndex > base) in htmlParseLookupSequence()
5149 base = ctxt->checkIndex; in htmlParseLookupSequence()
5207 ctxt->checkIndex = 0; in htmlParseLookupSequence()
5226 ctxt->checkIndex = base; in htmlParseLookupSequence()
5275 if (ctxt->checkIndex > base) in htmlParseLookupChars()
5276 base = ctxt->checkIndex; in htmlParseLookupChars()
5307 ctxt->checkIndex = 0; in htmlParseLookupChars()
5312 ctxt->checkIndex = base; in htmlParseLookupChars()
5666 ctxt->checkIndex = 0; in htmlParseTryOrFinish()
[all …]
Dparser.c10899 if (ctxt->checkIndex > base) in xmlParseLookupSequence()
10900 base = ctxt->checkIndex; in xmlParseLookupSequence()
10919 ctxt->checkIndex = 0; in xmlParseLookupSequence()
10937 ctxt->checkIndex = base; in xmlParseLookupSequence()
11152 ctxt->checkIndex = 0; in xmlParseTryOrFinish()
11507 ctxt->checkIndex = 0; in xmlParseTryOrFinish()
11580 ctxt->checkIndex = 0; in xmlParseTryOrFinish()
11617 ctxt->checkIndex = 0; in xmlParseTryOrFinish()
11653 ctxt->checkIndex = 0; in xmlParseTryOrFinish()
11671 ctxt->checkIndex = 0; in xmlParseTryOrFinish()
[all …]
/external/exoplayer/tree/library/common/src/main/java/com/google/android/exoplayer2/util/
DAssertions.java66 public static int checkIndex(int index, int start, int limit) { in checkIndex() method in Assertions
/external/opencensus-java/api/src/main/java/io/opencensus/internal/
DUtils.java93 public static void checkIndex(int index, int size) { in checkIndex() method in Utils
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/cea/
DCea708Decoder.java1267 Assertions.checkIndex(red, 0, 4); in getArgbColorFromCeaColor()
1268 Assertions.checkIndex(green, 0, 4); in getArgbColorFromCeaColor()
1269 Assertions.checkIndex(blue, 0, 4); in getArgbColorFromCeaColor()
1270 Assertions.checkIndex(opacity, 0, 4); in getArgbColorFromCeaColor()
/external/exoplayer/tree/testutils/src/main/java/com/google/android/exoplayer2/testutil/
DFakeTimeline.java329 Assertions.checkIndex(periodIndex, 0, getPeriodCount()); in getUidOfPeriod()
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DByteString.java1234 static void checkIndex(int index, int size) { in checkIndex() method
1551 checkIndex(index, size()); in byteAt()
DRopeByteString.java264 checkIndex(index, totalLength); in byteAt()
/external/exoplayer/tree/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/
DDashMediaSource.java1241 Assertions.checkIndex(periodIndex, 0, getPeriodCount()); in getPeriod()
1256 Assertions.checkIndex(windowIndex, 0, 1); in getWindow()
1330 Assertions.checkIndex(periodIndex, 0, getPeriodCount()); in getUidOfPeriod()
/external/angle/third_party/glslang/src/glslang/MachineIndependent/
DParseContextBase.cpp260 void TParseContextBase::checkIndex(const TSourceLoc& loc, const TType& type, int& index) in checkIndex() function in glslang::TParseContextBase
/external/deqp-deps/glslang/glslang/MachineIndependent/
DParseContextBase.cpp260 void TParseContextBase::checkIndex(const TSourceLoc& loc, const TType& type, int& index) in checkIndex() function in glslang::TParseContextBase
DParseHelper.h113 void checkIndex(const TSourceLoc&, const TType&, int& index);
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/
DTimeline.java874 Assertions.checkIndex(windowIndex, 0, getWindowCount()); in getPeriodPosition()
/external/libxml2/include/libxml/
Dparser.h235 long checkIndex; /* used by progressive parsing lookup */ member

12