HomeSort by relevance Sort by last modified time
    Searched refs:function (Results 151 - 175 of 5718) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/polymer/
polymer.min.js 28 function PointerGestureEvent(a,b){var c=b||{},d=document.createEvent("Event"),e={bubbles:!0,cancelable:!0};return Object.keys(e).forEach(function(a){a in c&&(e[a]=c[a])}),d.initEvent(a,e.bubbles,e.cancelable),Object.keys(c).forEach(function(a){d[a]=b[a]}),d.preventTap=this.preventTap,d}if(window.Platform=window.Platform||{},window.logFlags=window.logFlags||{},function(a){var b=a.flags||{};location.search.slice(1).split("&").forEach(function(a){a=a.split("="),a[0]&&(b[a[0]]=a[1]||!0)}),b.shadow=(b.shadowdom||b.shadow||b.polyfill||!HTMLElement.prototype.webkitCreateShadowRoot)&&"polyfill",a.flags=b}(Platform),"polyfill"===Platform.flags.shadow){var SideTable;"undefined"!=typeof WeakMap&&navigator.userAgent.indexOf("Firefox/")<0?SideTable=WeakMap:function(){var a=Object.defineProperty,b=Object.hasOwnProperty,c=(new Date).getTime()%1e9;SideTable=function(){this.name="__st"+(1e9*Math.random()>>>0)+(c++ +"__")},SideTable.prototype={set:function(b,c){a(b,this.name,{value:c,writable:!0})},get:function(a){return b.call(a,this.name)?a[this.name]:void 0},"delete":function(a){this.set(a,void 0)}}}();var ShadowDOMPolyfill={};!function(a){"use strict";function b(a){if(!a) (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
Tests.js 48 TestSuite = function()
59 TestSuite.prototype.fail = function(message)
74 TestSuite.prototype.assertEquals = function(expected, actual, opt_message)
89 TestSuite.prototype.assertTrue = function(value, opt_message)
100 TestSuite.prototype.assertHasKey = function(object, key)
112 TestSuite.prototype.assertContains = function(string, substring)
122 TestSuite.prototype.takeControl = function()
127 this.timerId_ = setTimeout(function() {
136 TestSuite.prototype.releaseControl = function()
149 TestSuite.prototype.reportOk_ = function()
    [all...]
FileUtils.js 34 WebInspector.OutputStreamDelegate = function()
39 onTransferStarted: function() { },
41 onTransferFinished: function() { },
46 onChunkTransferred: function(reader) { },
51 onError: function(reader, event) { },
57 WebInspector.OutputStream = function()
64 * @param {function(WebInspector.OutputStream)=} callback
66 write: function(data, callback) { },
68 close: function() { }
74 WebInspector.ChunkedReader = function()
    [all...]
HeapSnapshotProxy.js 35 WebInspector.HeapSnapshotWorkerWrapper = function()
40 postMessage: function(message)
43 terminate: function()
54 WebInspector.HeapSnapshotRealWorker = function()
61 _messageReceived: function(event)
79 postMessage: function(message)
84 terminate: function()
96 WebInspector.AsyncTaskQueue = function()
104 * @param {function()} task
106 addTask: function(task
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/
basic-strict-mode.js 27 function testThis() {
31 function testThisDotAccess() {
35 function testThisBracketAccess(prop) {
39 function testGlobalAccess() {
42 function shouldBeSyntaxError(str) {
44 shouldThrow("(function(){" + str + "})");
46 function testLineContinuation() {
51 function testEscapeSequence() {
76 shouldBeUndefined("Function('\"use strict\"; return this;')()");
77 shouldThrow("Function('\"use strict\"; with({});')")
    [all...]
  /external/chromium_org/v8/test/mjsunit/harmony/
block-let-crankshaft.js 49 function f1() { }
51 function f2(x) { }
53 function f3() {
57 function f4() {
58 function foo() {
62 function f5() {
66 function f6() {
70 function f7(x) {
74 function f8() {
79 function f9()
    [all...]
proxies.js 33 function TestWithProxies(test, x, y, z) {
35 test(function(h) {return Proxy.createFunction(h, function() {})}, x, y, z)
44 function TestGetOwnProperty(handler) {
48 function TestGetOwnProperty2(create, handler) {
57 getOwnPropertyDescriptor: function(k) {
64 getOwnPropertyDescriptor: function(k) {
67 getOwnPropertyDescriptor2: function(k) {
74 getOwnPropertyDescriptor: function(k) {
81 get: function(pr, pk)
    [all...]
block-let-semantics.js 34 // function and block scopes.
36 function TestFunctionLocal(s) {
38 eval("(function(){" + s + "; })")();
46 function TestBlockLocal(s,e) {
48 eval("(function(){ {" + s + ";} })")();
57 function TestAll(s) {
77 TestAll('f(); let x; function f() { return x + 1; }');
78 TestAll('f(); let x; function f() { x = 1; }');
79 TestAll('f(); let x; function f() { x += 1; }');
80 TestAll('f(); let x; function f() { ++x; }')
    [all...]
  /external/v8/test/mjsunit/harmony/
block-let-crankshaft.js 49 function f1() { }
51 function f2(x) { }
53 function f3() {
57 function f4() {
58 function foo() {
62 function f5() {
66 function f6() {
70 function f7(x) {
74 function f8() {
79 function f9()
    [all...]
proxies.js 33 function TestWithProxies(test, x, y, z) {
35 test(function(h) {return Proxy.createFunction(h, function() {})}, x, y, z)
44 function TestGetOwnProperty(handler) {
48 function TestGetOwnProperty2(create, handler) {
57 getOwnPropertyDescriptor: function(k) {
64 getOwnPropertyDescriptor: function(k) {
67 getOwnPropertyDescriptor2: function(k) {
74 getOwnPropertyDescriptor: function(k) {
81 get: function(pr, pk)
    [all...]
block-let-semantics.js 34 // function and block scopes.
36 function TestFunctionLocal(s) {
38 eval("(function(){" + s + "; })")();
46 function TestBlockLocal(s,e) {
48 eval("(function(){ {" + s + ";} })")();
57 function TestAll(s) {
77 TestAll('f(); let x; function f() { return x + 1; }');
78 TestAll('f(); let x; function f() { x = 1; }');
79 TestAll('f(); let x; function f() { x += 1; }');
80 TestAll('f(); let x; function f() { ++x; }')
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
CommonTree.js 7 org.antlr.runtime.tree.CommonTree = function(node) {
35 getToken: function() {
39 dupNode: function() {
43 isNil: function() {
47 getType: function() {
54 getText: function() {
61 getLine: function() {
71 getCharPositionInLine: function() {
81 getTokenStartIndex: function() {
88 setTokenStartIndex: function(index)
    [all...]
CommonTreeAdaptor.js 10 org.antlr.runtime.tree.CommonTreeAdaptor = function() {};
20 dupNode: function(t) {
27 create: function(payload) {
56 createToken: function(fromToken) {
69 setTokenBoundaries: function(t, startToken, stopToken) {
97 getTokenStartIndex: function(t) {
104 getTokenStopIndex: function(t) {
111 getText: function(t) {
118 getType: function(t) {
129 getToken: function(t)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScript.cpp 62 ScriptFunctionCall function(injectedScriptObject(), "evaluate");
63 function.appendArgument(expression);
64 function.appendArgument(objectGroup);
65 function.appendArgument(includeCommandLineAPI);
66 function.appendArgument(returnByValue);
67 function.appendArgument(generatePreview);
68 makeEvalCall(errorString, function, result, wasThrown);
73 ScriptFunctionCall function(injectedScriptObject(), "callFunctionOn");
74 function.appendArgument(objectId);
75 function.appendArgument(expression)
    [all...]
  /external/chromium_org/tools/gn/
functions.cc 25 void FillNeedsBlockError(const FunctionCallNode* function, Err* err) {
26 *err = Err(function->function(), "This function call requires a block.",
27 "The block's \"{\" must be on the same line as the function "
43 invocation->function().value().data(),
92 const FunctionCallNode* function,
99 FillNeedsBlockError(function, err);
107 if (!default_scope->NonRecursiveMergeTo(block_scope, function,
112 // The name is the single argument to the target function
    [all...]
function_set_default_toolchain.cc 24 " This function is only valid to call during the processing of the build\n"
26 " separately for each toolchain, this function will be a no-op when\n"
45 const FunctionCallNode* function,
49 *err = Err(function->function(), "Must be called from build config.",
59 const SourceDir& current_dir = SourceDirForFunctionCall(function);
62 if (!EnsureSingleStringArg(function, args, err))
71 mgr.SetDefaultToolchainUnlocked(toolchain_label, function->GetRange(), err);
  /bionic/libc/bionic/
dlmalloc.c 23 static void __bionic_heap_corruption_error(const char* function);
24 static void __bionic_heap_usage_error(const char* function, void* address);
39 static void __bionic_heap_corruption_error(const char* function) {
41 __libc_fatal("heap corruption detected by %s", function);
44 static void __bionic_heap_usage_error(const char* function, void* address) {
46 address, function);
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/src/
gl-matrix.js.erb 30 (function() {
35 if(typeof define == 'function' && typeof define.amd == 'object' && define.amd) {
37 define(function() {
50 (function(exports) {
  /external/chromium_org/third_party/WebKit/PerformanceTests/resources/
statistics.js 26 var Statistics = new (function () {
28 this.max = function (values) {
32 this.min = function (values) {
36 this.sum = function (values) {
37 return values.reduce(function (a, b) { return a + b; }, 0);
40 this.squareSum = function (values) {
41 return values.reduce(function (sum, value) { return sum + value * value;}, 0);
46 this.sampleStandardDeviation = function (numberOfSamples, sum, squareSum) {
53 this.supportedConfidenceLevels = function () {
61 this.confidenceIntervalDelta = function (confidenceLevel, numberOfSamples, sum, squareSum)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
elfglobal.asm 2 ; program that calls function with eax=constant, thus exiting err=0
4 GLOBAL function
8 function: label
  /external/chromium_org/tools/perf/utils/results_viewer/src/
results_viewer.js 12 function handleFileSelectEvent(evt) {
16 fileReader.onload = (function(theFile) {
17 return function(e) {
35 function createViewerDataset(fileContents) {
38 rows.forEach(function (row, index, array) {
45 columns.forEach(function (element, index, array) {
  /external/clang/www/analyzer/scripts/
menu.js 1 startList = function() {
7 node.onmouseover=function() {
10 node.onmouseout=function() {
  /external/chromium_org/v8/test/webkit/
array-reduce.js 28 function toObject(array) {
36 function toUnorderedObject(array) {
48 shouldBe("[0,1,2,3].reduce(function(a,b){ return a + b; })", "6");
49 shouldBe("[1,2,3].reduce(function(a,b){ return a + b; })", "6");
50 shouldBe("[0,1,2,3].reduce(function(a,b){ return a + b; }, 4)", "10");
51 shouldBe("[1,2,3].reduce(function(a,b){ return a + b; }, 4)", "10");
52 shouldBe("toObject([0,1,2,3]).reduce(function(a,b){ return a + b; })", "6");
53 shouldBe("toObject([1,2,3]).reduce(function(a,b){ return a + b; })", "6");
54 shouldBe("toObject([0,1,2,3]).reduce(function(a,b){ return a + b; }, 4)", "10");
55 shouldBe("toObject([1,2,3]).reduce(function(a,b){ return a + b; }, 4)", "10")
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/ui/
notifications.js 29 (function(){
34 init: function()
38 add: function(notification)
41 Array.prototype.some.call(this.children, function(existingNotification) {
53 init: function()
62 index: function()
66 setIndex: function(index)
70 dismiss: function()
73 $(this).fadeOut(function()
81 init: function(message
    [all...]
  /dalvik/vm/alloc/
DlMalloc.cpp 28 static void heap_error(const char* msg, const char* function, void* p);
42 static void heap_error(const char* msg, const char* function, void* p) {
44 function, p);

Completed in 878 milliseconds

1 2 3 4 5 67 8 91011>>