HomeSort by relevance Sort by last modified time
    Searched defs:endFrame (Results 1 - 4 of 4) sorted by null

  /external/chromium/chrome/browser/ui/cocoa/
animatable_image.h 40 @property(nonatomic) CGRect endFrame;
48 // and |endFrame| properties of the animation.
  /external/webkit/Source/WebCore/loader/archive/
ArchiveResourceCollection.cpp 53 Vector<RefPtr<Archive> >::const_iterator endFrame = subframes.end();
55 for (; iFrame != endFrame; ++iFrame) {
  /external/srec/portable/include/
pstream.h 40 struct FileBufferFrame *endFrame;
  /external/webkit/Source/WebCore/webaudio/
AudioBufferSourceNode.cpp 170 unsigned endFrame = m_isGrain ? static_cast<unsigned>(startFrame + m_grainDuration * bufferSampleRate) : bufferLength;
175 endFrame += 512;
180 if (endFrame > bufferLength)
181 endFrame = bufferLength;
182 if (m_readIndex >= endFrame)
210 ASSERT(m_readIndex <= endFrame);
211 if (m_readIndex > endFrame)
215 int framesAvailable = endFrame - m_readIndex;
235 if (m_readIndex >= endFrame) {

Completed in 211 milliseconds