search for: charcodeat

Displaying 8 results from an estimated 8 matches for "charcodeat".

2006 Aug 16
2
File download logging
Is there any way of determining whether a file has been successfully downloaded by a user or to put it another way, whether a dowload was interrupted? -- Posted via http://www.ruby-forum.com/.
2007 Jun 06
0
Branch 'as' - 13 commits - libswfdec/swfdec_as_context.c libswfdec/swfdec_as_context.h libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame.h libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_object.c libswfdec/swfdec_as_object.h
...59 files changed, 1188 insertions(+), 149 deletions(-) New commits: diff-tree bf3f17bb8f8aa3d5a9cf4d4121e77efc2c1f048c (from 10e5b6967cb6df937b34a9d9cad410bc7c9e4d59) Author: Benjamin Otte <otte at gnome.org> Date: Wed Jun 6 16:32:37 2007 +0200 add test for String.charAt() and String.charCodeAt() diff --git a/test/trace/Makefile.am b/test/trace/Makefile.am index 0c58f4d..79ab157 100644 --- a/test/trace/Makefile.am +++ b/test/trace/Makefile.am @@ -45,6 +45,13 @@ EXTRA_DIST = \ case1-6.swf.trace \ case1-7.swf \ case1-7.swf.trace \ + charat.as \ + charat-5.swf \ + charat-5.swf.trace \...
2007 Aug 24
0
7 commits - libswfdec/swfdec_as_context.c libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_object.h libswfdec/swfdec_as_string.c test/trace
...SwfdecAsObject *object, guint argc, SwfdecAsValue *argv, SwfdecAsValue *ret) { - const char *string = swfdec_as_object_to_string (cx, object); + const char *string = swfdec_as_string_object_to_string (cx, object); int i; const char *s, *t; @@ -159,7 +172,7 @@ void swfdec_as_string_charCodeAt (SwfdecAsContext *cx, SwfdecAsObject *object, guint argc, SwfdecAsValue *argv, SwfdecAsValue *ret) { - const char *string = swfdec_as_object_to_string (cx, object); + const char *string = swfdec_as_string_object_to_string (cx, object); int i; const char *s; gunichar c; @@ -309,7 +3...
2007 Jun 15
0
Branch 'as' - 2 commits - libswfdec/swfdec_as_strings.c libswfdec/swfdec_sprite_movie_as.c test/trace
...t. And it's only 12 loc. :) diff --git a/libswfdec/swfdec_as_strings.c b/libswfdec/swfdec_as_strings.c index c4428cb..938d43a 100644 --- a/libswfdec/swfdec_as_strings.c +++ b/libswfdec/swfdec_as_strings.c @@ -207,6 +207,7 @@ const char swfdec_as_strings[] = SWFDEC_AS_CONSTANT_STRING ("charCodeAt") SWFDEC_AS_CONSTANT_STRING ("NetConnection") SWFDEC_AS_CONSTANT_STRING ("connect") + SWFDEC_AS_CONSTANT_STRING ("createEmptyMovieClip") /* add more here */ ; diff --git a/libswfdec/swfdec_sprite_movie_as.c b/libswfdec/swfdec_sprite_movie_as.c index c...
2013 Mar 29
1
Wine release 1.5.27
...::disabled implementation. mshtml: Added IHTMLButtonElement::disabled tests. urlmon: Delay processing notifications from Read during MIME verification. libwine: Added tid debug channel support on native Windows builds. jscript: Added jsstr_extract helper and use it in String.charCodeAt implementation. jscript: Use helpers to access string buffer in some String functions. secur32: Take schannel backend capabilities into account when configuring enabled protocols. Jactry Zeng (1): msvcrt: Added _wcsncoll and _wcsncoll_l implementation. Jimmy Rentz (1): adv...
2012 May 11
0
Wine release 1.5.4
...n+heap support for cached BSTRs. jscript: Properly test if double may be converted to int32. jscript: Better handling of to_integer result in Array.splice. jscript: Better handling of to_integer result in String.charAt. jscript: Better handling of to_integer result in String.charCodeAt. jscript: Bettter handling of to_number result in String.indexOf. jscript: Better handling of to_integer result in String.lastIndexOf. jscript: Better handling of to_integer result in String.slice. jscript: Better handling of to_integer result in String.substring. jscr...
2007 Nov 27
0
12 commits - libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_strings.c libswfdec/swfdec_loader.c libswfdec/swfdec_loader_internal.h libswfdec/swfdec_load_object_as.c libswfdec/swfdec_load_object.c libswfdec/swfdec_load_object.h
...function + __proto__ (hp) = _global.Function.prototype + constructor (hp) = _global.Function + prototype (hp) = object + __proto__ (hp) = _global.Object.prototype + charAt (hp) = function + __proto__ (hp) = _global.Function.prototype + constructor (hp) = _global.Function + charCodeAt (hp) = function + __proto__ (hp) = _global.Function.prototype + constructor (hp) = _global.Function + concat (hp) = function + __proto__ (hp) = _global.Function.prototype + constructor (hp) = _global.Function + constructor (hp) = _global.String + indexOf (hp) = function...
2007 Aug 23
0
23 commits - doc/.gitignore doc/Makefile.am doc/swfdec-docs.sgml doc/swfdec-sections.txt libswfdec-gtk/swfdec-gtk.h libswfdec-gtk/swfdec_gtk_keys.c libswfdec-gtk/swfdec_gtk_keys.h libswfdec-gtk/swfdec_gtk_widget.c libswfdec/Makefile.am
...inter_to_offset (string->string, s)); + } else { + SWFDEC_AS_VALUE_SET_INT (ret, -1); + } +} + +static void swfdec_as_string_indexOf (SwfdecAsContext *cx, SwfdecAsObject *object, guint argc, SwfdecAsValue *argv, SwfdecAsValue *ret) { @@ -262,7 +289,6 @@ charAt(index:Number) : String charCodeAt(index:Number) : Number concat(value:Object) : String indexOf(value:String, [startIndex:Number]) : Number -lastIndexOf(value:String, [startIndex:Number]) : Number slice(start:Number, end:Number) : String split(delimiter:String, [limit:Number]) : Array #endif @@ -724,6 +750,7 @@ swfdec_as_string...