Displaying 3 results from an estimated 3 matches for "minargs".
Did you mean:
min_args
2016 Feb 14
4
Implementation of substring search in omegascript
Hi,
I'm Ayush an undergraduate Computer Science student from Thapar university,
India. I was fiddling with xapian since the morning and trying to
understand the code and internals of Xapian.
I tried implementing the bite sized project idea posted here:
https://trac.xapian.org/wiki/ProjectIdeas#AddnewOmegaScriptcommandtodoasubstringsearch
but could not understand what needs to be returned when
2007 Feb 13
0
9 commits - libswfdec/js libswfdec/swfdec_bits.c libswfdec/swfdec_bits.h libswfdec/swfdec_codec_screen.c libswfdec/swfdec_image.c libswfdec/swfdec_script.c test/Makefile.am test/swfdec_out.c test/swfdec_out.h test/swfedit.c test/swfedit_file.c
...ction
diff --git a/libswfdec/js/jsinterp.c b/libswfdec/js/jsinterp.c
index 910087a..ab095f6 100644
--- a/libswfdec/js/jsinterp.c
+++ b/libswfdec/js/jsinterp.c
@@ -807,6 +807,7 @@ js_Invoke(JSContext *cx, uintN argc, uin
}
fun = NULL;
script = NULL;
+ swf = NULL;
minargs = nvars = 0;
/* Try a call or construct native object op. */
diff-tree b3f04131da03829352ae315b2986ecda634c58c9 (from 319fb2b1931124bc32607519c26c50d7318236a4)
Author: Benjamin Otte <otte@gnome.org>
Date: Mon Feb 12 20:25:57 2007 +0100
add a libswfedit, so I can use this edi...
2007 Feb 06
0
109 commits - configure.ac libswfdec/js libswfdec/Makefile.am libswfdec/swfdec_bits.c libswfdec/swfdec_bits.h libswfdec/swfdec_buffer.c libswfdec/swfdec_button_movie.c libswfdec/swfdec_codec_screen.c libswfdec/swfdec_color.c libswfdec/swfdec_color.h
...eference and its 'this' object implicit first parameter
* under argc arguments on cx's stack, and call the function. Push missing
@@ -646,6 +649,7 @@ js_Invoke(JSContext *cx, uintN argc, uin
JSNative native;
JSFunction *fun;
JSScript *script;
+ void *swf;
uintN minargs, nvars;
intN nslots, nalloc, surplus;
JSInterpreterHook hook;
@@ -815,6 +819,7 @@ have_fun:
fun = (JSFunction *) JS_GetPrivate(cx, funobj);
native = fun->native;
script = fun->script;
+ swf = fun->swf;
minargs = fun->nargs + fun->extra;...