/external/jetty/src/java/org/eclipse/jetty/websocket/ |
H A D | WebSocketGenerator.java | 32 void addFrame(byte flags,byte opcode, byte[] content, int offset, int length) throws IOException; method in interface:WebSocketGenerator
|
H A D | FragmentExtension.java | 47 public void addFrame(byte flags, byte opcode, byte[] content, int offset, int length) throws IOException method in class:FragmentExtension 51 super.addFrame(flags,opcode,content,offset,length); 60 super.addFrame((byte)(flags&~getConnection().finMask()),opcode,content,offset,_maxLength); 70 super.addFrame((byte)(flags&0x7),opcode,content,offset,frag); 76 super.addFrame((byte)(flags|getConnection().finMask()),opcode,content,offset,length);
|
H A D | DeflateFrameExtension.java | 113 * @see org.eclipse.jetty.websocket.AbstractExtension#addFrame(byte, byte, byte[], int, int) 116 public void addFrame(byte flags, byte opcode, byte[] content, int offset, int length) throws IOException method in class:DeflateFrameExtension 120 super.addFrame(clearFlag(flags,1),opcode,content,offset,length); 160 super.addFrame(setFlag(flags,1),opcode,out,0,l+out_offset); 162 super.addFrame(clearFlag(flags,1),opcode,content,offset,length);
|
H A D | AbstractExtension.java | 117 public void addFrame(byte flags, byte opcode, byte[] content, int offset, int length) throws IOException method in class:AbstractExtension 119 // System.err.printf("addFrame %s %x %x %d\n",getExtensionName(),flags,opcode,length); 120 _outbound.addFrame(flags,opcode,content,offset,length);
|
H A D | WebSocketConnectionD06.java | 252 _generator.addFrame((byte)0x8,WebSocketConnectionD06.OP_CLOSE,bytes,0,bytes.length); 321 _generator.addFrame((byte)0x8,WebSocketConnectionD06.OP_TEXT,data,0,data.length); 331 _generator.addFrame((byte)0x8,WebSocketConnectionD06.OP_BINARY,content,offset,length); 341 _generator.addFrame(flags,opcode,content,offset,length); 351 _generator.addFrame((byte)0x8,control,data,offset,length);
|
H A D | WebSocketConnectionD00.java | 228 _generator.addFrame((byte)0,SENTINEL_FRAME,data,0,data.length); 236 _generator.addFrame((byte)0,LENGTH_FRAME,data,offset,length); 258 _generator.addFrame((byte)0,opcode,content,offset,length);
|
H A D | WebSocketGeneratorD00.java | 48 public synchronized void addFrame(byte flags, byte opcode,byte[] content, int offset, int length) throws IOException method in class:WebSocketGeneratorD00
|
H A D | WebSocketConnectionD08.java | 339 _outbound.addFrame((byte)FLAG_FIN,WebSocketConnectionD08.OP_CLOSE,bytes,0,bytes.length); 397 _outbound.addFrame((byte)FLAG_FIN,WebSocketConnectionD08.OP_TEXT,data,0,data.length); 406 _outbound.addFrame((byte)FLAG_FIN,WebSocketConnectionD08.OP_BINARY,content,offset,length); 415 _outbound.addFrame(flags,opcode,content,offset,length); 424 _outbound.addFrame((byte)FLAG_FIN,ctrl,data,offset,length);
|
H A D | WebSocketConnectionRFC6455.java | 382 _outbound.addFrame((byte)FLAG_FIN,WebSocketConnectionRFC6455.OP_CLOSE,bytes,0,code>0?bytes.length:0); 439 _outbound.addFrame((byte)FLAG_FIN,WebSocketConnectionRFC6455.OP_TEXT,data,0,data.length); 448 _outbound.addFrame((byte)FLAG_FIN,WebSocketConnectionRFC6455.OP_BINARY,content,offset,length); 457 _outbound.addFrame(flags,opcode,content,offset,length); 467 _outbound.addFrame((byte)FLAG_FIN,ctrl,data,offset,length);
|
H A D | WebSocketGeneratorD06.java | 59 public synchronized void addFrame(byte flags, byte opcode, byte[] content, int offset, int length) throws IOException method in class:WebSocketGeneratorD06
|
H A D | WebSocketGeneratorD08.java | 70 public void addFrame(byte flags, byte opcode, byte[] content, int offset, int length) throws IOException method in class:WebSocketGeneratorD08
|
H A D | WebSocketGeneratorRFC6455.java | 74 public void addFrame(byte flags, byte opcode, byte[] content, int offset, int length) throws IOException method in class:WebSocketGeneratorRFC6455
|
/external/replicaisland/src/com/replica/replicaisland/ |
H A D | GameObjectFactory.java | 729 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...] |
H A D | SpriteAnimation.java | 83 public void addFrame(AnimationFrame frame) { method in class:SpriteAnimation
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
H A D | ShadowAnimationDrawable.java | 18 public void addFrame(Drawable frame, int duration) { method in class:ShadowAnimationDrawable
|
H A D | ShadowImageView.java | 75 animationDrawable.addFrame(drawable, -1);
|
/external/llvm/lib/DebugInfo/PDB/ |
H A D | PDBContext.cpp | 89 InlineInfo.addFrame(Frame);
|
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/ |
H A D | GifResourceEncoder.java | 64 if (!encoder.addFrame(transformedResource.get())) {
|
/external/llvm/include/llvm/DebugInfo/ |
H A D | DIContext.h | 67 void addFrame(const DILineInfo &Frame) {
|
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/ |
H A D | VideoCapturerAndroid.java | 165 public void addFrame() { method in class:VideoCapturerAndroid.CameraStatistics 690 cameraStatistics.addFrame(); 718 cameraStatistics.addFrame();
|
/external/llvm/lib/DebugInfo/Symbolize/ |
H A D | SymbolizableObjectFile.cpp | 229 InlinedContext.addFrame(DILineInfo());
|
/external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/ |
H A D | AnimatedGifEncoder.java | 23 * e.addFrame(image1); 24 * e.addFrame(image2); 150 public boolean addFrame(Bitmap im) { method in class:AnimatedGifEncoder
|
/external/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFContext.cpp | 536 InliningInfo.addFrame(Frame); 573 InliningInfo.addFrame(Frame);
|
/external/robolectric/v3/runtime/ |
H A D | shadows-core-3.1-SNAPSHOT-16.jar | META-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ... |
H A D | shadows-core-3.1-SNAPSHOT-17.jar | META-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ... |