Home | History | Annotate | Download | only in API

Lines Matching full:param

82 @param ctx The execution context to use.
83 @param object The JSObject being created.
97 @param object The JSObject being finalized.
115 @param ctx The execution context to use.
116 @param object The JSObject to search for the property.
117 @param propertyName A JSString containing the name of the property look up.
135 @param ctx The execution context to use.
136 @param object The JSObject to search for the property.
137 @param propertyName A JSString containing the name of the property to get.
138 @param exception A pointer to a JSValueRef in which to return an exception, if any.
152 @param ctx The execution context to use.
153 @param object The JSObject on which to set the property's value.
154 @param propertyName A JSString containing the name of the property to set.
155 @param value A JSValue to use as the property's value.
156 @param exception A pointer to a JSValueRef in which to return an exception, if any.
170 @param ctx The execution context to use.
171 @param object The JSObject in which to delete the property.
172 @param propertyName A JSString containing the name of the property to delete.
173 @param exception A pointer to a JSValueRef in which to return an exception, if any.
187 @param ctx The execution context to use.
188 @param object The JSObject whose property names are being collected.
189 @param accumulator A JavaScript property name accumulator in which to accumulate the names of object's properties.
204 @param ctx The execution context to use.
205 @param function A JSObject that is the function being called.
206 @param thisObject A JSObject that is the 'this' variable in the function's scope.
207 @param argumentCount An integer count of the number of arguments in arguments.
208 @param arguments A JSValue array of the arguments passed to the function.
209 @param exception A pointer to a JSValueRef in which to return an exception, if any.
225 @param ctx The execution context to use.
226 @param constructor A JSObject that is the constructor being called.
227 @param argumentCount An integer count of the number of arguments in arguments.
228 @param arguments A JSValue array of the arguments passed to the function.
229 @param exception A pointer to a JSValueRef in which to return an exception, if any.
245 @param ctx The execution context to use.
246 @param constructor The JSObject that is the target of the 'instanceof' expression.
247 @param possibleInstance The JSValue being tested to determine if it is an instance of constructor.
248 @param exception A pointer to a JSValueRef in which to return an exception, if any.
266 @param ctx The execution context to use.
267 @param object The JSObject to convert.
268 @param type A JSType specifying the JavaScript type to convert to.
269 @param exception A pointer to a JSValueRef in which to return an exception, if any.
379 @param definition A JSClassDefinition that defines the class.
387 @param jsClass The JSClass to retain.
395 @param jsClass The JSClass to release.
402 @param ctx The execution context to use.
403 @param jsClass The JSClass to assign to the object. Pass NULL to use the default object class.
404 @param data A void* to set as the object's private data. Pass NULL to specify no private data.
415 @param ctx The execution context to use.
416 @param name A JSString containing the function's name. This will be used when converting the function to string. Pass NULL to create an anonymous function.
417 @param callAsFunction The JSObjectCallAsFunctionCallback to invoke when the function is called.
425 @param ctx The execution context to use.
426 @param jsClass A JSClass that is the class your constructor will assign to the objects its constructs. jsClass will be used to set the constructor's .prototype property, and to evaluate 'instanceof' expressions. Pass NULL to use the default object class.
427 @param callAsConstructor A JSObjectCallAsConstructorCallback to invoke when your constructor is used in a 'new' expression. Pass NULL to use the default object constructor.
436 @param ctx The execution context to use.
437 @param argumentCount An integer count of the number of arguments in arguments.
438 @param arguments A JSValue array of data to populate the Array with. Pass NULL if argumentCount is 0.
439 @param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception.
449 @param ctx The execution context to use.
450 @param argumentCount An integer count of the number of arguments in arguments.
451 @param arguments A JSValue array of arguments to pass to the Date Constructor. Pass NULL if argumentCount is 0.
452 @param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception.
460 @param ctx The execution context to use.
461 @param argumentCount An integer count of the number of arguments in arguments.
462 @param arguments A JSValue array of arguments to pass to the Error Constructor. Pass NULL if argumentCount is 0.
463 @param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception.
471 @param ctx The execution context to use.
472 @param argumentCount An integer count of the number of arguments in arguments.
473 @param arguments A JSValue array of arguments to pass to the RegExp Constructor. Pass NULL if argumentCount is 0.
474 @param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception.
482 @param ctx The execution context to use.
483 @param name A JSString containing the function's name. This will be used when converting the function to string. Pass NULL to create an anonymous function.
484 @param parameterCount An integer count of the number of parameter names in parameterNames.
485 @param parameterNames A JSString array containing the names of the function's parameters. Pass NULL if parameterCount is 0.
486 @param body A JSString containing the script to use as the function's body.
487 @param sourceURL A JSString containing a URL for the script's source file. This is only used when reporting exceptions. Pass NULL if you do not care to include source file information in exceptions.
488 @param startingLineNumber An integer value specifying the script's starting line number in the file located at sourceURL. This is only used when reporting exceptions.
489 @param exception A pointer to a JSValueRef in which to store a syntax error exception, if any. Pass NULL if you do not care to store a syntax error exception.
498 @param ctx The execution context to use.
499 @param object A JSObject whose prototype you want to get.
507 @param ctx The execution context to use.
508 @param object The JSObject whose prototype you want to set.
509 @param value A JSValue to set as the object's prototype.
516 @param object The JSObject to test.
517 @param propertyName A JSString containing the property's name.
525 @param ctx The execution context to use.
526 @param object The JSObject whose property you want to get.
527 @param propertyName A JSString containing the property's name.
528 @param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception.
536 @param ctx The execution context to use.
537 @param object The JSObject whose property you want to set.
538 @param propertyName A JSString containing the property's name.
539 @param value A JSValue to use as the property's value.
540 @param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception.
541 @param attributes A logically ORed set of JSPropertyAttributes to give to the property.
548 @param ctx The execution context to use.
549 @param object The JSObject whose property you want to delete.
550 @param propertyName A JSString containing the property's name.
551 @param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception.
559 @param ctx The execution context to use.
560 @param object The JSObject whose property you want to get.
561 @param propertyIndex An integer value that is the property's name.
562 @param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception.
571 @param ctx The execution context to use.
572 @param object The JSObject whose property you want to set.
573 @param propertyIndex The property's name as a number.
574 @param value A JSValue to use as the property's value.
575 @param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception.
583 @param object A JSObject whose private data you want to get.
591 @param object The JSObject whose private data you want to set.
592 @param data A void* to set as the object's private data.
601 @param ctx The execution context to use.
602 @param object The JSObject to test.
610 @param ctx The execution context to use.
611 @param object The JSObject to call as a function.
612 @param thisObject The object to use as "this," or NULL to use the global object as "this."
613 @param argumentCount An integer count of the number of arguments in arguments.
614 @param arguments A JSValue array of arguments to pass to the function. Pass NULL if argumentCount is 0.
615 @param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception.
623 @param ctx The execution context to use.
624 @param object The JSObject to test.
632 @param ctx The execution context to use.
633 @param object The JSObject to call as a constructor.
634 @param argumentCount An integer count of the number of arguments in arguments.
635 @param arguments A JSValue array of arguments to pass to the constructor. Pass NULL if argumentCount is 0.
636 @param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception.
644 @param ctx The execution context to use.
645 @param object The object whose property names you want to get.
653 @param array The JSPropertyNameArray to retain.
661 @param array The JSPropetyNameArray to release.
668 @param array The array from which to retrieve the count.
676 @param array The array from which to retrieve the property name.
677 @param index The index of the property name to retrieve.
685 @param accumulator The accumulator object to which to add the property name.
686 @param propertyName The property name to add.