Uses of Class
com.caucho.quercus.annotation.ReadOnly

Packages that use ReadOnly
com.caucho.quercus.lib   
com.caucho.quercus.lib.db   
com.caucho.quercus.lib.filter   
 

Uses of ReadOnly in com.caucho.quercus.lib
 

Method parameters in com.caucho.quercus.lib with annotations of type ReadOnly
static boolean ArrayModule.array_key_exists(Env env, Value key, Value searchArray)
          Checks if the key is in the given array
static boolean ArrayModule.array_key_exists(Env env, Value key, Value searchArray)
          Checks if the key is in the given array
static Value ArrayModule.array_keys(Env env, ArrayValue array, Value searchValue, boolean isStrict)
          Returns an array of the keys in the given array
static Value ArrayModule.array_keys(Env env, ArrayValue array, Value searchValue, boolean isStrict)
          Returns an array of the keys in the given array
static Value ArrayModule.array_reverse(Env env, ArrayValue inputArray, boolean keyed)
          Returns the inputted array reversed, preserving the keys if keyed is true
static Value ArrayModule.array_search(Env env, Value needle, ArrayValue array, boolean strict)
          Returns the key of the needle being searched for or false if it's not found
static Value ArrayModule.array_search(Env env, Value needle, ArrayValue array, boolean strict)
          Returns the key of the needle being searched for or false if it's not found
static Value ArrayModule.array_slice(Env env, ArrayValue array, int offset, Value length, boolean isPreserveKeys)
          Returns a chunk of the array.
static Value ArrayModule.array_sum(Env env, ArrayValue array)
          Returns the sum of the elements in the array
static long ArrayModule.count(Env env, Value value, int countMethod)
          Returns the size of the array.
static Value ArrayModule.current(Value value)
          Returns the current value of the array.
static Value VariableModule.debug_zval_dump(Env env, Value v)
          Prints a debug version of the variable
static Value VariableModule.doubleval(Value v)
          Converts to a double
static boolean VariableModule.empty(Value v)
          Returns true for an empty variable.
static Value VariableModule.floatval(Value v)
          Converts to a double
 Value ClassesModule.get_parent_class(Env env, Value value)
          Returns the object's class name
static java.lang.String VariableModule.gettype(Value v)
          Returns the type string for the variable
static boolean ArrayModule.in_array(Value needle, ArrayValue stack, boolean strict)
          Determines if the key is in the array
static boolean ArrayModule.in_array(Value needle, ArrayValue stack, boolean strict)
          Determines if the key is in the array
static Value VariableModule.intval(Value v)
          Converts to a long
static long VariableModule.intval(Value v, int base)
          Converts to a long
static boolean ClassesModule.is_a(Value value, java.lang.String name)
          Returns true if the object implements the given class.
static boolean VariableModule.is_array(Value v)
          Returns true for an array.
static Value VariableModule.is_bool(Value v)
          Returns true for a boolean
static boolean VariableModule.is_callable(Env env, Value v, boolean isCheckSyntaxOnly, Value nameRef)
          Returns the type string for the variable
static boolean VariableModule.is_double(Value v)
          Returns true for a double
static boolean VariableModule.is_float(Value v)
          Returns true for a double
static Value VariableModule.is_int(Value v)
          Returns true for an integer
static Value VariableModule.is_integer(Value v)
          Returns true for an integer
static Value VariableModule.is_long(Value v)
          Returns true for an integer
static boolean VariableModule.is_null(Value v)
          Returns true for null
static boolean VariableModule.is_numeric(Env env, Value v)
          Returns true for numeric
static boolean VariableModule.is_object(Env env, Value v)
          Returns true for an object
static boolean ClassesModule.is_object(Value value)
          Returns true if the argument is an object.
static boolean VariableModule.is_real(Value v)
          Returns true for a real
 boolean VariableModule.is_resource(Value value)
          Returns true if the value is a resource
static boolean VariableModule.is_scalar(Value v)
          Returns true for a scalar
 boolean VariableModule.is_string(Value value)
          Returns true if the value is a string
static boolean ClassesModule.is_subclass_of(Env env, Value value, java.lang.String name)
          Returns true if the object implements the given class.
static boolean VariableModule.isset(Value... values)
          Returns the type string for the variable
static boolean ArrayModule.key_exists(Env env, Value key, Value searchArray)
          Undocumented alias for ArrayModule.array_key_exists(com.caucho.quercus.env.Env, com.caucho.quercus.env.Value, com.caucho.quercus.env.Value).
static boolean ArrayModule.key_exists(Env env, Value key, Value searchArray)
          Undocumented alias for ArrayModule.array_key_exists(com.caucho.quercus.env.Env, com.caucho.quercus.env.Value, com.caucho.quercus.env.Value).
static Value ArrayModule.key(Value value)
          Returns the current key of the array.
static java.lang.String ResinModule.mbean_implode(ArrayValue exploded)
          Implode an array into an object name.
static Value ArrayModule.pos(Value value)
          Returns the current value of the array.
static Value VariableModule.print_r(Env env, Value v, boolean isReturn)
          Prints a value.
static Value ArrayModule.range(Env env, Value start, Value end, long step)
          Creates an array using the start and end values provided
static Value ArrayModule.range(Env env, Value start, Value end, long step)
          Creates an array using the start and end values provided
static Value ResinModule.resin_var_dump(Env env, Value[] args)
          Prints a debug version of the variable
static java.lang.String VariableModule.serialize(Env env, Value v)
          Serializes the value to a string.
static long ArrayModule.sizeof(Env env, Value value, int countMethod)
          Returns the size of the array.
static Value VariableModule.stderr_var_dump(Env env, Value v, Value[] args)
           
static Value VariableModule.strval(Env env, Value v)
          Converts to a string
static Value VariableModule.var_dump(Env env, Value v, Value[] args)
          Prints a debug version of the variable
static Value VariableModule.var_export(Env env, Value v, boolean isReturn)
          Serializes the value to a string.
 

Uses of ReadOnly in com.caucho.quercus.lib.db
 

Method parameters in com.caucho.quercus.lib.db with annotations of type ReadOnly
 boolean PDOStatement.bindParam(Env env, Value parameter, Value value, int dataType, int length, Value driverOptions)
           
 boolean PDOStatement.bindValue(Env env, Value parameter, Value value, int dataType)
           
 boolean PDOStatement.bindValue(Env env, Value parameter, Value value, int dataType)
           
 boolean PDOStatement.execute(Env env, Value inputParameters)
          Execute the statement.
 Value PDO.query(Env env, java.lang.String query, int mode, Value[] args)
          Queries the database
 

Constructor parameters in com.caucho.quercus.lib.db with annotations of type ReadOnly
PDO(Env env, java.lang.String dsn, java.lang.String user, java.lang.String pass, ArrayValue options)
           
 

Uses of ReadOnly in com.caucho.quercus.lib.filter
 

Method parameters in com.caucho.quercus.lib.filter with annotations of type ReadOnly
static Value FilterModule.filter_var(Env env, Value value, int filterId, Value flagV)