Different function call method

May i call two function with dot syntax.

For example ,

function aa (p1:Number):Number{
return p1*10
}

function bb (p2:Number){
trace (p2)
}

is it possible to call this function like this --> bb().aa(10) or somethink like this