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

<<21222324252627282930>>

  /external/v8/test/webkit/fast/js/
primitive-property-access-edge-cases.js 30 (function () {
36 (function () {
43 (function () {
44 function f(x) {
66 function checkGet(x, constructor)
69 Object.defineProperty(constructor.prototype, "foo", { get: function() { checkOkay = typeof this === 'object'; }, configurable: true });
75 function checkSet(x, constructor)
78 Object.defineProperty(constructor.prototype, "foo", { set: function() { checkOkay = typeof this === 'object'; }, configurable: true });
84 function checkGetStrict(x, constructor)
87 Object.defineProperty(constructor.prototype, "foo", { get: function() { "use strict"; checkOkay = typeof this !== 'object'; }, configurable: true })
    [all...]
  /external/v8/tools/
profile_view.js 35 function ViewBuilder(samplingRate) {
47 ViewBuilder.prototype.buildView = function(
52 callTree.traverse(function(node, viewParent) {
81 ViewBuilder.prototype.createView = function(head) {
89 * @param {string} internalFuncName A fully qualified function name.
91 * corresponding function and its descendants (not that depending on
94 * corresponding function only.
98 ViewBuilder.prototype.createViewNode = function(
112 function ProfileView(head) {
118 * Sorts the profile view using the specified sort function
    [all...]
  /build/tools/droiddoc/templates-ds/assets/js/grid/
960.gridder.js 29 function Grid() {
64 c._createEntity = function (e, d) {
67 c._setVariable = function (d, e) {
84 c.setupWindow = function () {
104 jQuery("#g-setup-tab a").click(function () {
107 jQuery("#g-setup input").keyup(function () {
110 c.settings.delayTimer = setTimeout(function () {
114 jQuery("#g-setup-gColumns").change(function () {
117 jQuery("#g-setup-misc input").click(function () {
120 jQuery().keydown(function (f) {
    [all...]
  /build/tools/droiddoc/templates-pdk/assets/
carousel.js 21 function randomDroid(){
42 function droid(appName){
59 function buildCarousel() {
74 a.onclick = function() { showPreview(this.className); return false; }
131 function showPreview(slideName) {
136 droid(slideName); // do this function when slide is clicked
155 function makeSlideStrip() {
178 function slide(goal, id, go_left, cp) {
189 function animate() {
190 var ease_right = function (t) { return (1 - Math.cos(t * Math.PI))/2.0; }
    [all...]
  /external/chromium-trace/trace-viewer/tracing/third_party/vinn/vinn/
path_utils.js 14 (function(global) {
20 * exists: a function that takes a string fileName and returns whether the
25 global.PathUtils = function(os_client) {
41 exists: function(fileName) {
45 isAbs: function(a) {
49 join: function(a, b) {
61 normPath: function(a) {
67 absPath: function(a) {
77 relPath: function(a, opt_relTo) {
  /external/skia/tools/lua/
count_reduced_clipstacks.lua 7 function sk_scrape_startcanvas(c, fileName)
12 function sk_scrape_endcanvas(c, fileName)
16 function string.starts(String,Start)
20 function build_stack_string(stack)
39 function sk_scrape_accumulate(t)
58 function print_stats(stats)
59 function sort_by_draw_cnt(a, b)
72 function sk_scrape_summarize()
75 aggregate table on the automated scraper system. Then use the print_stats function on
  /external/v8/src/
symbol.js 15 function SymbolConstructor(x) {
24 function SymbolToString() {
34 function SymbolValueOf() {
43 function InternalSymbol(key) {
52 function SymbolFor(key) {
64 function SymbolKeyFor(symbol) {
71 function ObjectGetOwnPropertySymbols(obj) {
95 function SetUpSymbol() {
125 function ExtendObject() {
liveedit-debugger.js 15 // If the function may not be recompiled (e.g. it was completely erased in new
17 // create a new instance of this function goes away. An old version of script
18 // is created to back up this obsolete function.
21 // LiveEdit namespace is declared inside a single function constructor.
22 Debug.LiveEdit = new function() {
32 function ApplyPatchMultiChunk(script, diff_array, new_source, preview_only,
79 function HarvestTodo(old_node) {
80 function CollectDamaged(node) {
89 function CollectNew(node_list) {
145 // Check that function being patched is not currently on stack or drop them
    [all...]
date.js 17 // Helper function to throw error.
18 function ThrowDateTypeError() {
26 function LocalTimezone(t) {
39 function UTC(time) {
48 function MakeTime(hour, min, sec, ms) {
61 function TimeInYear(year) {
72 function MakeDay(year, month, date) {
91 function MakeDate(day, time) {
104 function TimeClip(time) {
121 function DateConstructor(year, month, date, hours, minutes, seconds, ms)
    [all...]
  /external/v8/test/mjsunit/
arguments-apply-deopt.js 30 (function ApplyArgumentsDeoptInReceiverMapCheck() {
31 function invoker(h, r) {
32 return function XXXXX() {
40 function selfOf(c) {
45 function m() {
58 (function ApplyArgumentsDeoptInReceiverExplicit() {
59 function f() { return this + 21; }
61 function deopt() {
66 function XXXXX() {
getter-in-prototype.js 34 p.__defineGetter__('x', function(){});
35 p.__defineGetter__(0, function(){});
41 assertThrows(function() { 'use strict'; o.x = 42; });
42 assertThrows(function() { 'use strict'; o[0] = 42; });
44 function f() {
53 function g() {
58 function g_strict() {
68 function g2() {
72 function g2_strict() {
  /external/v8/test/mjsunit/compiler/
binary-ops.js 29 function or_test0(x, y) { return x | y; }
30 function and_test0(x, y) { return x & y; }
31 function add_test0(x, y) { return x + y; }
39 function or_test1(x, y) { return x | x; }
40 function and_test1(x, y) { return x & x; }
41 function add_test1(x, y) { return x + x; }
49 function or_test2(x, y) { x = y; return x | y; }
50 function and_test2(x, y) { x = y; return x & y; }
51 function add_test2(x, y) { x = y; return x + y; }
regress-funarguments.js 30 // Test function.arguments.
32 function A() {}
33 function B() {}
35 function fee(x, y) {
41 function gee(x) { return this.f(2 - x, "f"); }
43 function foo(x, y) {
49 function goo(x) { return this.f(x, "f"); }
59 function hej(x) {
65 function opt() {
  /external/v8/test/mjsunit/regress/
regress-2071.js 33 a.f = (function f1() {
34 function f2() {
46 a.g = (function f1() {
47 function f2() {
48 function f3() {
61 function outer() {
63 a.h = (function f1() {
64 function f2() {
65 function f3() {
regress-324028.js 30 assertThrows(function() { new Uint8Array(badObj); }, RangeError);
31 assertThrows(function() { new Uint8ClampedArray(badObj); }, RangeError);
32 assertThrows(function() { new Int8Array(badObj); }, RangeError);
33 assertThrows(function() { new Uint16Array(badObj); }, RangeError);
34 assertThrows(function() { new Int16Array(badObj); }, RangeError);
35 assertThrows(function() { new Uint32Array(badObj); }, RangeError);
36 assertThrows(function() { new Int32Array(badObj); }, RangeError);
37 assertThrows(function() { new Float32Array(badObj); }, RangeError);
38 assertThrows(function() { new Float64Array(badObj); }, RangeError);
regress-540.js 31 function f(x, y) { eval(x); return y(); }
32 var result = f("function y() { return 1; }", function () { return 0; })
36 (function (x) {
37 function x() { return 3; }
39 })(function () { return 2; });
43 (function (x) {
44 function x() { return 5; }
46 })(function () { return 4; });
  /external/guava/guava-tests/test/com/google/common/base/
FunctionsTest.java 43 Function<String, String> identity = Functions.identity();
49 Function<Long, Long> identity = Functions.identity();
92 Function<String, Integer> function = Functions.forMap(map); local
94 assertEquals(1, function.apply("One").intValue());
95 assertEquals(3, function.apply("Three").intValue());
96 assertNull(function.apply("Null"));
99 function.apply("Two");
105 .addEqualityGroup(function, Functions.forMap(map))
120 Function<String, Integer> function = Functions.forMap(map, 42) local
140 Function<String, Integer> function = Functions.forMap(map, 42); local
164 Function<String, Integer> function = Functions.forMap(map, null); local
179 Function<String, Integer> function = Functions.forMap(map, null); local
196 Function<String, Number> function = Functions.forMap(map, number); local
413 Function<Object, Integer> function = Functions.forSupplier(supplier); local
    [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
earley-boyer.js 5 new Benchmark("Earley", function () { BgL_earleyzd2benchmarkzd2(); }),
6 new Benchmark("Boyer", function () { BgL_nboyerzd2benchmarkzd2(); })
24 function initRuntime() {
25 function escapeHTML(s) {
39 function(s) {
48 function sc_print_debug() {
58 function sc_alert() {
71 function sc_typeof( x ) {
76 function sc_error() {
87 function sc_raise(obj)
    [all...]
  /external/v8/benchmarks/
earley-boyer.js 5 new Benchmark("Earley", function () { BgL_earleyzd2benchmarkzd2(); }),
6 new Benchmark("Boyer", function () { BgL_nboyerzd2benchmarkzd2(); })
24 function initRuntime() {
25 function escapeHTML(s) {
39 function(s) {
48 function sc_print_debug() {
58 function sc_alert() {
71 function sc_typeof( x ) {
76 function sc_error() {
87 function sc_raise(obj)
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
ANTLRFileStream.as 10 public function ANTLRFileStream(file:File, encoding:String = null) {
14 public function load(file:File, encoding:String = null):void {
32 public override function get sourceName():String {
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
MissingTokenException.js 1 org.antlr.runtime.MissingTokenException = function(expecting, input, inserted) {
12 getMissingType: function() {
16 toString: function() {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
UnivariateRealSolverUtils.java 42 * Convenience method to find a zero of a univariate real function. A default
45 * @param f the function.
48 * @return a value where the function is zero.
50 * @throws FunctionEvaluationException if an error occurs evaluating the function
61 * Convenience method to find a zero of a univariate real function. A default
64 * @param f the function
68 * @return a value where the function is zero
70 * @throws FunctionEvaluationException if an error occurs evaluating the function
95 * function at <code>a</code> and <code>b</code> and keeps moving
113 * @param function the functio
    [all...]
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/evalexception/media/
debug.js 0 function showFrame(anchor) {
21 d.addCallbacks(function (data) {
28 }, function (error) {
34 function _swapImage(anchor) {
44 function submitInput(button, tbid) {
62 d.addCallbacks(function (data) {
67 }, function (error) {
73 function showError(msg) {
83 function clearError() {
89 function expandInput(button)
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
FunctionsTest.java 39 Function<String, String> identity = Functions.identity();
45 Function<Long, Long> identity = Functions.identity();
72 Function<String, Integer> function = Functions.forMap(map); local
74 assertEquals(1, function.apply("One").intValue());
75 assertEquals(3, function.apply("Three").intValue());
76 assertNull(function.apply("Null"));
79 function.apply("Two");
85 .addEqualityGroup(function, Functions.forMap(map))
95 Function<String, Integer> function = Functions.forMap(map, 42) local
112 Function<String, Integer> function = Functions.forMap(map, null); local
129 Function<String, Number> function = Functions.forMap(map, number); local
305 Function<Object, Integer> function = Functions.forSupplier(supplier); local
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
Pointer.java 51 /** This variable indicates if the field is a function pointer. */
52 public boolean function; field in class:Pointer
58 * @param function
59 * this variable indicates if the field is a function pointer
63 public Pointer(int pointerLevel, boolean function, BlenderContext blenderContext) {
65 this.function = function;
99 Pointer p = new Pointer(pointerLevel - 1, this.function, blenderContext);
122 * This method indicates if this pointer points to a function.
123 * @return <b>true</b> if this is a function pointer and <b>false</b> otherwise
    [all...]

Completed in 1792 milliseconds

<<21222324252627282930>>