| /build/tools/droiddoc/templates-sdk-dev/assets/js/ |
| android_3p-bundle.js | 89 * @param {Function?} opt_whenDone if specified, called when the last entry 95 window['_pr_isIE6'] = function () { 99 window['_pr_isIE6'] = function () { return ieVersion; }; 104 (function () { 131 "debugger eval export function get null set undefined var with " + 144 "function in local set then until "; 199 var REGEXP_PRECEDER_PATTERN = function () { 226 // object each time the function containing them is called. 234 function attribToHtml(str) { 242 function textToHtml(str) [all...] |
| /external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/test/fixtures/ |
| serializer_test.js | 9 exports['Backward compatibility - parse5.TreeSerializer'] = function () { 14 test: function () { 20 parse5.TreeAdapters.default.getTagName = function (element) { 29 after: function () { 34 exports['Regression - SYSTEM-only doctype serialization'] = function () { 45 exports['Regression - Escaping of doctypes with quotes in them'] = function () { 62 htmlStrs.forEach(function (html) { 70 exports['Regression - new line in <pre> tag'] = function () { 85 htmlStrs.forEach(function (htmlStr) { 93 exports['Options - encodeHtmlEntities'] = function () { [all...] |
| /external/v8/src/ |
| proxy.js | 15 function ProxyCreate(handler, proto) { 25 function ProxyCreateFunction(handler, callTrap, constructTrap) { 35 constructTrap = function() { 43 handler, callTrap, constructTrap, $Function.prototype) 49 function SetUpProxy() { 68 function DerivedConstructTrap(callTrap) { 69 return function() { 78 function DelegateCallAndConstruct(callTrap, constructTrap) { 79 return function() { 85 function DerivedGetTrap(receiver, name) [all...] |
| optimizing-compiler-thread.cc | 102 // The function may have already been optimized by OSR. Simply continue. 107 // The function may have already been optimized by OSR. Simply continue. 128 Handle<JSFunction> function = info->closure(); local 129 function->ReplaceCode(function->shared()->code()); 225 Handle<JSFunction> function(*info->closure()); 229 function->ShortPrint(); 239 if (function->IsOptimized()) { 242 function->ShortPrint(); 248 function->ReplaceCode [all...] |
| /external/v8/test/mjsunit/ |
| elements-transition.js | 34 function make_array_string(length) { 38 function make_array(length) { 42 function test(test_double, test_object, set, length) { 50 // false, true, nice setter function, 20 93 function run_test(test_double, test_object, set, length) { 98 run_test(false, false, function(a,i,v){ a[i] = v; }, 20); 99 run_test(true, false, function(a,i,v){ a[i] = v; }, 20); 100 run_test(false, true, function(a,i,v){ a[i] = v; }, 20); 101 run_test(true, true, function(a,i,v){ a[i] = v; }, 20); 103 run_test(false, false, function(a,i,v){ a[i] = v; }, 10000) [all...] |
| const-eval-init.js | 35 function testIntroduceGlobal() { 49 function testAssignExistingGlobal() { 63 function testAssignmentArgument(x) { 64 function local() { 79 __defineSetter__('x', function() { throw 42; }); 81 function testRedefineGlobal() { 90 function testInitFastCaseExtension() { 97 function testInitSlowCaseExtension() { 108 function testAssignSurroundingContextSlot() { 110 function local() [all...] |
| debug-step-stub-callfunction.js | 34 function listener(event, exec_state, event_data, data) { 49 function f() { 59 // Use an inner function to ensure that the function call is through CodeStub 62 function g() { 63 function h() {} 73 // Use an inner function to ensure that the function call is through CodeStub 75 function testCallInExpreesion() { 76 function h() { [all...] |
| simple-constructor.js | 28 function props(x) { 34 function f1() { 38 function f2(x) { 42 function f3(x) { 48 function f4(x) { 82 function f5(x, y) { 87 function f6(x, y) { 92 function f7(x, y, z) { 97 function testArgs(fun) { 125 function g() [all...] |
| stack-traces-2.js | 33 var thrower = { valueOf: function() { FAIL; }, 34 toString: function() { FAIL; } }; 36 // Tests that a native constructor function is included in the 38 function testTraceNativeConstructor(nativeFunc) { 48 // Tests that a native conversion function is included in the 50 function testTraceNativeConversion(nativeFunc) { 61 function testNotOmittedBuiltin(throwing, included) { 82 testNotOmittedBuiltin(function(){ [thrower, 2].sort(function (a,b) { 87 testNotOmittedBuiltin(function(){ thrower + 2; }, "ADD") [all...] |
| /external/v8/test/mjsunit/regress/ |
| regress-969.js | 38 // function calls to observe an extra value. 40 function first(x, y) { return x; } 48 function test0() { return first((y = 1, typeof x0), 2); } 49 // Call the function once to compile it. 57 function test1() { return first((y += 1, typeof x1), 2); } 64 function test2() { return first((++y, typeof x2), 2); } 70 function test3() { return first((y++, typeof x3), 2); } 79 function test4() { return first((o.x = 1, typeof x4), 2); } 85 function test5() { return first((o.x += 1, typeof x5), 2); } 91 function test6() { return first((++o.x, typeof x6), 2); [all...] |
| regress-1170.js | 30 this.__defineSetter__("a", function(v) { setter_value = v; }); 40 // Function declarations are treated specially to match Safari. We do 42 this.__defineSetter__("a", function(v) { assertUnreachable(); }); 43 eval("function a() {}"); 46 this.__defineSetter__("b", function(v) { setter_value = v; }); 58 this.__defineSetter__("c", function(v) { throw 42; }); 70 __proto__.__defineSetter__("aa", function(v) { assertUnreachable(); }); 74 __proto__.__defineSetter__("bb", function(v) { assertUnreachable(); }); 78 // Function declarations are treated specially to match Safari. We do 80 __proto__.__defineSetter__("cc", function(v) { assertUnreachable(); }) [all...] |
| regress-1790.js | 32 function CheckSequence(builtin, callback) { 35 var callback_wrapper = function() { 42 get: function () { delete array[1]; }, 52 CheckSequence(Array.prototype.every, function() { return true; }); 53 CheckSequence(Array.prototype.filter, function() { return true; }); 54 CheckSequence(Array.prototype.forEach, function() { return 0; }); 55 CheckSequence(Array.prototype.map, function() { return 0; }); 56 CheckSequence(Array.prototype.reduce, function() { return 0; }); 57 CheckSequence(Array.prototype.reduceRight, function() { return 0; }); 58 CheckSequence(Array.prototype.some, function() { return false; }) [all...] |
| regress-merge-descriptors.js | 28 var extend = function (d, b) { 29 function __() { this.constructor = d; } 34 var Car = (function (Super) { 35 var Car = function () { 44 get: function () { 50 self.copy = function () { 63 var SuperCar = ((function (Super) { 64 var SuperCar = function (make) { 74 get: function () { 81 self.copy = function () { }; [all...] |
| /ndk/docs/Additional_library_docs/renderscript/ |
| jquery.js | 12 (function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={} (…) [all...] |
| /external/libvncserver/webclients/novnc/include/web-socket-js/ |
| web_socket.js | 6 (function() { 12 console = {log: function(){ }, error: function(){ }}; 34 WebSocket = function(url, protocol, proxyHost, proxyPort, headers) { 43 setTimeout(function() { 44 WebSocket.__addTask(function() { 56 WebSocket.prototype.send = function(data) { 80 WebSocket.prototype.close = function() { 92 * @param {function} listener 96 WebSocket.prototype.addEventListener = function(type, listener, useCapture) [all...] |
| /cts/suite/cts/deviceTests/browserbench/assets/octane/ |
| gbemu.js | 24 function setupGameboy() { 38 function runGameboy() { 52 function tearDownGameboy() { 66 function GameBoyContext() { 67 this.createBuffer = function() { 70 this.createImageData = function (w, h) { 75 this.putImageData = function (buffer, x, y) { 82 this.drawImage = function () { } 85 function GameBoyCanvas() { 86 this.getContext = function() { [all...] |
| /external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/lib/tree_construction/ |
| formatting_element_list.js | 7 var FormattingElementList = module.exports = function (treeAdapter) {
21 FormattingElementList.prototype._getNoahArkConditionCandidates = function (newElement) {
49 FormattingElementList.prototype._ensureNoahArkCondition = function (newElement) {
88 FormattingElementList.prototype.insertMarker = function () {
93 FormattingElementList.prototype.pushElement = function (element, token) {
105 FormattingElementList.prototype.insertElementAfterBookmark = function (element, token) {
122 FormattingElementList.prototype.removeEntry = function (entry) {
132 FormattingElementList.prototype.clearToLastMarker = function () {
144 FormattingElementList.prototype.getElementEntryInScopeWithTagName = function (tagName) {
158 FormattingElementList.prototype.getElementEntry = function (element) { [all...] |
| /external/llvm/test/MC/ARM/ |
| eh-directive-setfp-diagnostics.s | 15 .type func1,%function 31 .type func2,%function 48 .type func3,%function 64 .type func4,%function 80 .type func5,%function
|
| /external/v8/test/webkit/ |
| JSON-stringify-replacer.js | 28 function returnUndefined(){} 29 function returnObjectFor1(k, v) { 34 function returnArrayFor1(k, v) { 39 function returnUndefinedFor1(k, v) { 44 function returnNullFor1(k, v) { 49 function returnCycleObjectFor1(k, v) { 54 function returnCycleArrayFor1(k, v) { 59 function returnFunctionFor1(k, v) { 61 return function(){}; 64 function returnStringForUndefined(k, v) [all...] |
| /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/ |
| Antlr.Runtime.Tools.pas | 59 function ToString: String; 70 function GetImplementor: TObject; 83 function GetImplementor: TObject; 93 function GetValue: String; 109 function GetValue: String; 114 function ToString: String; override; 124 function Clone: IANTLRInterface; 131 function GetCapacity: Integer; 133 function GetCount: Integer; 135 function GetItem(Index: Integer): T [all...] |
| /external/owasp/sanitizer/empiricism/ |
| html-containment.js | 17 function runExperiment(makeHtmlString, checkDom, initialResult, onResult, 53 function advance() { 89 function step() { 108 setTimeout(function () { 117 notify[notifyIndex] = function () { 127 setTimeout(function () { advance(); step(); }, 0); 140 function formatDataToJsonHTML(data) { 149 function format(v) { 185 function maybeIndent(afterComma) { 240 function displayJson(data, container) [all...] |
| /external/v8/test/mjsunit/harmony/ |
| private.js | 37 function isValidSymbolString(s) { 43 function TestNew() { 55 function TestType() { 67 function TestPrototype() { 75 function TestConstructor() { 84 function TestToString() { 86 assertThrows(function() {new String(symbols[i]) }, TypeError) 88 assertThrows(function() { symbols[i] + "" }, TypeError) 99 function TestToBoolean() { 116 function TestToNumber() [all...] |
| /build/tools/droiddoc/templates-pdk/assets/ |
| jquery-resizable.min.js | 12 (function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={} (…) [all...] |
| /external/doclava/res/assets/templates/assets/ |
| jquery-resizable.min.js | 12 (function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={} (…) [all...] |
| /external/lldb/source/Symbol/ |
| SymbolContext.cpp | 33 function (NULL), 40 SymbolContext::SymbolContext(const ModuleSP& m, CompileUnit *cu, Function *f, Block *b, LineEntry *le, Symbol *s) : 44 function (f), 53 SymbolContext::SymbolContext(const TargetSP &t, const ModuleSP& m, CompileUnit *cu, Function *f, Block *b, LineEntry *le, Symbol *s) : 57 function (f), 70 function (rhs.function), 82 function (NULL), 102 function = rhs.function; [all...] |