OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:function
(Results
826 - 850
of
4292
) sorted by null
<<
31
32
33
34
35
36
37
38
39
40
>>
/external/llvm/test/MC/ARM/
inst-thumb-overflow-2.s
9
.type constant_overflow,%
function
pool.s
7
.type pool,%
function
unwind-stack-diagnostics.s
10
.type multiple_personality_disorder,%
function
variant-diagnostics.s
6
.type invalid_variant,%
function
/external/llvm/test/MC/ELF/
alias.s
16
.type foo4,@
function
23
// Test that bar6 is a
function
that doesn't have the same value as foo4.
60
// CHECK-NEXT: Type:
Function
69
// CHECK-NEXT: Type:
Function
105
// CHECK-NEXT: Type:
Function
common.s
70
.type foo,@
function
/external/openfst/
Android.mk
8
define private-
function
-all-cpp-files-under
22
LOCAL_SRC_FILES := $(call private-
function
-all-cpp-files-under, src/lib)
/external/skia/tools/lua/
agg_dash.lua
9
function
increment_inner(table, key, value)
13
function
increment(table, tableKey, key, value)
glyph-counts.lua
0
function
tostr(t)
34
function
sk_scrape_startcanvas(c, fileName)
41
function
sk_scrape_endcanvas(c, fileName)
54
function
array_count(array)
62
function
sk_scrape_accumulate(t)
91
lua_pictures will call this
function
after all of the pictures have been
94
function
sk_scrape_summarize()
107
function
test_summary()
/external/v8/test/mjsunit/compiler/
store-elimination.js
32
function
B(x, y) {
38
function
test_store_store() {
45
function
test_store_load_store1() {
53
function
test_store_load_store2() {
61
function
test_store_call_store() {
69
function
test_store_deopt_store() {
77
function
killall() {
83
function
test(x, f) {
/external/v8/test/mjsunit/es6/debug-promises/
reject-caught-by-default-reject-handler.js
19
var p0 = new Promise(
function
(res, rej) { resolve = res; reject = rej; });
20
var p1 = p0.then(
function
() {
24
var p2 = p1.then(
function
() {
28
var q = new Promise(
function
(res, rej) {
33
q.then(
function
() {
39
function
listener(event, exec_state, event_data, data) {
66
function
testDone(iteration) {
67
function
checkResult() {
throw-caught-by-default-reject-handler.js
19
var p0 = new Promise(
function
(res, rej) { resolve = res; reject = rej; });
20
var p1 = p0.then(
function
() {
24
var p2 = p1.then(
function
() {
28
var q = new Promise(
function
(res, rej) {
33
q.then(
function
() {
39
function
listener(event, exec_state, event_data, data) {
67
function
testDone(iteration) {
68
function
checkResult() {
/external/v8/test/mjsunit/es6/
debug-stepin-collections-foreach.js
11
function
listener(event, exec_state, event_data, data) {
30
function
cb_set(num) {
35
function
cb_map(key, val) {
70
// Array.forEach calls a callback
function
, which by itself uses
71
// Array.forEach with another callback
function
.
73
function
second_level_listener(event, exec_state, event_data, data) {
94
function
cb_set_foreach(num) {
99
function
cb_map_foreach(key, val) {
string-iterator.js
6
function
TestStringPrototypeIterator() {
14
function
assertIteratorResult(value, done, result) {
19
function
TestManualIteration() {
31
function
TestSurrogatePairs() {
54
function
TestStringIteratorPrototype() {
66
function
TestForOf() {
83
function
TestNonOwnSlots() {
87
assertThrows(
function
() { object.next(); }, TypeError);
/external/v8/test/mjsunit/es6/regress/
regress-3280.js
11
function
listener(event, exec_state, event_data, data) {
20
function
*generator_local_2(a) {
/external/v8/test/mjsunit/
megamorphic-callbacks.js
28
function
load(o) {
32
function
store(o) {
36
function
call(o) {
41
var o = { x: 42, f:
function
() { }, z: 100 };
54
o.__defineGetter__("x",
function
() { return 100; });
55
o.__defineSetter__("y",
function
(value) { this.y_mirror = value; });
56
o.__defineGetter__("f",
function
() { return
function
() { return 300; }});
/external/v8/test/mjsunit/regress/
regress-109195.js
31
function
listener(event, exec_state, event_data, data) {
40
var F =
function
() {
41
1,
function
() {
43
(
function
() { d; });
51
Function
.prototype.__defineGetter__("f",
function
() {
56
var G =
function
() {
57
1,
function
() {
59
(
function
() { d; });
regress-1118.js
30
// An exception thrown in a
function
optimized by on-stack replacement (OSR)
33
function
A() { }
34
A.prototype.f =
function
() { }
36
function
B() { }
40
// This
function
throws if o does not have an f property, and should not be
42
function
g() { try { return o.f(); } finally { }}
47
// This
function
should be optimized via OSR.
48
function
h() {
regress-1548.js
31
function
testfn(f) { return [1].map(f)[0]; }
32
function
foo() { return [].map.caller; }
33
assertThrows(
function
() { testfn(foo); } );
38
assertThrows(
function
() { testfn(foo); } );
41
function
testarguments(f) { return [1].map(f)[0]; }
42
function
bar() { return [].map.arguments; }
43
assertThrows(
function
() { testarguments(bar); } );
48
assertThrows(
function
() { testarguments(bar); } );
regress-1560.js
30
function
mkCOWArray() {
36
function
mkArray() {
42
function
mkNumberDictionary() {
49
function
write(a, i) { a[i] = "bazinga!"; }
51
function
test(factories, w) {
52
factories.forEach(
function
(f) { w(f(), 0); });
53
factories.forEach(
function
(f) { w(f(), 0); });
55
factories.forEach(
function
(f) { w(f(), 0); });
regress-2568.js
28
function
pluck1(a, key) {
29
return a.map(
function
(item) { return item[key]; });
34
function
pluck2(a, key) {
35
return a.map(
function
(item) { return item[key]; });
40
function
pluck3(a, key) {
41
return a.map(
function
(item) { return item[key]; });
43
f =
function
() { 1 };
44
f.prototype = g =
function
() { 2 };
regress-667061.js
40
function
h(o) {
55
function
g(o) {
59
function
O(x) { this.x = x; };
60
var o = new O(
function
() { return 1; });
75
function
f(o) {
79
assertEquals(1, f({ x:
function
() { return 1; }})); // go monomorphic
80
assertEquals(2, f({ x:
function
() { return 2; }})); // go megamorphic
81
assertEquals(3, f({ x:
function
() { return 3; }})); // stay megamorphic
regress-crbug-405922.js
9
function
listener(event, exec_state, event_data, data) {
20
function
f(x) {
regress-crbug-412215.js
14
function
f( ) {
26
function
g(obj) {
regress-gvn-ftt.js
7
function
A(id) {
16
function
f(o, value) {
Completed in 583 milliseconds
<<
31
32
33
34
35
36
37
38
39
40
>>