Searched defs:startFrame (Results 1 - 12 of 12) sorted by relevance

/external/chromium/chrome/browser/ui/cocoa/
H A Danimatable_image.h39 @property(nonatomic) CGRect startFrame; variable
47 // |animationFrame| should usually be big enough to contain the |startFrame|
/external/webkit/Source/WebCore/platform/audio/
H A DAudioChannel.cpp60 void AudioChannel::copyFromRange(const AudioChannel* sourceChannel, unsigned startFrame, unsigned endFrame) argument
63 bool isRangeSafe = sourceChannel && startFrame < endFrame && endFrame <= sourceChannel->length();
69 size_t rangeLength = endFrame - startFrame;
77 memcpy(destination, source + startFrame, sizeof(float) * rangeLength);
H A DAudioBus.cpp146 PassOwnPtr<AudioBus> AudioBus::createBufferFromRange(AudioBus* sourceBuffer, unsigned startFrame, unsigned endFrame) argument
152 bool isRangeSafe = startFrame < endFrame && endFrame <= numberOfSourceFrames;
157 size_t rangeLength = endFrame - startFrame;
163 audioBus->channel(i)->copyFromRange(sourceBuffer->channel(i), startFrame, endFrame);
/external/srec/portable/include/
H A Dpstream.h39 struct FileBufferFrame *startFrame; member in struct:PORT_FILE_HANDLE
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
H A DIpo.java113 * @param startFrame
126 public Track calculateTrack(int targetIndex, int startFrame, int stopFrame, int fps, boolean spatialTrack) { argument
129 int framesAmount = stopFrame - startFrame;
130 float start = (startFrame - 1.0f) / fps;
144 for (int frame = startFrame; frame <= stopFrame; ++frame) {
145 int index = frame - startFrame;
H A DIpoHelper.java195 public BoneTrack calculateTrack(int boneIndex, int startFrame, int stopFrame, int fps, boolean boneTrack) { argument
/external/qemu/distrib/sdl-1.2.15/src/cdrom/macosx/
H A DSDL_syscdrom.c121 int startFrame, stopFrame; local
128 nextTrackFramesRemaining, &startFrame, &stopFrame);
136 LoadFile (file, startFrame, stopFrame);
350 int startFrame, stopFrame; local
369 ref = GetFileForOffset (cdrom, start, length, &startFrame, &stopFrame);
375 if (LoadFile (ref, startFrame, stopFrame) < 0)
H A DCDPlayer.c392 int LoadFile (const FSRef *ref, int startFrame, int stopFrame) argument
404 printf ("LoadFile: %d %d\n", startFrame, stopFrame);
420 if (startFrame >= 0)
421 thePlayer->SetStartFrame (thePlayer, startFrame);
423 if (stopFrame >= 0 && stopFrame > startFrame)
/external/webkit/Source/WebCore/webaudio/
H A DAudioBufferSourceNode.cpp169 unsigned startFrame = m_isGrain ? static_cast<unsigned>(m_grainOffset * bufferSampleRate) : 0; local
170 unsigned endFrame = m_isGrain ? static_cast<unsigned>(startFrame + m_grainDuration * bufferSampleRate) : bufferLength;
178 if (startFrame >= bufferLength)
179 startFrame = !bufferLength ? 0 : bufferLength - 1;
183 m_readIndex = startFrame; // reset to start
236 m_readIndex = startFrame;
/external/webkit/Source/WebCore/page/
H A DPage.cpp509 Frame* startFrame = frame; local
512 if (frame != startFrame)
513 startFrame->selection()->clear();
518 } while (frame && frame != startFrame);
520 // Search contents of startFrame, on the other side of the selection that we did earlier.
522 if (shouldWrap && !startFrame->selection()->isNone()) {
523 bool found = startFrame->editor()->findString(target, options | WrapAround | StartInSelection);
/external/webkit/Source/WebKit/android/jni/
H A DWebViewCore.cpp215 bool validNode(Frame* startFrame, void* matchFrame, argument
218 if (matchFrame == startFrame) {
221 Node* node = startFrame->document();
236 Frame* child = startFrame->tree()->firstChild();
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
H A Djdimodel.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 333 milliseconds