Searched refs:arrayLength (Results 1 - 25 of 40) sorted by relevance

12

/external/conscrypt/src/main/java/org/conscrypt/util/
H A DArrays.java28 * doesn't exceed {@code arrayLength}.
32 public static final void checkOffsetAndCount(int arrayLength, int offset, int count) { argument
33 if ((offset | count) < 0 || offset > arrayLength || arrayLength - offset < count) {
34 throw new ArrayIndexOutOfBoundsException("length=" + arrayLength + "; regionStart="
/external/okhttp/okio/src/main/java/okio/
H A DUtil.java27 public static void checkOffsetAndCount(long arrayLength, long offset, long count) { argument
28 if ((offset | count) < 0 || offset > arrayLength || arrayLength - offset < count) {
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
H A DWireFormatNano.java113 int arrayLength = 1;
122 arrayLength++;
125 return arrayLength;
H A DExtension.java268 int arrayLength = Array.getLength(array);
269 for (int i = 0; i < arrayLength; i++) {
288 int arrayLength = Array.getLength(array);
289 for (int i = 0; i < arrayLength; i++) {
488 int arrayLength = Array.getLength(array);
496 for (int i = 0; i < arrayLength; i++) {
501 for (int i = 0; i < arrayLength; i++) {
506 for (int i = 0; i < arrayLength; i++) {
511 for (int i = 0; i < arrayLength; i++) {
516 for (int i = 0; i < arrayLength;
[all...]
/external/proguard/src/proguard/evaluation/value/
H A DValueFactory.java170 IntegerValue arrayLength)
174 arrayLength,
186 IntegerValue arrayLength,
168 createArrayReferenceValue(String type, Clazz referencedClass, IntegerValue arrayLength) argument
184 createArrayReferenceValue(String type, Clazz referencedClass, IntegerValue arrayLength, Value elementValue) argument
H A DReferenceValue.java190 public IntegerValue arrayLength(ValueFactory valueFactory) method in class:ReferenceValue
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DTypesLengths.java104 private static int arrayLength; field in class:TypesLengths
165 return arrayLength;
254 arrayLength = typeLength;
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayType/
H A DNewInstanceTest.java127 int arrayLength = reply.getNextValueAsInt();
128 logWriter.println("ArrayReference.Length: arrayLength=" + arrayLength);
130 10, arrayLength);
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
H A DBerInputStreamTest.java109 int arrayLength = 17000;
112 byte[] encoding = new byte[arrayLength + 4];
117 encoding[2] = (byte) (arrayLength >> 8);
118 encoding[3] = (byte) (arrayLength & 0xFF);
/external/icu/icu4c/source/samples/cal/
H A Dcal.c49 int32_t arrayLength,
55 int32_t arrayLength);
289 int32_t arrayLength,
302 if(count != arrayLength + lowestIndex) {
306 for(i = 0; i < arrayLength; i++) {
307 int32_t idx = (i + firstIndex) % arrayLength;
319 int32_t arrayLength)
323 for(i = 0; i < arrayLength; i++) {
286 get_symbols(const UDateFormat *fmt, UDateFormatSymbolType type, UChar *array[], int32_t arrayLength, int32_t lowestIndex, int32_t firstIndex, UErrorCode *status) argument
318 free_symbols(UChar *array[], int32_t arrayLength) argument
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DUtil.java79 public static void checkOffsetAndCount(long arrayLength, long offset, long count) { argument
80 if ((offset | count) < 0 || offset > arrayLength || arrayLength - offset < count) {
/external/deqp/modules/gles3/functional/
H A Des3fFragmentOutputTests.cpp99 , arrayLength (0)
107 , arrayLength (arrayLength_)
114 int arrayLength; //!< 0 if not an array. member in struct:deqp::gles3::Functional::FragmentOutput
182 bool isArray = output.arrayLength > 0;
190 for (int elemNdx = 0; elemNdx < output.arrayLength; elemNdx++)
196 frag << "layout(location = " << output.location << ") out " << precName << " " << typeName << " out" << outNdx << "[" << output.arrayLength << "];\n";
216 bool isArray = output.arrayLength > 0;
220 for (int elemNdx = 0; elemNdx < output.arrayLength; elemNdx++)
334 numVecs += (i->arrayLength > 0 ? i->arrayLength
[all...]
/external/deqp/modules/glshared/
H A DglsShaderConstExprTests.cpp87 shaderOutput[0].arrayLength = 1;
92 shaderOutput[0].values[0].arrayLength = 1;
H A DglsShaderLibraryCase.hpp90 int arrayLength; // Number of elements in array (currently always 1). member in struct:deqp::gls::sl::ShaderCase::Value
91 std::vector<Element> elements; // Scalar values (length dataType.scalarSize * arrayLength).
98 int arrayLength; // Combined array length of each value (lengths must be same, or one). member in struct:deqp::gls::sl::ShaderCase::ValueBlock
H A DglsRandomUniformBlockCase.cpp192 const int arrayLength = rnd.getInt(1, m_maxArrayLength); local
194 return VarType(elementType, arrayLength);
H A DglsShaderLibraryCase.cpp89 : arrayLength(0)
498 const int elemNdx = (val.arrayLength == 1) ? (0) : (arrayNdx * scalarSize);
810 const int numRenderPasses = (valueBlock.arrayLength == 0) ? (1) : (valueBlock.arrayLength);
964 << ", sub-case " << arrayNdx+1 << " of " << valueBlock.arrayLength << "):"
1677 int elemNdx = (val.arrayLength == 1) ? 0 : arrayNdx;
1700 int elemNdx = (val.arrayLength == 1) ? 0 : arrayNdx;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DRemoteObject.js66 arrayLength: function()
549 arrayLength: function()
968 arrayLength: function()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
H A DObjectPropertiesSection.js73 if (this.object.arrayLength() > WebInspector.ObjectPropertiesSection._arrayLoadThreshold) {
75 WebInspector.ArrayGroupingTreeElement._populateArray(this.propertiesTreeOutline, this.object, 0, this.object.arrayLength() - 1);
486 if (value.arrayLength() > WebInspector.ObjectPropertiesSection._arrayLoadThreshold) {
488 WebInspector.ArrayGroupingTreeElement._populateArray(treeElement, value, 0, value.arrayLength() - 1);
/external/chromium_org/third_party/skia/gm/rebaseline_server/static/
H A Dloader.js799 var arrayLength = valueArray.length;
800 for (var i = 0; i < arrayLength; i++) {
/external/skia/gm/rebaseline_server/static/
H A Dloader.js799 var arrayLength = valueArray.length;
800 for (var i = 0; i < arrayLength; i++) {
/external/proguard/src/proguard/evaluation/
H A DProcessor.java523 IntegerValue arrayLength = stack.ipop();
526 arrayLength));
619 IntegerValue arrayLength = stack.ipop();
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/console/
H A DConsoleViewMessage.js585 if (this._message.isOutdated || array.arrayLength() > maxFlatArrayLength)
706 var length = array.arrayLength();
/external/jarjar/lib/
H A Dasm-commons-4.0.jarMETA-INF/MANIFEST.MF org/objectweb/asm/commons/AdviceAdapter.class " package org.objectweb.asm ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dasm-commons-3.3.jarMETA-INF/MANIFEST.MF org/objectweb/asm/commons/AdviceAdapter.class " package org.objectweb.asm ...
/external/deqp/modules/gles31/functional/
H A Des31fSSBOLayoutTests.cpp249 const int arrayLength = rnd.getInt(1, m_maxArrayLength); local
253 return glu::VarType(elementType, arrayLength);

Completed in 626 milliseconds

12