HomeSort by relevance Sort by last modified time
    Searched refs:arrIndex (Results 1 - 8 of 8) sorted by null

  /external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
RubyRepeatedField.java 112 int arrIndex = normalizeArrayIndex(index);
115 for (int i = this.storage.size(); i < arrIndex; i++) {
118 this.storage.set(arrIndex, value);
134 int arrIndex = normalizeArrayIndex(arg);
135 if (arrIndex < 0 || arrIndex >= this.storage.size()) {
138 return this.storage.eltInternal(arrIndex);
398 int arrIndex = RubyNumeric.num2int(index);
400 if (arrIndex < 0 && arrSize > 0) {
401 arrIndex = arrSize + arrIndex
    [all...]
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
SweepTests.java 124 int arrIndex = Math.min(index, bitmapComparers.length - 1);
133 builder.runWithComparer(bitmapComparers[arrIndex]);
  /packages/services/Car/car-support-lib/src/android/support/car/hardware/
CarSensorManagerEmbedded.java 64 int arrIndex = 0;
66 arr[arrIndex] = item;
67 arrIndex++;
CarSensorsProxy.java 216 int arrIndex = 0;
218 arr[arrIndex] = item;
219 arrIndex++;
  /device/generic/goldfish-opengl/shared/OpenglCodecCommon/
GLSharedGroup.h 101 GLint locationWARHostToApp(GLint hostLoc, GLint arrIndex);
175 GLint locationWARHostToApp(GLuint program, GLint hostLoc, GLint arrIndex);
GLSharedGroup.cpp 131 GLint ProgramData::locationWARHostToApp(GLint hostLoc, GLint arrIndex)
137 if (arrIndex > 0) {
139 (hostLoc - m_Indexes[index].base) / arrIndex;
141 return m_Indexes[index].appBase + arrIndex;
475 GLint GLSharedGroup::locationWARHostToApp(GLuint program, GLint hostLoc, GLint arrIndex)
479 if (pData) return pData->locationWARHostToApp(hostLoc, arrIndex);
482 if (spData) return spData->programData->locationWARHostToApp(hostLoc, arrIndex);
  /external/pdfium/core/fpdfapi/parser/
cpdf_parser.cpp 966 std::vector<std::pair<int32_t, int32_t>> arrIndex;
977 arrIndex.push_back(std::make_pair(nStartNum, nCount));
982 if (arrIndex.size() == 0)
983 arrIndex.push_back(std::make_pair(0, size));
1006 for (uint32_t i = 0; i < arrIndex.size(); i++) {
1007 int32_t startnum = arrIndex[i].first;
1012 uint32_t count = pdfium::base::checked_cast<uint32_t>(arrIndex[i].second);
    [all...]
  /device/generic/goldfish-opengl/system/GLESv2_enc/
GL2Encoder.cpp     [all...]

Completed in 519 milliseconds