Searched refs:newPosition (Results 1 - 25 of 43) sorted by relevance

12

/external/lzma/CPP/7zip/Common/
H A DOffsetStream.cpp21 UInt64 *newPosition)
27 if (newPosition != NULL)
28 *newPosition = absoluteNewPosition - _offset;
20 Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) argument
H A DOffsetStream.h21 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
H A DLimitedStreams.cpp48 STDMETHODIMP CLimitedInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) argument
57 if (newPosition)
58 *newPosition = _virtPos;
99 STDMETHODIMP CClusterInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) argument
112 if (newPosition)
113 *newPosition = newVirtPos;
H A DFileStreams.cpp244 UInt64 *newPosition)
263 if (newPosition)
264 *newPosition = newVirtPos;
276 if (newPosition != NULL)
277 *newPosition = realNewPosition;
285 if (newPosition != NULL)
286 *newPosition = (UInt64)res;
332 STDMETHODIMP COutFileStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) argument
340 if (newPosition != NULL)
341 *newPosition
243 Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) argument
[all...]
H A DStreamObjects.cpp27 STDMETHODIMP CBufInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) argument
36 if (newPosition)
37 *newPosition = _pos;
209 STDMETHODIMP CCachedInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) argument
218 if (newPosition != 0)
219 *newPosition = _pos;
H A DFileStreams.h61 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
129 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
H A DLimitedStreams.h60 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
97 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
H A DStreamObjects.h38 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
132 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
H A DCWrappers.cpp117 UInt64 newPosition; local
118 p->Res = p->Stream->Seek(*offset, moveMethod, &newPosition);
119 *offset = (Int64)newPosition;
/external/chromium_org/chrome/browser/resources/net_internals/
H A Dhorizontal_scrollbar_view.js114 var newPosition = this.getNode().scrollLeft;
115 if (newPosition == this.position_)
117 this.position_ = newPosition;
H A 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/icu/icu4c/source/layout/
H A DGlyphIterator.cpp208 void GlyphIterator::setCurrStreamPosition(le_int32 newPosition) argument
211 if (newPosition >= prevLimit) {
216 if (newPosition <= nextLimit) {
221 if (newPosition <= prevLimit) {
226 if (newPosition >= nextLimit) {
232 position = newPosition - direction;
459 le_int32 newPosition = position; local
461 while (newPosition != nextLimit && delta > 0) {
463 newPosition += direction;
464 //fprintf(stderr,"%s:%d:%s: newPosition
483 le_int32 newPosition = position; local
524 le_int32 newPosition = position; local
[all...]
/external/lzma/CPP/7zip/Archive/Common/
H A DMultiStream.cpp52 STDMETHODIMP CMultiStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) argument
61 if (newPosition != 0)
62 *newPosition = _pos;
170 STDMETHODIMP COutMultiStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)
H A DInStreamWithCRC.cpp35 STDMETHODIMP CInStreamWithCRC::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) argument
41 return _stream->Seek(offset, seekOrigin, newPosition);
H A DMultiStream.h47 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
80 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
H A DInStreamWithCRC.h47 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
/external/lzma/CPP/7zip/
H A DIStream.h39 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) PURE;
44 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) PURE;
/external/lzma/CPP/Windows/
H A DFileIO.cpp193 bool CFileBase::Seek(Int64 distanceToMove, DWORD moveMethod, UInt64 &newPosition) const
209 newPosition = value.QuadPart;
213 bool CFileBase::Seek(UInt64 position, UInt64 &newPosition) argument
215 return Seek(position, FILE_BEGIN, newPosition);
220 UInt64 newPosition; local
221 return Seek(0, newPosition);
224 bool CFileBase::SeekToEnd(UInt64 &newPosition) argument
226 return Seek(0, FILE_END, newPosition);
426 UInt64 newPosition; local
427 if (!Seek(length, newPosition))
[all...]
H A 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/third_party/WebKit/Source/platform/scroll/
H A DScrollAnimatorNone.cpp231 float newPosition = m_desiredPosition + pixelDelta; local
233 if (newPosition < 0 || newPosition > scrollableSize)
234 newPosition = std::max(std::min(newPosition, scrollableSize), 0.0f);
236 if (newPosition == m_desiredPosition)
239 m_desiredPosition = newPosition;
352 double newPosition = newScrollAnimationPosition(deltaTime); local
355 m_currentVelocity = (newPosition - *m_currentPosition) / lastScrollInterval;
356 *m_currentPosition = newPosition;
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DChromeBrowserProviderSuggestionsCursor.java127 public boolean onMove(int oldPosition, int newPosition) { argument
128 return mCursor.moveToPosition(newPosition);
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/database/
H A DSQLiteCursor.java107 public boolean onMove(int oldPosition, int newPosition) { argument
109 nativeMoveTo(mNativeSQLiteCursor, newPosition);
111 return super.onMove(oldPosition, newPosition);
247 private native int nativeMoveTo(long nativeSQLiteCursor, int newPosition); argument
/external/chromium_org/chrome/browser/resources/options/chromeos/
H A Ddisplay_options.js369 var newPosition = {
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
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/chrome/
H A 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/
H A DHTMLTextFormControlElementTest.cpp216 Position newPosition(input->innerEditorElement()->firstChild(), 3, Position::PositionIsOffsetInAnchor);
217 VisibleSelection newSelection(newPosition, DOWNSTREAM);

Completed in 3676 milliseconds

12