/external/proguard/src/proguard/evaluation/value/ |
D | ArrayReferenceValue.java | 34 protected final IntegerValue arrayLength; field in ArrayReferenceValue 42 IntegerValue arrayLength) in ArrayReferenceValue() argument 46 this.arrayLength = arrayLength; in ArrayReferenceValue() 52 public IntegerValue arrayLength(ValueFactory valueFactory) in arrayLength() method in ArrayReferenceValue 54 return arrayLength; in arrayLength() 98 … this.arrayLength.generalize(other.arrayLength)) : in generalize() 105 if (this.arrayLength.equal(other.arrayLength) == NEVER) in equal() 150 this.arrayLength.equals(((ArrayReferenceValue)object).arrayLength); in equals() 157 arrayLength.hashCode(); in hashCode() 163 return super.toString() + '['+arrayLength+']'; in toString()
|
D | DetailedArrayReferenceValue.java | 46 IntegerValue arrayLength, in DetailedArrayReferenceValue() argument 50 super(type, referencedClass, arrayLength, valuefactory, id); in DetailedArrayReferenceValue() 53 if (arrayLength.isParticular() && in DetailedArrayReferenceValue() 54 arrayLength.value() <= MAXIMUM_STORED_ARRAY_LENGTH) in DetailedArrayReferenceValue() 64 this.values = new Value[arrayLength.value()]; in DetailedArrayReferenceValue()
|
D | DetailedValueFactory.java | 38 IntegerValue arrayLength) in createArrayReferenceValue() argument 44 arrayLength, in createArrayReferenceValue()
|
D | IdentifiedValueFactory.java | 82 IntegerValue arrayLength) in createArrayReferenceValue() argument 88 arrayLength, in createArrayReferenceValue()
|
D | IdentifiedArrayReferenceValue.java | 42 IntegerValue arrayLength, in IdentifiedArrayReferenceValue() argument 46 super(type, referencedClass, arrayLength); in IdentifiedArrayReferenceValue()
|
D | ParticularValueFactory.java | 103 IntegerValue arrayLength) in createArrayReferenceValue() argument 109 arrayLength); in createArrayReferenceValue()
|
D | ValueFactory.java | 170 IntegerValue arrayLength) in createArrayReferenceValue() argument
|
D | ReferenceValue.java | 68 public IntegerValue arrayLength(ValueFactory valueFactory) in arrayLength() method in ReferenceValue
|
/external/protobuf/java/src/main/java/com/google/protobuf/nano/ |
D | Extension.java | 287 int arrayLength = Array.getLength(array); in writeRepeatedData() local 288 for (int i = 0; i < arrayLength; i++) { in writeRepeatedData() 307 int arrayLength = Array.getLength(array); in computeRepeatedSerializedSize() local 308 for (int i = 0; i < arrayLength; i++) { in computeRepeatedSerializedSize() 507 int arrayLength = Array.getLength(array); in writeRepeatedData() local 515 for (int i = 0; i < arrayLength; i++) { in writeRepeatedData() 520 for (int i = 0; i < arrayLength; i++) { in writeRepeatedData() 525 for (int i = 0; i < arrayLength; i++) { in writeRepeatedData() 530 for (int i = 0; i < arrayLength; i++) { in writeRepeatedData() 535 for (int i = 0; i < arrayLength; i++) { in writeRepeatedData() [all …]
|
D | WireFormatNano.java | 113 int arrayLength = 1; in getRepeatedFieldArrayLength() local 118 arrayLength++; in getRepeatedFieldArrayLength() 121 return arrayLength; in getRepeatedFieldArrayLength()
|
/external/conscrypt/src/main/java/org/conscrypt/util/ |
D | ArrayUtils.java | 32 public static final void checkOffsetAndCount(int arrayLength, int offset, int count) { in checkOffsetAndCount() argument 33 if ((offset | count) < 0 || offset > arrayLength || arrayLength - offset < count) { in checkOffsetAndCount() 34 throw new ArrayIndexOutOfBoundsException("length=" + arrayLength + "; regionStart=" in checkOffsetAndCount()
|
/external/parameter-framework/upstream/parameter/ |
D | ParameterBlockType.cpp | 57 size_t arrayLength = getArrayLength(); in populate() local 59 if (arrayLength) { in populate() 62 for (size_t child = 0; child < arrayLength; child++) { in populate()
|
D | ComponentInstance.cpp | 123 size_t arrayLength = getArrayLength(); in populate() local 125 if (arrayLength != 0) { in populate() 128 for (size_t child = 0; child < arrayLength; child++) { in populate()
|
D | ElementHandle.cpp | 364 bool ElementHandle::checkSetValidity(size_t arrayLength, string &error) const in checkSetValidity() argument 367 if (not checkGetValidity(arrayLength != 0, error)) { in checkSetValidity() 377 if (arrayLength && (arrayLength != getArrayLength())) { in checkSetValidity() 381 to_string(getArrayLength()) + ", got: " + to_string(arrayLength); in checkSetValidity()
|
D | ArrayParameter.cpp | 191 size_t arrayLength = getArrayLength(); in setDefaultValues() local 193 for (valueIndex = 0; valueIndex < arrayLength; valueIndex++) { in setDefaultValues() 295 size_t arrayLength = getArrayLength(); in getValues() local 301 for (size_t valueIndex = 0; valueIndex < arrayLength; valueIndex++) { in getValues()
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/ |
D | BerInputStreamTest.java | 109 int arrayLength = 17000; in test_CtorLjava_io_ByteArrayInputStream() local 112 byte[] encoding = new byte[arrayLength + 4]; in test_CtorLjava_io_ByteArrayInputStream() 117 encoding[2] = (byte) (arrayLength >> 8); in test_CtorLjava_io_ByteArrayInputStream() 118 encoding[3] = (byte) (arrayLength & 0xFF); in test_CtorLjava_io_ByteArrayInputStream()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
D | TypesLengths.java | 104 private static int arrayLength; field in TypesLengths 165 return arrayLength; in getTypeLength() 254 arrayLength = typeLength; in setTypeLength()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayType/ |
D | NewInstanceTest.java | 127 int arrayLength = reply.getNextValueAsInt(); in testNewInstance001() local 128 logWriter.println("ArrayReference.Length: arrayLength=" + arrayLength); in testNewInstance001() 130 10, arrayLength); in testNewInstance001()
|
/external/icu/icu4c/source/samples/cal/ |
D | cal.c | 49 int32_t arrayLength, 55 int32_t arrayLength); 289 int32_t arrayLength, in get_symbols() argument 302 if(count != arrayLength + lowestIndex) { in get_symbols() 306 for(i = 0; i < arrayLength; i++) { in get_symbols() 307 int32_t idx = (i + firstIndex) % arrayLength; in get_symbols() 319 int32_t arrayLength) in free_symbols() argument 323 for(i = 0; i < arrayLength; i++) { in free_symbols()
|
/external/deqp/modules/gles3/functional/ |
D | es3fFragmentOutputTests.cpp | 99 , arrayLength (0) in FragmentOutput() 107 , arrayLength (arrayLength_) in FragmentOutput() 114 int arrayLength; //!< 0 if not an array. member 182 bool isArray = output.arrayLength > 0; in createProgram() 191 for (int elemNdx = 0; elemNdx < output.arrayLength; elemNdx++) in createProgram() 197 … out " << outputPrec << " " << typeName << " out" << outNdx << "[" << output.arrayLength << "];\n"; in createProgram() 217 bool isArray = output.arrayLength > 0; in createProgram() 221 for (int elemNdx = 0; elemNdx < output.arrayLength; elemNdx++) in createProgram() 335 numVecs += (i->arrayLength > 0 ? i->arrayLength : 1); in getNumInputVectors() 631 int numVecs = output.arrayLength > 0 ? output.arrayLength : 1; in iterate() [all …]
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/ |
D | Util.java | 53 public static void checkOffsetAndCount(long arrayLength, long offset, long count) { in checkOffsetAndCount() argument 54 if ((offset | count) < 0 || offset > arrayLength || arrayLength - offset < count) { in checkOffsetAndCount()
|
/external/proguard/src/proguard/optimize/evaluation/ |
D | SimpleEnumArrayPropagator.java | 69 array.referenceValue().arrayLength( in visitProgramMethod()
|
/external/deqp/external/vulkancts/modules/vulkan/ubo/ |
D | vktRandomUniformBlockCase.cpp | 185 const int arrayLength = rnd.getInt(1, m_maxArrayLength); in generateType() local 187 return VarType(elementType, arrayLength); in generateType()
|
/external/deqp/modules/glshared/ |
D | glsRandomUniformBlockCase.cpp | 192 const int arrayLength = rnd.getInt(1, m_maxArrayLength); in generateType() local 194 return VarType(elementType, arrayLength); in generateType()
|
/external/proguard/src/proguard/evaluation/ |
D | Processor.java | 541 IntegerValue arrayLength = stack.ipop(); in visitSimpleInstruction() local 544 arrayLength)); in visitSimpleInstruction() local 549 stack.push(referenceValue.arrayLength(valueFactory)); in visitSimpleInstruction() 638 IntegerValue arrayLength = stack.ipop(); in visitConstantInstruction() local
|