| /external/v8/test/mjsunit/ |
| debug-break-native.js | 10 function breakListener(event, exec_state, event_data, data) { 25 function f(x) {
|
| debug-referenced-by.js | 53 function d(){}; 61 function closure_simple(p) { 62 return function() { p = null; }; 65 // This adds a reference (function context). 68 // This clears the reference (in function context). 73 function closure_eval(p, s) { 77 return function e(s) { eval(s); }; 80 // This adds a references (function context).
|
| debug-stepout-recursive-function.js | 37 function listener(event, exec_state, event_data, data) { 53 function BeginTest(name) { 59 function EndTest(expected_break_point_hit_count) { 70 function fact(x) { 82 shouldBreak = function(x) { return x == 3; }; 88 shouldBreak = function(x) { return x == 2; }; 94 shouldBreak = function(x) { return x == 1; }; 100 shouldBreak = function(x) { return x == 1 || x == 3; };
|
| mirror-function.js | 31 function MirrorRefCache(json_refs) { 39 MirrorRefCache.prototype.lookup = function(handle) { 43 function testFunctionMirror(f) { 59 assertEquals('function', mirror.type()); 61 assertEquals("Function", mirror.className()); 74 assertEquals('function', fromJSON.type); 75 assertEquals('Function', fromJSON.className); 76 assertEquals('function', refs.lookup(fromJSON.constructorFunction.ref).type); 77 assertEquals('Function', refs.lookup(fromJSON.constructorFunction.ref).name); 88 testFunctionMirror(function(){}); [all...] |
| prototype.js | 28 function A() { } 29 function B() { } 30 function C() { } 32 function NewC() { 63 function D() { 77 function X() { } 78 function Y() { } 80 X.prototype = function(a,b) { };
|
| regexp-not-sticky-yet.js | 31 assertThrows(function() { eval("/foo.bar/y"); }, SyntaxError); 32 assertThrows(function() { eval("/foobar/y"); }, SyntaxError); 33 assertThrows(function() { eval("/foo.bar/gy"); }, SyntaxError); 34 assertThrows(function() { eval("/foobar/gy"); }, SyntaxError); 35 assertThrows(function() { new RegExp("foo.bar", "y"); }, SyntaxError); 36 assertThrows(function() { new RegExp("foobar", "y"); }, SyntaxError); 37 assertThrows(function() { new RegExp("foo.bar", "gy"); }, SyntaxError); 38 assertThrows(function() { new RegExp("foobar", "gy"); }, SyntaxError);
|
| setter-on-constructor-prototype.js | 30 function RunTest(ensure_fast_case) { 31 function C1() { 46 function C2() { 62 function C3() { 66 C3.prototype.__defineSetter__('x', function(value) { this.y = 23; }); 78 function C4() { 83 C4.prototype.__proto__.__defineSetter__('x', function(value) { this.y = 23; }); 95 function D() {
|
| double-equals.js | 34 function testEqual(a, b) { 41 function testNotEqual(a, b) { 49 function Wrapper(value) { 51 this.valueOf = function () { return this.value; }; 55 // valueOf isn't a function. 56 function Wrapper2(value) { 59 this.toString = function () { return this.value; }; 110 (function () { 116 (function () { 122 (function () { [all...] |
| /external/v8/test/mjsunit/es6/ |
| debug-stepin-generators.js | 11 function listener(event, exec_state, event_data, data) { 27 function* g() {
|
| /external/v8/test/mjsunit/harmony/ |
| proxies-symbols.js | 33 function TestWithProxies(test, x, y, z) { 35 test(function(h) {return Proxy.createFunction(h, function() {})}, x, y, z) 41 function TestNoSymbolsToTrap(handler) { 45 function TestNoSymbolsToTrap2(create, handler) { 80 function TestNoSymbolsFromTrap(handler) { 84 function TestNoSymbolsFromTrap2(create, handler) { 97 function MakeSymbolArray() {
|
| /external/v8/test/mjsunit/harmony/regress/ |
| regress-343928.js | 7 (function () { // Scope for utility functions. 8 escaping_function = function(object) {
|
| /external/v8/test/mjsunit/regress/ |
| regress-1692.js | 36 f : { get: function(){}, enumerable: true }, 37 g : { get: function(){}, enumerable: false }, 38 11 : { get: function(){}, enumerable: true }, 39 12 : { get: function(){}, enumerable: false } 46 h : { get: function(){}, enumerable: true }, 47 k : { get: function(){}, enumerable: false }, 48 13 : { get: function(){}, enumerable: true }, 49 14 : { get: function(){}, enumerable: false }
|
| regress-crbug-350434.js | 7 function Ctor() { 15 function crash(o, timeout) {
|
| regress-crbug-381534.js | 9 function f(v) { 23 function g(v, x, index) {
|
| /external/v8/test/webkit/ |
| array-filter.js | 26 function passUndefined(element, index, array) { 29 function passEven(a) { 32 function passAfter5(element, index) { 40 function toObject(array) { 48 function reverseInsertionOrder(array) { 59 function filterLog(f) { 60 return function(i,j) { 100 shouldBe("[1,2,3].filter(function(i,j,k,l,m){ return m=!m; })", "[1,2,3]")
|
| /external/v8/test/webkit/fast/js/kde/ |
| exceptions.js | 25 function kdeShouldBe(a, b, c) 33 function testThrow() 45 function testThrow2() 56 function testReferenceError() 70 function testFunctionErrorHelper() 75 function testFunctionError() 86 function testMathFunctionError() 100 function testWhileAbortion()
|
| /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/ |
| asm_common.S | 29 .macro function name, export=0 33 .type \name, %function
|
| /frameworks/webview/chromium/plat_support/ |
| draw_sw.h | 37 // Function that can be called to fish out the underlying native pixel data 50 // Method that returns the current Skia function. 54 typedef bool (AwIsSkiaVersionCompatibleFunction)(SkiaVersionFunction function);
|
| /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.mod/ |
| assign_F_alloc.pass.cpp | 12 // class function<R(ArgTypes...)> 53 std::function<int(int)> f;
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/ |
| error.h | 51 * \param function Function name. 56 * A function of this type is called by the ALSA library when an error occurs. 57 * This function usually shows the message on the screen, and/or logs it. 59 typedef void (*snd_lib_error_handler_t)(const char *file, int line, const char *function, int err, const char *fmt, ...) /* __attribute__ ((format (printf, 5, 6))) */;
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/ |
| error.h | 51 * \param function Function name. 56 * A function of this type is called by the ALSA library when an error occurs. 57 * This function usually shows the message on the screen, and/or logs it. 59 typedef void (*snd_lib_error_handler_t)(const char *file, int line, const char *function, int err, const char *fmt, ...) /* __attribute__ ((format (printf, 5, 6))) */;
|
| /build/tools/droiddoc/templates-pdk/assets/ |
| search_autocomplete.js | 9 function set_row_selected(row, selected) 22 function set_row_values(toroot, row, match) 30 function sync_selection_table(toroot) 37 filtered.onmouseover = function() { 53 c1.onmousedown = function() { 56 c1.onmouseover = function() { 59 c1.onmouseout = function() { 104 function search_changed(e, kd, toroot) 161 function rank_autocomplete_results(query) { 166 // helper function that gets the last occurence index of the given rege [all...] |
| /external/chromium-trace/trace-viewer/tracing/third_party/jszip/ |
| jszip.min.js | 12 !function(a){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=a();else if("function"==typeof define&&define.amd)define([],a);else{var b;"undefined"!=typeof window?b=window:"undefined"!=typeof global?b=global:"undefined"!=typeof self&&(b=self),b.JSZip=a()}}(function(){return function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);throw new Error("Cannot find module '"+g+"'")}var j=c[g]={exports:{}};b[g][0].call(j.exports,function(a){var c=b[g][1][a];return e(c?c:a)},j,j.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g<d.length;g++)e(d[g]);return e}({1:[function(a,b,c){"use strict";var d="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";c.encode=function(a){for(var b,c,e,f,g,h,i,j="",k=0;k<a.length;)b=a.charCodeAt(k++),c=a.charCodeAt(k++),e=a.charCode (…) [all...] |
| /external/chromium-trace/trace-viewer/tracing/third_party/vinn/vinn/ |
| d8_bootstrap.js | 8 (function(global, v8arguments) { 41 global.quit = function(exitCode) { 61 log: function() { 66 info: function() { 71 error: function() { 76 warn: function() { 83 os.chdir = function() { 93 (function() { 97 function InvalidCharacterError(message) { 106 global.btoa = function(input) [all...] |
| /external/doclava/res/assets/templates/assets/ |
| search_autocomplete.js | 9 function set_row_selected(row, selected) 22 function set_row_values(toroot, row, match) 30 function sync_selection_table(toroot) 37 filtered.onmouseover = function() { 53 c1.onmousedown = function() { 56 c1.onmouseover = function() { 59 c1.onmouseout = function() { 104 function search_changed(e, kd, toroot) 161 function rank_autocomplete_results(query) { 166 // helper function that gets the last occurence index of the given rege [all...] |