Home
last modified time | relevance | path

Searched refs:newPosition (Results 1 – 25 of 34) sorted by relevance

12

/external/icu/icu4c/source/layout/
DGlyphIterator.cpp208 void GlyphIterator::setCurrStreamPosition(le_int32 newPosition) in setCurrStreamPosition() argument
211 if (newPosition >= prevLimit) { in setCurrStreamPosition()
216 if (newPosition <= nextLimit) { in setCurrStreamPosition()
221 if (newPosition <= prevLimit) { in setCurrStreamPosition()
226 if (newPosition >= nextLimit) { in setCurrStreamPosition()
232 position = newPosition - direction; in setCurrStreamPosition()
459 le_int32 newPosition = position; in nextInternal() local
461 while (newPosition != nextLimit && delta > 0) { in nextInternal()
463 newPosition += direction; in nextInternal()
465 } while (newPosition != nextLimit && filterGlyph(newPosition)); in nextInternal()
[all …]
/external/lzma/CPP/7zip/Common/
DFileStreams.cpp244 UInt64 *newPosition) in Seek() argument
263 if (newPosition) in Seek()
264 *newPosition = newVirtPos; in Seek()
276 if (newPosition != NULL) in Seek()
277 *newPosition = realNewPosition; in Seek()
285 if (newPosition != NULL) in Seek()
286 *newPosition = (UInt64)res; in Seek()
332 STDMETHODIMP COutFileStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) in Seek() argument
340 if (newPosition != NULL) in Seek()
341 *newPosition = realNewPosition; in Seek()
[all …]
DLimitedStreams.cpp48 STDMETHODIMP CLimitedInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) in Seek() argument
57 if (newPosition) in Seek()
58 *newPosition = _virtPos; in Seek()
99 STDMETHODIMP CClusterInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) in Seek() argument
112 if (newPosition) in Seek()
113 *newPosition = newVirtPos; in Seek()
DOffsetStream.cpp21 UInt64 *newPosition) in Seek() argument
27 if (newPosition != NULL) in Seek()
28 *newPosition = absoluteNewPosition - _offset; in Seek()
DStreamObjects.cpp27 STDMETHODIMP CBufInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) in Seek() argument
36 if (newPosition) in Seek()
37 *newPosition = _pos; in Seek()
209 STDMETHODIMP CCachedInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) in Seek() argument
218 if (newPosition != 0) in Seek()
219 *newPosition = _pos; in Seek()
DCWrappers.cpp117 UInt64 newPosition; in InStreamWrap_Seek() local
118 p->Res = p->Stream->Seek(*offset, moveMethod, &newPosition); in InStreamWrap_Seek()
119 *offset = (Int64)newPosition; in InStreamWrap_Seek()
DLimitedStreams.h60 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
97 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
DFileStreams.h61 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
129 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
DStreamObjects.h38 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
132 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
DOffsetStream.h21 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
/external/lzma/CPP/Windows/
DFileIO.cpp193 bool CFileBase::Seek(Int64 distanceToMove, DWORD moveMethod, UInt64 &newPosition) const in Seek()
209 newPosition = value.QuadPart; in Seek()
213 bool CFileBase::Seek(UInt64 position, UInt64 &newPosition) in Seek() argument
215 return Seek(position, FILE_BEGIN, newPosition); in Seek()
220 UInt64 newPosition; in SeekToBegin() local
221 return Seek(0, newPosition); in SeekToBegin()
224 bool CFileBase::SeekToEnd(UInt64 &newPosition) in SeekToEnd() argument
226 return Seek(0, FILE_END, newPosition); in SeekToEnd()
426 UInt64 newPosition; in SetLength() local
427 if (!Seek(length, newPosition)) in SetLength()
[all …]
DFileIO.h53 bool Seek(Int64 distanceToMove, DWORD moveMethod, UInt64 &newPosition) const;
54 bool Seek(UInt64 position, UInt64 &newPosition);
56 bool SeekToEnd(UInt64 &newPosition);
/external/chromium_org/chrome/browser/resources/net_internals/
Dhorizontal_scrollbar_view.js114 var newPosition = this.getNode().scrollLeft;
115 if (newPosition == this.position_)
117 this.position_ = newPosition;
Dtimeline_graph_view.js222 var newPosition = this.scrollbar_.getPosition() + Math.round(delta);
224 if (newPosition < 0) {
225 newPosition = 0;
226 } else if (newPosition > this.scrollbar_.getRange()) {
227 newPosition = this.scrollbar_.getRange();
230 if (this.scrollbar_.getPosition() == newPosition)
232 this.scrollbar_.setPosition(newPosition);
260 var newPosition = newMaxTime - this.canvas_.width;
264 this.horizontalScroll_(newPosition - this.scrollbar_.getPosition());
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
DScrollAnimatorNone.cpp231 float newPosition = m_desiredPosition + pixelDelta; in updateDataFromParameters() local
233 if (newPosition < 0 || newPosition > scrollableSize) in updateDataFromParameters()
234 newPosition = std::max(std::min(newPosition, scrollableSize), 0.0f); in updateDataFromParameters()
236 if (newPosition == m_desiredPosition) in updateDataFromParameters()
239 m_desiredPosition = newPosition; in updateDataFromParameters()
352 double newPosition = newScrollAnimationPosition(deltaTime); in animateScroll() local
355 m_currentVelocity = (newPosition - *m_currentPosition) / lastScrollInterval; in animateScroll()
356 *m_currentPosition = newPosition; in animateScroll()
/external/chromium_org/chrome/browser/resources/options/chromeos/
Ddisplay_options.js369 var newPosition = { variable
380 newPosition.x = this.snapToEdge_(newPosition.x, draggingDiv.offsetWidth,
382 newPosition.y = this.snapToEdge_(newPosition.y, draggingDiv.offsetHeight,
386 x: newPosition.x + draggingDiv.offsetWidth / 2,
387 y: newPosition.y + draggingDiv.offsetHeight / 2
421 if (newPosition.y > baseDiv.offsetTop + baseDiv.offsetHeight)
425 else if (newPosition.y + draggingDiv.offsetHeight <
431 if (newPosition.x > baseDiv.offsetLeft + baseDiv.offsetWidth)
435 else if (newPosition.x + draggingDiv.offsetWidth <
466 draggingDiv.style.top = newPosition.y + 'px';
[all …]
/external/lzma/CPP/7zip/Archive/Common/
DMultiStream.cpp52 STDMETHODIMP CMultiStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) in Seek() argument
61 if (newPosition != 0) in Seek()
62 *newPosition = _pos; in Seek()
DInStreamWithCRC.cpp35 STDMETHODIMP CInStreamWithCRC::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) in Seek() argument
41 return _stream->Seek(offset, seekOrigin, newPosition); in Seek()
DMultiStream.h47 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
DInStreamWithCRC.h47 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/database/
DSQLiteCursor.java107 public boolean onMove(int oldPosition, int newPosition) { in onMove() argument
109 nativeMoveTo(mNativeSQLiteCursor, newPosition); in onMove()
111 return super.onMove(oldPosition, newPosition); in onMove()
247 private native int nativeMoveTo(long nativeSQLiteCursor, int newPosition); in nativeMoveTo() argument
/external/lzma/CPP/7zip/
DIStream.h39 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) PURE;
44 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) PURE;
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
DChromeBrowserProviderSuggestionsCursor.java127 public boolean onMove(int oldPosition, int newPosition) { in onMove() argument
128 return mCursor.moveToPosition(newPosition); in onMove()
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/chrome/
Dbraille_display_manager.js319 var newPosition = this.panPosition_ + this.displayState_.textCellCount;
320 if (newPosition >= this.translatedContent_.byteLength) {
326 this.panPosition_ = newPosition;
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLTextFormControlElementTest.cpp216 …Position newPosition(input->innerEditorElement()->firstChild(), 3, Position::PositionIsOffsetInAnc… in TEST_F() local
217 VisibleSelection newSelection(newPosition, DOWNSTREAM); in TEST_F()

12