Home
last modified time | relevance | path

Searched refs:addFrame (Results 1 – 21 of 21) sorted by relevance

/external/replicaisland/src/com/replica/replicaisland/
DGameObjectFactory.java729 … idle.addFrame(new AnimationFrame(textureLibrary.allocateTexture(R.drawable.andou_stand),
733 angle.addFrame(
739 extremeAngle.addFrame(
744 … up.addFrame(new AnimationFrame(textureLibrary.allocateTexture(R.drawable.andou_flyup02),
746 … up.addFrame(new AnimationFrame(textureLibrary.allocateTexture(R.drawable.andou_flyup03),
751 boostAngle.addFrame(
754 boostAngle.addFrame(
761 boostExtremeAngle.addFrame(
764 boostExtremeAngle.addFrame(
776 stomp.addFrame(
[all …]
DSpriteAnimation.java83 public void addFrame(AnimationFrame frame) { in addFrame() method in SpriteAnimation
/external/jetty/src/java/org/eclipse/jetty/websocket/
DFragmentExtension.java47 …public void addFrame(byte flags, byte opcode, byte[] content, int offset, int length) throws IOExc… in addFrame() method in FragmentExtension
51 super.addFrame(flags,opcode,content,offset,length); in addFrame()
60 … super.addFrame((byte)(flags&~getConnection().finMask()),opcode,content,offset,_maxLength); in addFrame()
70 super.addFrame((byte)(flags&0x7),opcode,content,offset,frag); in addFrame()
76 super.addFrame((byte)(flags|getConnection().finMask()),opcode,content,offset,length); in addFrame()
DDeflateFrameExtension.java116 …public void addFrame(byte flags, byte opcode, byte[] content, int offset, int length) throws IOExc… in addFrame() method in DeflateFrameExtension
120 super.addFrame(clearFlag(flags,1),opcode,content,offset,length); in addFrame()
160 super.addFrame(setFlag(flags,1),opcode,out,0,l+out_offset); in addFrame()
162 super.addFrame(clearFlag(flags,1),opcode,content,offset,length); in addFrame()
DWebSocketConnectionD06.java252 _generator.addFrame((byte)0x8,WebSocketConnectionD06.OP_CLOSE,bytes,0,bytes.length); in closeOut()
321 _generator.addFrame((byte)0x8,WebSocketConnectionD06.OP_TEXT,data,0,data.length); in sendMessage()
331 _generator.addFrame((byte)0x8,WebSocketConnectionD06.OP_BINARY,content,offset,length); in sendMessage()
341 _generator.addFrame(flags,opcode,content,offset,length); in sendFrame()
351 _generator.addFrame((byte)0x8,control,data,offset,length); in sendControl()
DAbstractExtension.java117 …public void addFrame(byte flags, byte opcode, byte[] content, int offset, int length) throws IOExc… in addFrame() method in AbstractExtension
120 _outbound.addFrame(flags,opcode,content,offset,length); in addFrame()
DWebSocketGenerator.java32 … void addFrame(byte flags,byte opcode, byte[] content, int offset, int length) throws IOException; in addFrame() method
DWebSocketConnectionD08.java339 … _outbound.addFrame((byte)FLAG_FIN,WebSocketConnectionD08.OP_CLOSE,bytes,0,bytes.length); in closeOut()
397 _outbound.addFrame((byte)FLAG_FIN,WebSocketConnectionD08.OP_TEXT,data,0,data.length); in sendMessage()
406 … _outbound.addFrame((byte)FLAG_FIN,WebSocketConnectionD08.OP_BINARY,content,offset,length); in sendMessage()
415 _outbound.addFrame(flags,opcode,content,offset,length); in sendFrame()
424 _outbound.addFrame((byte)FLAG_FIN,ctrl,data,offset,length); in sendControl()
DWebSocketConnectionD00.java228 _generator.addFrame((byte)0,SENTINEL_FRAME,data,0,data.length); in sendMessage()
236 _generator.addFrame((byte)0,LENGTH_FRAME,data,offset,length); in sendMessage()
258 _generator.addFrame((byte)0,opcode,content,offset,length); in sendFrame()
DWebSocketConnectionRFC6455.java382 …_outbound.addFrame((byte)FLAG_FIN,WebSocketConnectionRFC6455.OP_CLOSE,bytes,0,code>0?bytes.length:… in closeOut()
439 … _outbound.addFrame((byte)FLAG_FIN,WebSocketConnectionRFC6455.OP_TEXT,data,0,data.length); in sendMessage()
448 … _outbound.addFrame((byte)FLAG_FIN,WebSocketConnectionRFC6455.OP_BINARY,content,offset,length); in sendMessage()
457 _outbound.addFrame(flags,opcode,content,offset,length); in sendFrame()
467 _outbound.addFrame((byte)FLAG_FIN,ctrl,data,offset,length); in sendControl()
DWebSocketGeneratorD00.java48 …public synchronized void addFrame(byte flags, byte opcode,byte[] content, int offset, int length) … in addFrame() method in WebSocketGeneratorD00
DWebSocketGeneratorD06.java59 …public synchronized void addFrame(byte flags, byte opcode, byte[] content, int offset, int length)… in addFrame() method in WebSocketGeneratorD06
DWebSocketGeneratorD08.java70 …public void addFrame(byte flags, byte opcode, byte[] content, int offset, int length) throws IOExc… in addFrame() method in WebSocketGeneratorD08
DWebSocketGeneratorRFC6455.java74 …public void addFrame(byte flags, byte opcode, byte[] content, int offset, int length) throws IOExc… in addFrame() method in WebSocketGeneratorRFC6455
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowAnimationDrawable.java18 public void addFrame(Drawable frame, int duration) { in addFrame() method in ShadowAnimationDrawable
DShadowImageView.java75 animationDrawable.addFrame(drawable, -1); in buildDrawable()
/external/llvm/include/llvm/DebugInfo/DWARF/
DDIContext.h63 void addFrame(const DILineInfo &Frame) { in addFrame() function
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
DGifResourceEncoder.java64 if (!encoder.addFrame(transformedResource.get())) { in encode()
/external/llvm/tools/llvm-symbolizer/
DLLVMSymbolize.cpp172 InlinedContext.addFrame(DILineInfo()); in symbolizeInlinedCode()
187 PatchedInlinedContext.addFrame(LineInfo); in symbolizeInlinedCode()
/external/llvm/lib/DebugInfo/DWARF/
DDWARFContext.cpp482 InliningInfo.addFrame(Frame); in getInliningInfoForAddress()
519 InliningInfo.addFrame(Frame); in getInliningInfoForAddress()
/external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/
DAnimatedGifEncoder.java150 public boolean addFrame(Bitmap im) { in addFrame() method in AnimatedGifEncoder