| /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/ |
| regress-104077.js | 70 function addValues(obj) 96 function tryThis() 110 print("In finally case of tryThis() function"); 123 function myTest(x) 153 function addValues_2(obj) 173 print('Caught an exception in addValues_2() function: ' + e); 227 function testfunc(mode) 284 function entry_menu() 316 function addValues_3(obj) 348 print("In finally block of addValues_3() function: sum = " + sum) [all...] |
| /external/webkit/Source/WebCore/inspector/front-end/ |
| inspector.js | 32 ;(function preloadImages() 72 _detectPlatformFlavor: function() 141 resetFocusElement: function() 174 _createPanels: function() 256 _updateErrorAndWarningCounts: function() 308 highlightDOMNode: function(nodeId) 325 highlightDOMNodeForTwoSeconds: function(nodeId) 331 wireElementWithDOMNode: function(element, nodeId) 338 _updateFocusedNode: function(nodeId) 349 networkResourceById: function(id [all...] |
| ResourceHeadersView.js | 31 WebInspector.ResourceHeadersView = function(resource) 103 _refreshURL: function() 109 _refreshQueryString: function() 117 _refreshFormData: function() 136 _refreshRequestPayload: function(formData) 147 _refreshParms: function(title, parms, parmsTreeElement) 196 _toggleURLdecoding: function(event) 203 _getHeaderValue: function(headers, key) 212 _refreshRequestHeaders: function() 231 _refreshResponseHeaders: function() [all...] |
| ProfileView.js | 28 WebInspector.CPUProfileView = function(profile) 42 "function": { title: WebInspector.UIString("Function"), disclosure: true, sortable: true } }; 69 this.focusButton = new WebInspector.StatusBarButton(WebInspector.UIString("Focus selected function."), "focus-profile-node-status-bar-item"); 73 this.excludeButton = new WebInspector.StatusBarButton(WebInspector.UIString("Exclude selected function."), "exclude-profile-node-status-bar-item"); 84 function profileCallback(error, profile) 163 show: function(parentElement) 169 hide: function() 175 resize: function() 181 refresh: 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/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() {
|
| inline-two.js | 30 // Test that we can inline a function that calls another function. 31 function TestInlineX(o) { 45 o2.size = function() { return 42; } 46 o2.g = function() { return this.size(); }; 54 function TestInlineX2(o) { 68 obj.foo = function() { return 42; } 71 o3.h = function() { return this.v.foo(); }; 79 function TestInlineFG(o) { 93 obj.g = function() { return 42; [all...] |
| /external/v8/test/mjsunit/ |
| 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() {
|
| array-store-and-grow.js | 33 function array_store_1(a,b,c) { 54 function array_store_2(a,b,c) { 65 function array_store_3(a,b,c) { 78 function makeCOW() { 82 function array_store_4(a,b,c) { 93 function array_store_5(a,b,c) { 104 function array_store_6(a,b,c) { 123 function array_store_5(a,b,c) { 134 function array_store_6(a,b,c) { 145 function array_store_7(a,b,c) [all...] |
| top-level-assignments.js | 33 x.b = function() { return 42; }; 44 y.b = function() { return 42; }; 52 function forty_two() { return 42; }; 64 x1.b = function() { return 42; }; 66 x2.b = function() { return 42; }; 82 function Calculator(x, y) { 87 Calculator.prototype.sum = function() { return this.x + this.y; }; 88 Calculator.prototype.difference = function() { return this.x - this.y; }; 89 Calculator.prototype.product = function() { return this.x * this.y; }; 90 Calculator.prototype.quotient = function() { return this.x / this.y; } [all...] |
| /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-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; });
|
| regress-crbug-3184.js | 28 Object.extend = function (dest, source) { 33 Object.extend ( Function.prototype, 35 wrap : function (wrapper) { 37 var bmethod = (function(_method) { 38 return function () { 40 this.$proceed = function() { return _method.apply(this, arguments); }; 43 var amethod = function () { 48 var value = function() { bmethod.call(this); retval = wrapper.apply(this, arguments); amethod.call(this); return retval; }; 53 String.prototype.cap = function() { 58 function(each) [all...] |
| /external/webkit/LayoutTests/fast/dom/TreeWalker/script-tests/ |
| acceptNode-filter.js | 8 function filter(node) 16 debug("Testing with raw function filter"); 23 acceptNode : function(node) { 54 debug("<br>Testing with object with non-function acceptNode property"); 62 debug("<br>Testing with function having acceptNode function"); 63 var filter = function() { return NodeFilter.FILTER_ACCEPT; }; 64 filter.acceptNode = function(node) { return NodeFilter.FILTER_SKIP; }; 72 acceptNode: function(node) {
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ |
| jsref.js | 39 function test() { 56 function AddTestCase( description, expect, actual ) { 60 function TestCase( n, d, e, a ) { 79 function startTest() { 109 function test() { 122 function getTestCaseResult( expect, actual ) { 160 function writeTestCaseResult( expect, actual, string ) { 165 function writeFormattedResult( expect, actual, string, passed ) { 181 function writeLineToLog( string ) { 184 function writeHeaderToLog( string ) [all...] |
| /external/guava/guava-tests/test/com/google/common/base/ |
| FunctionsTest.java | 42 Function<String, String> identity = Functions.identity(); 48 Function<Long, Long> identity = Functions.identity(); 91 Function<String, Integer> function = Functions.forMap(map); local 93 assertEquals(1, function.apply("One").intValue()); 94 assertEquals(3, function.apply("Three").intValue()); 95 assertNull(function.apply("Null")); 98 function.apply("Two"); 104 .addEqualityGroup(function, Functions.forMap(map)) 119 Function<String, Integer> function = Functions.forMap(map, 42) local 139 Function<String, Integer> function = Functions.forMap(map, 42); local 163 Function<String, Integer> function = Functions.forMap(map, null); local 178 Function<String, Integer> function = Functions.forMap(map, null); local 195 Function<String, Number> function = Functions.forMap(map, number); local 412 Function<Object, Integer> function = Functions.forSupplier(supplier); local [all...] |
| /external/v8/src/ |
| date.js | 42 // Helper function to throw error. 43 function ThrowDateTypeError() { 51 function LocalTimezone(t) { 63 function UTC(time) { 72 function MakeTime(hour, min, sec, ms) { 85 function TimeInYear(year) { 96 function MakeDay(year, month, date) { 115 function MakeDate(day, time) { 128 function TimeClip(time) { 145 %SetCode($Date, function(year, month, date, hours, minutes, seconds, ms) [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/chromium/chrome/browser/resources/net_internals/ |
| httpthrottlingview.js | 9 function HttpThrottlingView(mainBoxId, enableCheckboxId) { 24 HttpThrottlingView.prototype.onHttpThrottlingEnabledPrefChanged = function( 32 HttpThrottlingView.prototype.onEnableCheckboxClicked_ = function() {
|
| /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...] |
| /external/srec/portable/include/ |
| plog.h | 77 * Flushes internal buffer. This function can be left unimplemented if no 87 * Destroys the logger. This function is responsible to deallocate any 122 * Initializes the LOG library. This function must be called before any 123 * logging can take place. PtrdInit() must be called before this function on 154 * Shutdowns the LOG library. Once this function is called, no logging 164 * Sets the format of the logging messages. If this function is never called, 180 * the function returns ESR_INVALID_ARGUMENT. 253 * Runs a function, checks its return-code. In case of an error, logs it and jumps to 257 #define CHKLOG(rc, function) do { rc = (function); if (rc != ESR_SUCCESS) { PLogError("%s in %s:%d", ESR_rc2str(rc), __FILE__, __LINE__); goto CLE (…) [all...] |