Searched refs:currentPos (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/bluetooth/le/
H A DScanRecord.java180 int currentPos = 0;
190 while (currentPos < scanRecord.length) {
192 int length = scanRecord[currentPos++] & 0xFF;
199 int fieldType = scanRecord[currentPos++] & 0xFF;
202 advertiseFlag = scanRecord[currentPos] & 0xFF;
206 parseServiceUuid(scanRecord, currentPos,
211 parseServiceUuid(scanRecord, currentPos, dataLength,
216 parseServiceUuid(scanRecord, currentPos, dataLength,
222 extractBytes(scanRecord, currentPos, dataLength));
225 txPowerLevel = scanRecord[currentPos];
277 parseServiceUuid(byte[] scanRecord, int currentPos, int dataLength, int uuidLength, List<ParcelUuid> serviceUuids) argument
[all...]
/frameworks/rs/
H A DrsFont.cpp678 float *currentPos = mTextMeshPtr + mCurrentQuadIndex * vertsPerQuad * floatsPerVert; local
689 (*currentPos++) = x1;
690 (*currentPos++) = y1;
691 (*currentPos++) = z1;
692 (*currentPos++) = 0;
693 (*currentPos++) = u1;
694 (*currentPos++) = v1;
696 (*currentPos++) = x2;
697 (*currentPos++) = y2;
698 (*currentPos
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DGradient_Delegate.java102 // from 0 to SIZE (100%), or currentPos in the loop below will never equal 1.0
109 float currentPos = (float)i/GRADIENT_SIZE;
110 while (currentPos > mPositions[nextPos]) {
114 float percent = (currentPos - mPositions[prevPos]) /
/frameworks/base/libs/hwui/
H A DGradientCache.cpp264 int currentPos = 1; local
271 if (pos > positions[currentPos]) {
273 startPos = positions[currentPos];
275 currentPos++;
277 (this->*split)(colors[currentPos], end);
278 distance = positions[currentPos] - startPos;
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java502 int currentPos = location[1] + height;
507 if (currentPos > desiredPos) {
508 mScrollView.scrollBy(0, currentPos - desiredPos);

Completed in 179 milliseconds