Home | History | Annotate | Download | only in src

Lines Matching refs:functions

47 // Helper function used to install functions on objects.
48 function InstallFunctions(object, attributes, functions) {
49 if (functions.length >= 8) {
50 %OptimizeObjectForAddingMultipleProperties(object, functions.length >> 1);
52 for (var i = 0; i < functions.length; i += 2) {
53 var key = functions[i];
54 var f = functions[i + 1];
70 // Install functions first, because this function is used to initialize
1288 // Set Up non-enumerable functions on the Object.prototype object.
1522 // Set up non-enumerable functions on the Number prototype object.
1629 // We already have caller and arguments properties on functions,
1634 // To be consistent with our normal functions we leave this as it is.