HomeSort by relevance Sort by last modified time
    Searched refs:function (Results 276 - 300 of 4292) sorted by null

<<11121314151617181920>>

  /external/v8/test/mjsunit/regress/
regress-353058.js 8 function runNearStackLimit(f) { function t() { try { t(); } catch(e) { f(); } }; try { t(); } catch(e) {} }
9 function __f_0(
regress-3564.js 7 function MyWrapper(v) {
8 return { valueOf: function() { return v } };
11 function f() {
regress-357108.js 7 function TestArray(constructor) {
8 function Check(a) {
13 a[0] = { valueOf : function() { return 27; } };
regress-359441.js 7 function g() {
11 function f() {
15 function deopt(x) {
regress-361608.js 7 function f() {};
10 function foo() {
14 f(function() { x = i; });
regress-386034.js 7 function f(x) {
14 function g() {}
19 assertThrows(function() { f('----'); }, TypeError);
regress-builtinbust-3.js 5 function produce_object() {
7 function set_length() { real_length = "boom"; }
8 function get_length() { return real_length; }
regress-builtinbust-4.js 6 function boomer() { return 0; }
10 assertDoesNotThrow(function() { o.push(1); });
14 assertDoesNotThrow(function() { o.unshift(2); });
regress-captured-object-no-dummy-use.js 8 function f() { }
9 function g(a) { this.d = a; }
10 function h() {
regress-crbug-349878.js 7 function f(a, b) {
17 function h() {
25 function g() {
regress-lazy-deopt-inlining.js 8 function f1(d) {
12 function f2(v) { return v; }
14 function f3(d) {
regress-lazy-deopt-inlining2.js 8 function f1(d) {
12 function f2(v0, v1, v2) { return v1; }
14 function f3(d) {
  /external/v8/test/mjsunit/
regress-keyed-store-non-strict-arguments.js 5 function args(arg) { return arguments; }
8 (function () {
13 (function () {
debug-stepin-function-call.js 37 // function 'g'.
38 function listener(event, exec_state, event_data, data) {
62 function g(t) {
66 // Test step into function call from a function without local variables.
67 function call1() {
73 // Test step into function call from a function with some local variables.
74 function call2() {
82 // Test step into function call which is a part of an expression
    [all...]
  /external/vixl/examples/
check-bounds.cc 62 void run_function(Simulator *simulator, Instruction * function,
68 simulator->RunFrom(function);
83 // Generate the code for the example function.
89 // Run the example function.
90 Instruction * function = masm.GetLabelAddress<Instruction*>(&check_bounds); local
91 run_function(&simulator, function, 546, 50, 1000);
92 run_function(&simulator, function, 62, 100, 200);
93 run_function(&simulator, function, 200, 100, 200);
  /frameworks/wilhelm/src/
trace.h 49 extern void slTraceEnterGlobal(const char *function);
50 extern void slTraceLeaveGlobal(const char *function, SLresult result);
51 extern void slTraceEnterInterface(const char *function);
52 extern void slTraceLeaveInterface(const char *function, SLresult result);
53 extern void slTraceEnterInterfaceVoid(const char *function);
54 extern void slTraceLeaveInterfaceVoid(const char *function);
  /external/chromium-trace/trace-viewer/tracing/third_party/gl-matrix/src/gl-matrix/
vec2.js 34 vec2.create = function() {
47 vec2.clone = function(a) {
61 vec2.fromValues = function(x, y) {
75 vec2.copy = function(out, a) {
89 vec2.set = function(out, x, y) {
103 vec2.add = function(out, a, b) {
117 vec2.subtract = function(out, a, b) {
125 * @function
137 vec2.multiply = function(out, a, b) {
145 * @function
    [all...]
  /external/libvncserver/webclients/novnc/include/
util.js 21 Array.prototype.push8 = function (num) {
25 Array.prototype.push16 = function (num) {
29 Array.prototype.push32 = function (num) {
42 Array.prototype.map = function(fun /*, thisp*/)
45 if (typeof fun != "function")
71 Util.init_logging = function (level) {
85 'log' : function(m) {},
86 'warn' : function(m) {},
87 'error': function(m) {}};
91 Util.Debug = Util.Info = Util.Warn = Util.Error = function (msg) {}
    [all...]
  /external/v8/test/webkit/
order-of-operations.js 25 function left() {
29 function right() {
33 shouldBe('(function(){ leftRight = ""; left() > right(); return leftRight; })()', '"LeftRight"');
34 shouldBe('(function(){ leftRight = ""; left() >= right(); return leftRight; })()', '"LeftRight"');
35 shouldBe('(function(){ leftRight = ""; left() < right(); return leftRight; })()', '"LeftRight"');
36 shouldBe('(function(){ leftRight = ""; left() <= right(); return leftRight; })()', '"LeftRight"');
37 shouldBe('(function(){ leftRight = ""; left() + right(); return leftRight; })()', '"LeftRight"');
38 shouldBe('(function(){ leftRight = ""; left() - right(); return leftRight; })()', '"LeftRight"');
39 shouldBe('(function(){ leftRight = ""; left() / right(); return leftRight; })()', '"LeftRight"');
40 shouldBe('(function(){ leftRight = ""; left() * right(); return leftRight; })()', '"LeftRight"')
    [all...]
typeof-constant-string.js 28 function isUndefined(a)
36 function isUndefinedStrict(a)
44 function isBoolean(a)
53 function isBooleanStrict(a)
62 function isNumber(a)
70 function isNumberStrict(a)
78 function isString(a)
86 function isStringStrict(a)
94 function isObject(a)
102 function isObjectStrict(a
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
TreeParser.as 41 public function TreeParser(input:TreeNodeStream, state:RecognizerSharedState = null) {
46 public override function reset():void {
54 public function set treeNodeStream(input:TreeNodeStream):void {
58 public function get treeNodeStream():TreeNodeStream {
62 public override function get sourceName():String {
66 protected override function getCurrentInputSymbol(input:IntStream):Object {
70 protected override function getMissingSymbol(input:IntStream,
83 public function matchAny(ignore:IntStream):void { // ignore stream, copy of this.input
113 protected override function mismatch(input:IntStream, ttype:int, follow:BitSet):void {
121 public override function getErrorHeader(e:RecognitionException):String
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-local-class.cpp 133 template <typename T> static void foo(T function);
134 template <typename T> static void bar(T function);
135 template <typename T> static void func(T function);
138 template <typename T> void C::foo(T function) { function(); }
140 template <typename T> void C::bar(T function) {
141 foo([&function]() { function(); });
144 template <typename T> void C::func(T function) {
148 Struct(T function) : mFunction(function) {}
164 struct function { struct in namespace:PR14373
165 template <typename _Functor> function(_Functor __f) { __f(); } function in struct:PR14373::function
    [all...]
  /external/v8/test/mjsunit/compiler/
short-circuit.js 35 assertEquals(x, function () { return 0 || x }());
36 assertEquals(1, function () { return 1 || x }());
39 assertEquals(0, function () { return 0 && x }());
40 assertEquals(x, function () { return 1 && x }());
43 assertEquals(x, function(y) { return y++ || x }(0));
44 assertEquals(1, function(y) { return y++ || x }(1));
47 assertEquals(0, function(y) { return y++ && x }(0));
48 assertEquals(x, function(y) { return y++ && x }(1));
51 assertEquals(0, function () { return {x: 0}}().x);
54 assertEquals(0, function () { return {x: 0} || this }().x)
    [all...]
  /external/v8/test/mjsunit/harmony/
proxies-json.js 30 function testStringify(expected, object) {
37 // Test serializing a proxy, function proxy and objects that contain them.
39 get: function(target, name) {
42 enumerate: function(target) {
45 getOwnPropertyDescriptor: function(target, name) {
53 var proxy_fun = Proxy.createFunction(handler1, function() { return 1; });
68 get: function(target, name) {
72 enumerate: function(target) {
75 getOwnPropertyDescriptor: function(target, name) {
87 // Proxy with a get function that uses the first argument
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
CommonToken.js 1 org.antlr.runtime.CommonToken = function() {
40 getType: function() {
44 setLine: function(line) {
48 getText: function() {
64 setText: function(text) {
68 getLine: function() {
72 getCharPositionInLine: function() {
76 setCharPositionInLine: function(charPositionInLine) {
80 getChannel: function() {
84 setChannel: function(channel)
    [all...]

Completed in 1553 milliseconds

<<11121314151617181920>>