Displaying 3 results from an estimated 3 matches for "is_move".
Did you mean:
ms_move
2007 Jun 19
0
Branch 'as' - test/dump.c
...if (!swfdec_sprite_get_action (s, i, &tag, &buffer))
+ break;
+ switch (tag) {
+ case SWFDEC_TAG_DOACTION:
+ g_print (" %4u script\n", j);
+ break;
+ case SWFDEC_TAG_PLACEOBJECT2:
+ case SWFDEC_TAG_PLACEOBJECT3:
+ {
+ SwfdecBits bits;
+ gboolean has_char, is_move;
+ guint depth;
+
+ swfdec_bits_init (&bits, buffer);
+ swfdec_bits_getbits (&bits, 6);
+ has_char = swfdec_bits_getbit (&bits);
+ is_move = swfdec_bits_getbit (&bits);
+ if (tag == SWFDEC_TAG_PLACEOBJECT3)
+ swfdec_bits_get_u8 (&bits);
+ depth...
2007 May 05
0
[1012] trunk/wxruby2/doc/textile: Added docs for AUI Advanced User Interface classes
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding:
2008 Jan 07
0
12 commits - configure.ac doc/swfdec.types Makefile.am test/crashfinder.c test/dump.c test/Makefile.am test/swfdec-extract.c test/swfdec_out.c test/swfdec_out.h test/swfedit.c test/swfedit_file.c test/swfedit_file.h test/swfedit_list.c test/swfedit_list.h
...if (!swfdec_sprite_get_action (s, i, &tag, &buffer))
- break;
- switch (tag) {
- case SWFDEC_TAG_DOACTION:
- g_print (" %4u script\n", j);
- break;
- case SWFDEC_TAG_PLACEOBJECT2:
- case SWFDEC_TAG_PLACEOBJECT3:
- {
- SwfdecBits bits;
- gboolean has_char, is_move;
- guint depth;
-
- swfdec_bits_init (&bits, buffer);
- swfdec_bits_getbits (&bits, 6);
- has_char = swfdec_bits_getbit (&bits);
- is_move = swfdec_bits_getbit (&bits);
- if (tag == SWFDEC_TAG_PLACEOBJECT3)
- swfdec_bits_get_u8 (&bits);
- depth...