HomeSort by relevance Sort by last modified time
    Searched refs:arrayLength (Results 26 - 50 of 162) sorted by null

12 3 4 5 6 7

  /external/parameter-framework/upstream/parameter/
ArrayParameter.cpp 191 size_t arrayLength = getArrayLength();
193 for (valueIndex = 0; valueIndex < arrayLength; valueIndex++) {
295 size_t arrayLength = getArrayLength();
301 for (size_t valueIndex = 0; valueIndex < arrayLength; valueIndex++) {
ElementHandle.cpp 364 bool ElementHandle::checkSetValidity(size_t arrayLength, string &error) const
367 if (not checkGetValidity(arrayLength != 0, error)) {
377 if (arrayLength && (arrayLength != getArrayLength())) {
381 to_string(getArrayLength()) + ", got: " + to_string(arrayLength);
  /libcore/ojluni/src/main/java/java/util/stream/
SpinedBuffer.java 479 protected abstract int arrayLength(T_ARR array);
487 ? arrayLength(curChunk)
488 : priorElementCount[spineIndex] + arrayLength(spine[spineIndex]);
511 priorElementCount[i] = priorElementCount[i-1] + arrayLength(spine[i - 1]);
533 if (index < priorElementCount[j] + arrayLength(spine[j]))
541 if (finalOffset > arrayLength(array) || finalOffset < offset) {
550 System.arraycopy(spine[i], 0, array, offset, arrayLength(spine[i]));
551 offset += arrayLength(spine[i]);
568 if (elementIndex == arrayLength(curChunk)) {
592 arrayForEach(spine[j], 0, arrayLength(spine[j]), consumer)
    [all...]
Nodes.java     [all...]
  /external/icu/icu4c/source/samples/cal/
cal.c 49 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++) {
  /external/proguard/src/proguard/evaluation/value/
ReferenceValue.java 68 public IntegerValue arrayLength(ValueFactory valueFactory)
ValueFactory.java 170 IntegerValue arrayLength)
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
Util.java 53 public static void checkOffsetAndCount(long arrayLength, long offset, long count) {
54 if ((offset | count) < 0 || offset > arrayLength || arrayLength - offset < count) {
  /external/deqp/modules/gles3/functional/
es3fFragmentOutputTests.cpp 99 , arrayLength (0)
107 , arrayLength (arrayLength_)
114 int arrayLength; //!< 0 if not an array.
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 : 1)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/ubo/
vktRandomUniformBlockCase.cpp 185 const int arrayLength = rnd.getInt(1, m_maxArrayLength);
187 return VarType(elementType, arrayLength);
  /frameworks/base/obex/javax/obex/
ObexHelper.java     [all...]
  /external/parameter-framework/upstream/parameter/include/
ElementHandle.h 178 * 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/
glsRandomUniformBlockCase.cpp 192 const int arrayLength = rnd.getInt(1, m_maxArrayLength);
194 return VarType(elementType, arrayLength);
  /prebuilts/tools/common/m2/repository/com/google/protobuf/nano/protobuf-javanano/3.0.0-alpha-5/
protobuf-javanano-3.0.0-alpha-5.jar 
  /cts/tests/tests/print/src/android/print/cts/
PrintAttributesTest.java 334 int arrayLength = array.length;
335 for (int i = 0; i < arrayLength; i++) {
  /external/proguard/src/proguard/evaluation/
Processor.java 541 IntegerValue arrayLength = stack.ipop();
544 arrayLength));
549 stack.push(referenceValue.arrayLength(valueFactory));
638 IntegerValue arrayLength = stack.ipop();
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ThreadTest.java 306 int arrayLength = 10;
307 Thread[] tarray = new Thread[arrayLength];
  /prebuilts/tools/common/fest/
fest-util-1.1.3.jar 
  /dalvik/dx/src/com/android/dx/cf/code/
BytecodeArray.java 208 * their pushed type. E.g., {@code arraylength} gets type
682 case ByteOps.ARRAYLENGTH: {
    [all...]
  /cts/tests/camera/src/android/hardware/camera2/cts/
CameraTestUtils.java     [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
CameraTestUtils.java     [all...]
  /external/jarjar/lib/
asm-commons-4.0.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
asm-commons-3.3.jar 
  /external/proguard/src/proguard/optimize/evaluation/
EvaluationSimplifier.java     [all...]
  /libcore/ojluni/src/main/java/java/util/
Spliterators.java 378 * @param arrayLength The length of the array
385 private static void checkFromToBounds(int arrayLength, int origin, int fence) {
393 if (fence > arrayLength) {
    [all...]

Completed in 715 milliseconds

12 3 4 5 6 7