HomeSort by relevance Sort by last modified time
    Searched refs:currentFrame (Results 1 - 25 of 27) sorted by null

1 2

  /external/glide/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/
GifHeaderParser.java 74 header.currentFrame = new GifFrame();
115 header.currentFrame.dispose = (packed & 0x1c) >> 2; // disposal method
116 if (header.currentFrame.dispose == 0) {
117 header.currentFrame.dispose = 1; // elect to keep old image if discretionary
119 header.currentFrame.transparency = (packed & 1) != 0;
120 header.isTransparent |= header.currentFrame.transparency;
121 header.currentFrame.delay = readShort() * 10; // delay in milliseconds
122 header.currentFrame.transIndex = read(); // transparent color index
130 header.currentFrame.ix = readShort(); // (sub)image position & size
131 header.currentFrame.iy = readShort()
    [all...]
GifHeader.java 15 public GifFrame currentFrame;
GifDecoder.java 330 GifFrame currentFrame = header.frames.get(frameIndex);
350 if (!currentFrame.transparency) {
363 if (!currentFrame.transparency) {
372 decodeBitmapData(currentFrame, mainPixels); // decode pixel data
378 for (int i = 0; i < currentFrame.ih; i++) {
380 if (currentFrame.interlace) {
381 if (iline >= currentFrame.ih) {
402 line += currentFrame.iy;
405 int dx = k + currentFrame.ix; // start of line in dest
406 int dlim = dx + currentFrame.iw; // end of dest lin
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
GifDrawable.java 23 private Bitmap currentFrame;
82 if (currentFrame != null) {
83 canvas.drawBitmap(currentFrame, 0, 0, paint);
120 currentFrame = frame;
  /external/lldb/test/functionalities/register/
TestRegisters.py 162 currentFrame = thread.GetFrameAtIndex(0)
163 self.assertTrue(currentFrame.IsValid(), "current frame is valid")
165 self.write_and_restore(currentFrame, "fcw", False)
166 self.write_and_restore(currentFrame, "fsw", False)
167 self.write_and_restore(currentFrame, "ftw", False)
168 self.write_and_restore(currentFrame, "ip", False)
169 self.write_and_restore(currentFrame, "dp", False)
170 self.write_and_restore(currentFrame, "mxcsr", False)
171 self.write_and_restore(currentFrame, "mxcsrmask", False)
174 self.vector_write_and_read(currentFrame, "stmm0", new_value
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
SpriteComponent.java 101 AnimationFrame currentFrame = currentAnimation.getFrame(mAnimationTime);
102 if (currentFrame != null) {
107 if (mVisible && currentFrame.texture != null && factory != null) {
116 bitmap.setTexture(currentFrame.texture);
124 mCollisionComponent.setCollisionVolumes(currentFrame.attackVolumes,
125 currentFrame.vulnerabilityVolumes);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
XUnresolvedVariable.java 116 int currentFrame = vars.getStackFrame();
133 // vars.setStackFrame(currentFrame);
136 vars.unlink(currentFrame);
  /frameworks/base/libs/hwui/
DamageAccumulator.cpp 55 static void computeTransformImpl(const DirtyStack* currentFrame, Matrix4* outMatrix) {
56 if (currentFrame->prev != currentFrame) {
57 computeTransformImpl(currentFrame->prev, outMatrix);
59 switch (currentFrame->type) {
61 currentFrame->renderNode->applyViewPropertyTransforms(*outMatrix);
64 outMatrix->multiply(*currentFrame->matrix4);
70 LOG_ALWAYS_FATAL("Tried to compute transform with an invalid type: %d", currentFrame->type);
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageReader.cpp 371 GIFFrameContext* currentFrame = m_frames[frameIndex].get();
373 return currentFrame->decode(data(0), m_data->size(), m_client, &frameDecoded)
543 GIFFrameContext* currentFrame = m_frames.last().get();
545 currentFrame->setTransparentPixel(currentComponent[3]);
553 currentFrame->setDisposalMethod(static_cast<WebCore::ImageFrame::DisposalMethod>(disposalMethod));
557 currentFrame->setDisposalMethod(WebCore::ImageFrame::DisposeOverwritePrevious);
559 currentFrame->setDelayTime(GETINT16(currentComponent + 1) * 10);
668 GIFFrameContext* currentFrame = m_frames.last().get();
670 currentFrame->setHeaderDefined();
671 currentFrame->setRect(xOffset, yOffset, width, height)
    [all...]
  /external/eigen/demos/opengl/
quaternion_demo.cpp 277 Frame currentFrame;
282 currentFrame = lo->second;
288 currentFrame = hi->second;
294 currentFrame = ::lerpFrame<EulerAngles<float> >(s, lo->second, hi->second);
296 currentFrame = ::lerpFrame<Eigen::Quaternionf>(s, lo->second, hi->second);
302 currentFrame.orientation.coeffs().normalize();
305 currentFrame.orientation = currentFrame.orientation.inverse();
306 currentFrame.position = - (currentFrame.orientation * currentFrame.position)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineFrameOverview.js 111 for (var barNumber = 0, currentFrame = 0; currentFrame < frames.length; ++barNumber) {
112 var barStartTime = frames[currentFrame].startTime;
117 currentFrame < lastFrame; ++currentFrame) {
118 var duration = frames[currentFrame].duration;
120 longestFrame = frames[currentFrame];
124 var barEndTime = frames[currentFrame - 1].endTime;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
BitmapImage.h 108 size_t currentFrame() const { return m_currentFrame; }
BitmapImage.cpp 367 return frameAtIndex(currentFrame());
383 return !frameHasAlphaAtIndex(currentFrame());
388 return frameOrientationAtIndex(currentFrame());
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/
FrameSummaryViewPage.java 236 final int currentFrame;
238 currentFrame = mCurrentFrame;
242 updateImageCanvas(currentFrame);
243 updateFrameStats(currentFrame);
  /external/apache-xml/src/main/java/org/apache/xpath/
VariableStack.java 252 * @param currentFrame The current frame to set to
255 public void unlink(int currentFrame)
258 _currentFrameBottom = currentFrame;
  /external/chromium_org/third_party/WebKit/Source/web/
WebPageSerializerImpl.cpp 472 WebLocalFrameImpl* currentFrame = m_frames[i];
474 Document* currentDoc = currentFrame->frame()->document();
  /external/chromium_org/third_party/WebKit/Source/core/dom/
TreeScope.cpp 349 static Element* focusedFrameOwnerElement(Frame* focusedFrame, Frame* currentFrame)
352 if (focusedFrame->tree().parent() == currentFrame) {
Document.cpp     [all...]
  /external/chromium_org/v8/src/
d8.js 95 currentFrame: kNoFrame,
166 Debug.State.currentFrame = 0;
187 Debug.State.currentFrame = 0;
193 Debug.State.currentFrame = kNoFrame;
373 (Debug.State.currentFrame + 1));
380 (Debug.State.currentFrame - 1));
547 if (Debug.State.currentFrame == kNoFrame) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingCoordinator.cpp 402 static void makeLayerChildFrameMap(const LocalFrame* currentFrame, LayerFrameMap* map)
405 const FrameTree& tree = currentFrame->tree();
    [all...]
  /hardware/samsung_slsi/exynos5/libcamera2/
ExynosCameraHWInterface2.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar 
  /prebuilts/misc/common/ecj/
ecj.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.2.2/
ecj-4.2.2.jar 
  /prebuilts/tools/darwin-x86_64/swt/
swt.jar 

Completed in 774 milliseconds

1 2