Searched defs:return (Results 1 - 23 of 23) sorted by relevance

/external/v8/test/mjsunit/regress/
H A Dregress-108296.js38 return x.prototype;
44 a.foo = (function () { return function () {}; })();
37 return x.prototype; class
/external/v8/test/mjsunit/
H A Darray-functions-prototype-misc.js61 return new Array(length);
65 return array.push(elt);
68 return array.concat(other);
71 return array.slice(start, len);
74 return array.splice(start, len);
77 return array.splice(start, len, elt);
80 return array.unshift(elt);
83 return array.unshift(elt1, elt2);
86 return array.shift();
94 return ob
101 return Array.prototype.concat.call(array, other); class
[all...]
H A Dfunction-prototype.js63 return f.prototype;
95 var foo = new Function("return x");
62 return f.prototype; class
H A Darray-sort.js41 a.sort(function(x, y) { return x - y; });
141 var obj0 = { toString: function() { return "a"; } };
142 var obj1 = { toString: function() { return "b"; } };
143 var obj2 = { toString: function() { return "c"; } };
178 a.sort(function(x, y) { return 1; });
252 x.__defineGetter__("1", function(){return this.foo;});
283 Array.prototype.sort.call(obj, function(a,b) { return (b < a) - (a < b); });
396 return {__proto__: o.prototype, val: v};
404 return a.val - b.val;
395 return {__proto__: o.prototype, val: v}; class
/external/libffi/src/cris/
H A Dsysv.S140 ;; Just return the 32 bit value.
141 ba return
153 return: label
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/String/
H A Dregress-179068.js129 return String.prototype.concat.apply("", tmp);
127 return String.prototype.concat.apply("", tmp); class
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Exceptions/
H A D15.11.7.6-003.js61 return F.prototype === orig;
60 return F.prototype === orig; class
/external/v8/test/mjsunit/compiler/
H A Dinline-arguments.js54 return Function.prototype.apply.call(this, receiver, args);
70 return F1.apply(this, arguments);
75 return F31(1);
/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
H A Dutil.js49 * @return {Object|null}
62 return eval('[' + expr + '][0]');
65 return null;
70 return obj.length;
91 * @return {Object} The value, if it is
96 return /** @type Object */(value);
98 return defaultValue;
107 * @return {boolean} Is the object an array?
110 return value != null &&
122 * @return {Arra
124 return Function.prototype.call.apply(Array.prototype.slice, arguments); class
[all...]
/external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/
H A Dutil.js49 * @return {Object|null}
62 return eval('[' + expr + '][0]');
65 return null;
70 return obj.length;
91 * @return {Object} The value, if it is
96 return /** @type Object */(value);
98 return defaultValue;
107 * @return {boolean} Is the object an array?
110 return value != null &&
122 * @return {Arra
124 return Function.prototype.call.apply(Array.prototype.slice, arguments); class
[all...]
/external/chromium/chrome/browser/resources/keyboard/
H A Dmain.js29 * @return {void}
51 return new Character(display, display);
74 * @return {number} The aspect ratio of this key.
77 return this.aspect_;
83 * @return {void}
95 * @return {number} Padding in pixels.
98 return Math.floor(height / 3.5);
105 * @return {void}
126 * @return {void}
138 * @return {Elemen
273 return BaseKey.prototype.getPadding.call(this, mode, height); class
[all...]
/external/webkit/Source/WebCore/inspector/front-end/
H A DSourceFile.js59 return;
68 return this._content;
87 return;
92 return;
118 return;
137 return;
159 scripts.sort(function(x, y) { return x.lineOffset - y.lineOffset || x.columnOffset - y.columnOffset; });
165 return;
233 return this._resource && !this._resource.finished;
269 this._sortedScripts.sort(function(x, y) { return
[all...]
H A DDetailedHeapshotGridNodes.js45 return cell;
130 return;
171 return cell;
192 return cell;
197 return this._count / this.dataGrid.snapshot.nodeCount * 100.0;
235 return this._enhanceData ? this._enhanceData(data) : data;
240 return this._retainedSize / this.dataGrid.snapshot.totalSize * 100.0;
245 return this._shallowSize / this.dataGrid.snapshot.totalSize * 100.0;
272 return new WebInspector.HeapSnapshotObjectNode(this.dataGrid, item);
278 return snapsho
[all...]
H A DExtensionServer.js122 return !!this._subscribers[type];
129 return;
151 return;
161 return this._status.E_BADARGTYPE("extensionId", typeof id, "string");
186 return this._status.E_EXISTS(id);
195 return this._status.OK();
202 return this._status.E_NOTFOUND(message.panel);
204 return this._status.E_NOTSUPPORTED();
211 return this._status.OK();
220 return ifram
[all...]
/external/webkit/Source/WebCore/inspector/front-end/UglifyJS/
H A Dprocess.js72 return [ this[0], MAP(defs, function(def){
76 return a;
81 return [ this[0], str ];
84 return [ this[0], num ];
87 return [ this[0], name ];
90 return [ this[0], MAP(statements, walk) ];
96 return out;
101 return [
109 return [ this[0], walk(expr) ];
112 return [ thi
1466 return Object.prototype.hasOwnProperty.call(obj, prop); class
[all...]
H A Dparse-js.js79 "return",
124 "return",
205 return (ch >= 48 && ch <= 57) ||
211 return is_alphanumeric_char(ch) || ch == "$" || ch == "_";
216 return ch >= 48 && ch <= 57;
221 return parseInt(num.substr(2), 16);
223 return parseInt(num.substr(1), 8);
225 return parseFloat(num);
242 return this.message + " (line: " + this.line + ", col: " + this.col + ", pos: " + this.pos + ")" + "\n\n" + this.stack;
250 return toke
1213 return Array.prototype.slice.call(a, start == null ? 0 : start); class
[all...]
/external/libvorbis/doc/
H A D01-introduction.tex305 \item if not first frame, return results of overlap/add as audio result of current frame
507 \paragraph{return finished audio data}
513 of data to return is one-half block consisting of and only of the
/external/clang/test/Preprocessor/
H A Dcxx_oper_keyword_ms_compat.cpp6 return true and false;
67 #define return macro
152 return
/external/webkit/PerformanceTests/SunSpider/tests/parse-only/
H A Dmootools-1.2.2-core-nc.js51 return obj;
56 if ((a1 = this.prototype[a1])) return add(this, a2, a1, a3);
59 return this;
63 if (typeof a1 == 'string') return add(this, a1, a2, a3);
65 return this;
70 return object;
76 return object.prototype[property].apply(args.shift(), args);
86 return ($type(item) === family);
113 return this;
131 return clea
75 return object.prototype[property].apply(args.shift(), args); class
[all...]
/external/v8/benchmarks/
H A Dearley-boyer.js33 return tmp;
67 return alert( s );
72 return typeof x;
94 return body();
97 return handler(e);
120 return ht[key];
122 return false;
124 return false;
136 return jsstring2string(sc_toDisplayString(o));
144 return (o
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-earley-boyer.js27 return tmp;
61 return alert( s );
66 return typeof x;
88 return body();
91 return handler(e);
114 return ht[key];
116 return false;
118 return false;
130 return jsstring2string(sc_toDisplayString(o));
138 return (o
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-earley-boyer.js27 return tmp;
61 return alert( s );
66 return typeof x;
88 return body();
91 return handler(e);
114 return ht[key];
116 return false;
118 return false;
130 return jsstring2string(sc_toDisplayString(o));
138 return (o
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-earley-boyer.js27 return tmp;
61 return alert( s );
66 return typeof x;
88 return body();
91 return handler(e);
114 return ht[key];
116 return false;
118 return false;
130 return jsstring2string(sc_toDisplayString(o));
138 return (o
[all...]

Completed in 813 milliseconds