Displaying 1 result from an estimated 1 matches for "stack_pop".
2007 Mar 01
0
7 commits - libswfdec/swfdec_connection.c libswfdec/swfdec_js_connection.c libswfdec/swfdec_js_movie.c libswfdec/swfdec_js_net_stream.c libswfdec/swfdec_js_xml.c libswfdec/swfdec_net_stream.c libswfdec/swfdec_scriptable.c libswfdec/swfdec_scriptable.h
...vie == movie)
- return listentry->mc;
- }
-
- return NULL;
-}
-
-static void
-swfdec_native_ASSetPropFlags (SwfdecActionContext *context, int num_args,
- ActionVal *_this)
-{
- ActionVal *a;
- ActionVal *b;
- ActionVal *c;
- ActionVal *d;
- int allowFalse = 0;
- int flags;
-
- a = stack_pop (context); /* obj */
- action_val_convert_to_object (a);
- b = stack_pop (context); /* property list */
- c = stack_pop (context); /* flags */
- action_val_convert_to_number (c);
- if (num_args >= 4) {
- d = stack_pop (context); /* allowFalse */
- action_val_convert_to_boolean (d);
-...