HomeSort by relevance Sort by last modified time
    Searched refs:currentPos (Results 1 - 25 of 49) sorted by null

1 2

  /frameworks/base/core/java/android/bluetooth/le/
ScanRecord.java 180 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];
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
ucbuf.c 41 UChar* currentPos;
174 if(buf->currentPos<buf->bufLimit){
175 offset = (int32_t)(buf->bufLimit-buf->currentPos);
176 memmove(buf->buffer,buf->currentPos,offset* sizeof(UChar));
310 buf->currentPos = pTarget;
327 if(buf->currentPos>=buf->bufLimit){
337 return *(buf->currentPos++);
347 if(buf->currentPos+1>=buf->bufLimit){
356 if(U16_IS_LEAD(*(buf->currentPos))){
357 retVal=U16_GET_SUPPLEMENTARY(buf->currentPos[0],buf->currentPos[1])
    [all...]
  /external/javassist/src/main/javassist/expr/
NewArray.java 81 int atype = iterator.byteAt(currentPos + 1);
86 int index = iterator.u16bitAt(currentPos + 1);
127 int index = iterator.u16bitAt(currentPos + 1);
143 return iterator.byteAt(currentPos + 3);
175 int pos = currentPos;
182 index = iterator.byteAt(currentPos + 1); // atype
198 index = iterator.u16bitAt(currentPos + 1);
200 dim = iterator.byteAt(currentPos + 3);
MethodCall.java 35 int pos = currentPos;
86 int pos = currentPos;
148 return iterator.byteAt(currentPos) == INVOKESPECIAL
181 int pos = currentPos;
Expr.java 45 int currentPos;
58 currentPos = pos;
138 int pos = currentPos;
186 return currentPos;
195 return thisMethod.getLineNumber(currentPos);
319 oldIterator.move(currentPos);
NewExpr.java 44 int pos = currentPos;
105 int methodIndex = iterator.u16bitAt(currentPos + 1); // constructor
114 int index = iterator.u16bitAt(currentPos + 1);
134 int index = iterator.u16bitAt(currentPos + 1);
177 pos = currentPos;
Cast.java 65 int pos = currentPos;
92 int pos = currentPos;
Instanceof.java 68 int pos = currentPos;
95 int pos = currentPos;
FieldAccess.java 96 int index = iterator.u16bitAt(currentPos + 1);
104 int index = iterator.u16bitAt(currentPos + 1);
135 int index = iterator.u16bitAt(currentPos + 1);
152 int pos = currentPos;
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/
PlayerActivity.java 243 int currentPos = 0;
244 currentPos = mVideoView.getCurrentPosition();
245 updateSeekbar(currentPos, mDuration);
335 int currentPos = 0;
350 currentPos = mVideoView.getCurrentPosition();
351 currentPos -= delta;
352 if (currentPos > 0)
353 play(currentPos);
356 currentPos = mVideoView.getCurrentPosition();
357 currentPos += delta
    [all...]
  /frameworks/rs/
rsFont.cpp 674 float *currentPos = mTextMeshPtr + mCurrentQuadIndex * vertsPerQuad * floatsPerVert;
685 (*currentPos++) = x1;
686 (*currentPos++) = y1;
687 (*currentPos++) = z1;
688 (*currentPos++) = 0;
689 (*currentPos++) = u1;
690 (*currentPos++) = v1;
692 (*currentPos++) = x2;
693 (*currentPos++) = y2;
694 (*currentPos++) = z2
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Gradient_Delegate.java 102 // 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/
GradientCache.cpp 257 int currentPos = 1;
264 if (pos > positions[currentPos]) {
266 startPos = positions[currentPos];
268 currentPos++;
270 (this->*split)(colors[currentPos], end);
271 distance = positions[currentPos] - startPos;
  /external/javassist/src/main/javassist/bytecode/
CodeIterator.java 38 protected int currentPos;
51 currentPos = mark = 0;
68 currentPos = index;
170 public boolean hasNext() { return currentPos < endPos; }
183 int pos = currentPos;
184 currentPos = nextOpcode(bytecode, pos);
197 return currentPos;
319 return insert0(currentPos, code, false);
392 return insert0(currentPos, code, true);
455 // currentPos will change
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
FusionDictionary.java 601 Position currentPos = mPositions.getLast();
602 mCurrentString.setLength(currentPos.length);
605 if (currentPos.pos.hasNext()) {
606 final PtNode currentPtNode = currentPos.pos.next();
607 currentPos.length = mCurrentString.length();
612 currentPos = new Position(currentPtNode.mChildren.mData);
613 currentPos.length = mCurrentString.length();
614 mPositions.addLast(currentPos);
623 currentPos = mPositions.getLast();
  /libcore/luni/src/main/java/java/io/
RandomAccessFile.java 658 long currentPos = getFilePointer(), eof = length();
659 int newCount = (int) ((currentPos + count > eof) ? eof - currentPos : count);
660 seek(currentPos + newCount);
  /external/lzma/CPP/7zip/Common/
FileStreams.cpp 359 UInt64 currentPos;
360 if (!File.Seek(0, FILE_CURRENT, currentPos))
364 result = result && File.Seek(currentPos, currentPos2);
  /external/lzma/CPP/7zip/Compress/
Bcj2Coder.cpp 175 UInt64 currentPos = (nowPos64 + bufferPos);
176 while (subStreamEndPos < currentPos)
206 UInt64 dest64 = (currentPos + 5) + Int64(Int32(src));
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
Profiler.cs 78 protected Stack<int> currentPos = new Stack<int>();
152 currentPos.Push(pos);
175 descriptor.pos = currentPos.Peek();
657 currentPos.Peek());
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
Profiler.cs 78 protected Stack<int> currentPos = new Stack<int>();
162 currentPos.Push(pos);
188 descriptor.pos = currentPos.Peek();
717 currentPos.Peek());
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
Profiler.java 133 protected Stack<Integer> currentPos = new Stack();
210 currentPos.push(pos);
231 descriptor.pos = (Integer)currentPos.peek();
728 currentPos.peek());
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationListFragment.java 697 int currentPos = list.getSelectedItemPosition();
698 if (currentPos < 0) {
701 currentPos = list.getCheckedItemPosition();
703 if (currentPos >= 0) {
706 viewConversation(currentPos);
    [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
navier-stokes.js 280 var currentPos = j * rowSize;
287 u[++currentPos] -= wScale * (p[++nextPos] - p[++prevPos]);
288 v[currentPos] -= hScale * (p[++nextRow] - p[++prevRow]);
  /external/v8/benchmarks/
navier-stokes.js 262 var currentPos = j * rowSize;
269 u[++currentPos] -= wScale * (p[++nextPos] - p[++prevPos]);
270 v[currentPos] -= hScale * (p[++nextRow] - p[++prevRow]);
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v2/
patricia_trie_policy.cpp 164 int currentPos = pos;
168 &currentPos);

Completed in 794 milliseconds

1 2