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

123

/external/conscrypt/common/src/main/java/org/conscrypt/
H A DArrayUtils.java28 * doesn't exceed {@code arrayLength}.
30 static void checkOffsetAndCount(int arrayLength, int offset, int count) { argument
31 if ((offset | count) < 0 || offset > arrayLength || arrayLength - offset < count) {
32 throw new ArrayIndexOutOfBoundsException("length=" + arrayLength + "; regionStart="
/external/proguard/src/proguard/evaluation/value/
H A DArrayReferenceValue.java34 protected final IntegerValue arrayLength; field in class:ArrayReferenceValue
42 IntegerValue arrayLength)
46 this.arrayLength = arrayLength;
52 public IntegerValue arrayLength(ValueFactory valueFactory) method in class:ArrayReferenceValue
54 return arrayLength;
98 this.arrayLength.generalize(other.arrayLength)) :
105 if (this.arrayLength.equal(other.arrayLength)
40 ArrayReferenceValue(String type, Clazz referencedClass, IntegerValue arrayLength) argument
[all...]
H A DDetailedValueFactory.java38 IntegerValue arrayLength)
44 arrayLength,
36 createArrayReferenceValue(String type, Clazz referencedClass, IntegerValue arrayLength) argument
H A DIdentifiedArrayReferenceValue.java42 IntegerValue arrayLength,
46 super(type, referencedClass, arrayLength);
40 IdentifiedArrayReferenceValue(String type, Clazz referencedClass, IntegerValue arrayLength, ValueFactory valuefactory, int id) argument
H A DIdentifiedValueFactory.java82 IntegerValue arrayLength)
88 arrayLength,
80 createArrayReferenceValue(String type, Clazz referencedClass, IntegerValue arrayLength) argument
H A DDetailedArrayReferenceValue.java46 IntegerValue arrayLength,
50 super(type, referencedClass, arrayLength, valuefactory, id);
53 if (arrayLength.isParticular() &&
54 arrayLength.value() <= MAXIMUM_STORED_ARRAY_LENGTH)
64 this.values = new Value[arrayLength.value()];
44 DetailedArrayReferenceValue(String type, Clazz referencedClass, IntegerValue arrayLength, ValueFactory valuefactory, int id) argument
H A DParticularValueFactory.java103 IntegerValue arrayLength)
109 arrayLength);
101 createArrayReferenceValue(String type, Clazz referencedClass, IntegerValue arrayLength) argument
H A DReferenceValue.java68 public IntegerValue arrayLength(ValueFactory valueFactory) method in class:ReferenceValue
H A DValueFactory.java170 IntegerValue arrayLength)
168 createArrayReferenceValue(String type, Clazz referencedClass, IntegerValue arrayLength) argument
/external/parameter-framework/upstream/parameter/
H A DParameterBlockType.cpp57 size_t arrayLength = getArrayLength(); local
59 if (arrayLength) {
62 for (size_t child = 0; child < arrayLength; child++) {
H A DComponentInstance.cpp123 size_t arrayLength = getArrayLength(); local
125 if (arrayLength != 0) {
128 for (size_t child = 0; child < arrayLength; child++) {
H A DArrayParameter.cpp191 size_t arrayLength = getArrayLength(); local
193 for (valueIndex = 0; valueIndex < arrayLength; valueIndex++) {
295 size_t arrayLength = getArrayLength(); local
301 for (size_t valueIndex = 0; valueIndex < arrayLength; valueIndex++) {
H A DElementHandle.cpp364 bool ElementHandle::checkSetValidity(size_t arrayLength, string &error) const argument
367 if (not checkGetValidity(arrayLength != 0, error)) {
377 if (arrayLength && (arrayLength != getArrayLength())) {
381 to_string(getArrayLength()) + ", got: " + to_string(arrayLength);
/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
H A DWireFormatNano.java113 int arrayLength = 1;
118 arrayLength++;
121 return arrayLength;
H A DExtension.java287 int arrayLength = Array.getLength(array);
288 for (int i = 0; i < arrayLength; i++) {
307 int arrayLength = Array.getLength(array);
308 for (int i = 0; i < arrayLength; i++) {
472 int arrayLength = Array.getLength(array);
480 for (int i = 0; i < arrayLength; i++) {
485 for (int i = 0; i < arrayLength; i++) {
490 for (int i = 0; i < arrayLength; i++) {
495 for (int i = 0; i < arrayLength; i++) {
500 for (int i = 0; i < arrayLength;
[all...]
/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.java128 int arrayLength = reply.getNextValueAsInt();
129 logWriter.println("ArrayReference.Length: arrayLength=" + arrayLength);
131 10, arrayLength);
/external/proguard/src/proguard/optimize/evaluation/
H A DSimpleEnumArrayPropagator.java69 array.referenceValue().arrayLength(
/external/icu/icu4c/source/samples/cal/
H A Dcal.c53 int32_t arrayLength,
59 int32_t arrayLength);
293 int32_t arrayLength,
306 if(count != arrayLength + lowestIndex) {
310 for(i = 0; i < arrayLength; i++) {
311 int32_t idx = (i + firstIndex) % arrayLength;
323 int32_t arrayLength)
327 for(i = 0; i < arrayLength; i++) {
290 get_symbols(const UDateFormat *fmt, UDateFormatSymbolType type, UChar *array[], int32_t arrayLength, int32_t lowestIndex, int32_t firstIndex, UErrorCode *status) argument
322 free_symbols(UChar *array[], int32_t arrayLength) argument
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DUtil.java53 public static void checkOffsetAndCount(long arrayLength, long offset, long count) { argument
54 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;
191 for (int elemNdx = 0; elemNdx < output.arrayLength; elemNdx++)
197 frag << "layout(location = " << output.location << ") out " << outputPrec << " " << typeName << " out" << outNdx << "[" << output.arrayLength << "];\n";
217 bool isArray = output.arrayLength > 0;
221 for (int elemNdx = 0; elemNdx < output.arrayLength; elemNdx++)
335 numVecs += (i->arrayLength > 0 ? i->arrayLength
[all...]
/external/deqp/external/vulkancts/modules/vulkan/ubo/
H A DvktRandomUniformBlockCase.cpp185 const int arrayLength = rnd.getInt(1, m_maxArrayLength); local
187 return VarType(elementType, arrayLength);
/external/parameter-framework/upstream/parameter/include/
H A DElementHandle.h178 * Setting an array requires the std::vector size to match the arrayLength.
179 * Ie: value.size() == arrayLength()
242 * @param arrayLength[in] If accessing as an array: the new value array length
249 bool checkSetValidity(size_t arrayLength, std::string &error) const;
/external/deqp/modules/glshared/
H A DglsRandomUniformBlockCase.cpp192 const int arrayLength = rnd.getInt(1, m_maxArrayLength); local
194 return VarType(elementType, arrayLength);
/external/libmojo/mojo/public/js/
H A Dvalidator.js241 Validator.prototype.arrayLength = function(arrayPointerOffset) {
286 var keysArrayLength = this.arrayLength(keysArrayPointerOffset);
287 var valuesArrayLength = this.arrayLength(valuesArrayPointerOffset);

Completed in 2479 milliseconds

123