/external/chromium_org/third_party/WebKit/Source/platform/scroll/ |
ScrollAnimator.cpp | 56 float* currentPos = (orientation == HorizontalScrollbar) ? &m_currentPosX : &m_currentPosY; 57 float newPos = clampScrollPosition(orientation, *currentPos + step * multiplier); 58 float delta = *currentPos - newPos; 59 if (*currentPos == newPos) 61 *currentPos = newPos;
|
Scrollbar.h | 87 virtual float currentPos() const { return m_currentPos; }
|
/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]) /
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderMarquee.cpp | 303 int currentPos = (isHorizontal() ? layer()->scrollableArea()->scrollXOffset() : layer()->scrollableArea()->scrollYOffset()); 304 newPos = currentPos + (addIncrement ? increment : -increment);
|
/external/chromium_org/third_party/WebKit/Source/platform/exported/ |
WebScrollbarThemeClientImpl.cpp | 167 float WebScrollbarThemeClientImpl::currentPos() const
|
/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);
|
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/bigram/ |
dynamic_bigram_list_policy.cpp | 345 int currentPos = originalBigramPos; 347 nodeReader.fetchNodeInfoInBufferFromPtNodePos(currentPos); 350 currentPos = nodeReader.getBigramLinkedNodePos(); 351 nodeReader.fetchNodeInfoInBufferFromPtNodePos(currentPos); 359 return currentPos;
|
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/ |
patricia_trie_policy.cpp | 132 int currentPos = pos; 135 ::readChildrenPositionAndAdvancePosition(mDictRoot, flags, ¤tPos);
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/digest/ |
SHA1.java | 21 private int currentPos; 42 currentPos = 0; 58 int idx = currentPos >> 2; 60 switch (currentPos & 3) 65 currentPos += 4; 67 if (currentPos == 64) 70 currentPos = 0; 76 currentPos += 3; 78 if (currentPos == 64) 81 currentPos = 0 [all...] |
/external/javassist/src/main/javassist/expr/ |
Expr.java | 45 int currentPos; 58 currentPos = pos; 138 int pos = currentPos; 186 return currentPos; 195 return thisMethod.getLineNumber(currentPos); 319 oldIterator.move(currentPos);
|
/external/lzma/CPP/7zip/Compress/ |
Bcj2Coder.cpp | 175 UInt64 currentPos = (nowPos64 + bufferPos);
176 while (subStreamEndPos < currentPos)
206 UInt64 dest64 = (currentPos + 5) + Int64(Int32(src));
|
/frameworks/base/libs/hwui/ |
GradientCache.cpp | 265 int currentPos = 1; 272 if (pos > positions[currentPos]) { 274 startPos = positions[currentPos]; 276 currentPos++; 278 (this->*split)(colors[currentPos], end); 279 distance = positions[currentPos] - startPos;
|
/external/chromium_org/third_party/icu/source/tools/toolutil/ |
ucbuf.c | 40 UChar* currentPos; 173 if(buf->currentPos<buf->bufLimit){ 174 offset = (int32_t)(buf->bufLimit-buf->currentPos); 175 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(UTF_IS_LEAD(*(buf->currentPos))){ 357 retVal=UTF16_GET_PAIR_VALUE(buf->currentPos[0],buf->currentPos[1]) [all...] |
/external/icu4c/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)); 311 buf->currentPos = pTarget; 328 if(buf->currentPos>=buf->bufLimit){ 338 return *(buf->currentPos++); 348 if(buf->currentPos+1>=buf->bufLimit){ 357 if(U16_IS_LEAD(*(buf->currentPos))){ 358 retVal=U16_GET_SUPPLEMENTARY(buf->currentPos[0],buf->currentPos[1]) [all...] |
/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/chromium_org/third_party/WebKit/Source/core/dom/ |
Position.cpp | 491 Position currentPos = *this; 492 while (!currentPos.atStartOfTree()) { 493 currentPos = currentPos.previous(); 495 if (currentPos.deprecatedNode()->rootEditableElement() != fromRootEditableElement) 499 if (currentPos.isCandidate()) 500 return currentPos; 501 } else if (rendersInDifferentPosition(currentPos)) 502 return currentPos; 519 Position currentPos = *this [all...] |
/frameworks/av/libvideoeditor/vss/3gpwriter/inc/ |
M4MP4W_Types.h | 203 M4OSA_UInt32 currentPos; /* Init to 0 */ 245 M4OSA_UInt32 currentPos ; /* Init to 0*/
|
/libcore/luni/src/main/java/java/io/ |
RandomAccessFile.java | 656 long currentPos = getFilePointer(), eof = length(); 657 int newCount = (int) ((currentPos + count > eof) ? eof - currentPos : count); 658 seek(currentPos + newCount);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/ |
BinaryDictDecoderUtils.java | 364 int currentPos = pos; 372 dictDecoder.setPosition(currentPos); 373 currentInfo = dictDecoder.readPtNode(currentPos, options); 375 currentPos = currentInfo.mParentAddress + currentInfo.mOriginalAddress; 385 currentPos = currentInfo.mParentAddress + currentInfo.mOriginalAddress;
|
FusionDictionary.java | [all...] |
/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());
|
/frameworks/rs/ |
rsFont.cpp | 678 float *currentPos = mTextMeshPtr + mCurrentQuadIndex * vertsPerQuad * floatsPerVert; 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++) = z2 [all...] |
/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...] |
/frameworks/ex/chips/src/com/android/ex/chips/ |
RecipientEditTextView.java | 454 int currentPos = location[1] + height; 459 if (currentPos > desiredPos) { 460 mScrollView.scrollBy(0, currentPos - desiredPos); [all...] |