HomeSort by relevance Sort by last modified time
    Searched refs:function (Results 426 - 450 of 6113) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineFlameChart.js 38 WebInspector.TimelineFlameChartDataProvider = function(model, frameModel)
51 barHeight: function()
59 textBaseline: function()
67 textPadding: function()
76 entryFont: function(entryIndex)
85 entryTitle: function(entryIndex)
102 dividerOffsets: function(startTime, endTime)
109 reset: function()
117 timelineData: function()
196 minimumBoundary: function()
    [all...]
  /external/chromium_org/v8/test/webkit/
array-reduceRight.js 28 function toObject(array) {
36 function toUnorderedObject(array) {
48 shouldBe("[0,1,2,3].reduceRight(function(a,b){ return a + b; })", "6");
49 shouldBe("[1,2,3].reduceRight(function(a,b){ return a + b; })", "6");
50 shouldBe("[0,1,2,3].reduceRight(function(a,b){ return a + b; }, 4)", "10");
51 shouldBe("[1,2,3].reduceRight(function(a,b){ return a + b; }, 4)", "10");
52 shouldBe("toObject([0,1,2,3]).reduceRight(function(a,b){ return a + b; })", "6");
53 shouldBe("toObject([1,2,3]).reduceRight(function(a,b){ return a + b; })", "6");
54 shouldBe("toObject([0,1,2,3]).reduceRight(function(a,b){ return a + b; }, 4)", "10");
55 shouldBe("toObject([1,2,3]).reduceRight(function(a,b){ return a + b; }, 4)", "10")
    [all...]
  /external/llvm/test/MC/ARM/
target-expressions.s 7 .type function,%function
8 function: label
12 .type external,%function
16 .type test,%function
18 movw r0, :lower16:function
19 movt r0, :upper16:function
21 movw r1, #:lower16:function
22 movt r1, #:upper16:function
49 @ CHECK: movw r0, :lower16:function
    [all...]
  /external/chromium_org/v8/test/mjsunit/
stack-traces.js 28 function testMethodNameInference() {
29 function Foo() { }
30 Foo.prototype.bar = function () { FAIL; };
34 function testNested() {
35 function one() {
36 function two() {
37 function three() {
47 function testArrayNative() {
48 [1, 2, 3].map(function () { FAIL; });
51 function testImplicitConversion()
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
CommonTreeNodeStream.as 95 public function CommonTreeNodeStream(tree:Object, adaptor:TreeAdaptor = null, initialBufferSize:int = DEFAULT_INITIAL_BUFFER_SIZE) {
97 // return uninitalized for static resuse function
114 public static function reuse(parent:CommonTreeNodeStream, start:int, stop:int):CommonTreeNodeStream {
128 protected function fillBuffer():void {
134 public function fillBufferTo(t:Object):void {
158 protected function getNodeIndex(node:Object):int {
175 protected function addNavigationNode(ttype:int):void {
196 public function getNode(i:int):Object {
203 public function LT(k:int):Object {
220 public function get currentSymbol():Object { return LT(1);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
Context.js 8 WebInspector.Context = function()
23 * @param {function(new:T, ...)} flavorType
27 setFlavor: function(flavorType, flavorValue)
41 * @param {function(new:T, ...)} flavorType
45 _dispatchFlavorChange: function(flavorType, flavorValue)
54 * @param {function(new:Object, ...)} flavorType
55 * @param {function(!WebInspector.Event)} listener
58 addFlavorChangeListener: function(flavorType, listener, thisObject)
69 * @param {function(new:Object, ...)} flavorType
70 * @param {function(!WebInspector.Event)} listene
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_function_test_utils.cc 161 std::string RunFunctionAndReturnError(UIThreadExtensionFunction* function,
164 return RunFunctionAndReturnError(function, args, browser, NONE);
166 std::string RunFunctionAndReturnError(UIThreadExtensionFunction* function,
170 scoped_refptr<ExtensionFunction> function_owner(function);
171 // Without a callback the function will not generate a result.
172 function->set_has_callback(true);
173 RunFunction(function, args, browser, flags);
174 EXPECT_FALSE(function->GetResultList()) << "Did not expect a result";
175 return function->GetError();
179 UIThreadExtensionFunction* function,
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
composite_tts.js 20 cvox.CompositeTts = function() {
34 cvox.CompositeTts.prototype.add = function(tts) {
44 function(textString, queueMode, properties) {
45 this.ttsEngines_.forEach(function(engine) {
55 cvox.CompositeTts.prototype.isSpeaking = function() {
56 return this.ttsEngines_.some(function(engine) {
65 cvox.CompositeTts.prototype.stop = function() {
66 this.ttsEngines_.forEach(function(engine) {
75 cvox.CompositeTts.prototype.addCapturingEventListener = function(listener) {
76 this.ttsEngines_.forEach(function(engine)
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/interface/
host_factory.js 26 cvox.HostFactory = function() {};
32 cvox.HostFactory.getHost = function() {
40 cvox.HostFactory.getTts = function() {
48 cvox.HostFactory.getBraille = function() {
56 cvox.HostFactory.getMsgs = function() {
64 cvox.HostFactory.getEarcons = function() {
72 cvox.HostFactory.getMathJax = function() {
77 * @type {function (new:cvox.AbstractHost)}
82 * @type {function (new:cvox.TtsInterface)}
87 * @type {function (new:cvox.BrailleInterface)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/qunit/test/
logs.js 16 QUnit.begin = function() {
19 QUnit.done = function() {
21 QUnit.moduleStart = function(context) {
25 QUnit.moduleDone = function(context) {
29 QUnit.testStart = function(context) {
33 QUnit.testDone = function(context) {
37 QUnit.log = function(context) {
44 (function() {
47 QUnit[log] = function() {
56 test("test1", 13, function() {
    [all...]
  /external/chromium_org/ui/keyboard/resources/
api_adapter.js 11 var $ = function(id) {
15 function logIfError() {
21 function insertText(text) {
25 function MoveCursor(swipe_direction, swipe_flags) {
29 function sendKeyEvent(event) {
33 (function(scope) {
40 function keyboardLocked() {
48 function lockKeyboard(lock) {
57 function hideKeyboard() {
62 function keyboardLoaded()
    [all...]
  /external/llvm/bindings/ocaml/transforms/ipo/
llvm_ipo.mli 19 (** See llvm::createConstantMergePass function. *)
23 (** See llvm::createDeadArgEliminationPass function. *)
27 (** See llvm::createFunctionAttrsPass function. *)
31 (** See llvm::createFunctionInliningPass function. *)
35 (** See llvm::createAlwaysInlinerPass function. *)
39 (** See llvm::createGlobalDCEPass function. *)
43 (** See llvm::createGlobalOptimizerPass function. *)
47 (** See llvm::createIPConstantPropagationPass function. *)
51 (** See llvm::createPruneEHPass function. *)
55 (** See llvm::createIPSCCPPass function. *
    [all...]
  /external/chromium_org/v8/test/mjsunit/compiler/
escape-analysis-arguments.js 32 (function testCapturedArguments() {
33 function h() {
37 function g(x) {
41 function f() {
62 (function testTwoCapturedArguments() {
63 function h() {
67 function i() {
71 function g(x) {
75 function f() {
91 (function testTwoCapturedArgumentsNested()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
RemoteObject.js 36 WebInspector.RemoteObject = function() { }
66 arrayLength: function()
72 * @param {function(?Array.<!WebInspector.RemoteObjectProperty>, ?Array.<!WebInspector.RemoteObjectProperty>)} callback
74 getOwnProperties: function(callback)
81 * @param {function(?Array.<!WebInspector.RemoteObjectProperty>, ?Array.<!WebInspector.RemoteObjectProperty>)} callback
83 getAllProperties: function(accessorPropertiesOnly, callback)
90 * @param {function(string=)} callback
92 deleteProperty: function(name, callback)
98 * @param {function(this:Object, ...)} functionDeclaration
100 * @param {function(?WebInspector.RemoteObject, boolean=)=} callbac
    [all...]
  /external/chromium_org/v8/test/mjsunit/harmony/
proxies-for.js 33 function TestWithProxies(test, x, y, z) {
35 test(function(h) {return Proxy.createFunction(h, function() {})}, x, y, z)
41 function TestForIn(properties, handler) {
45 function TestForIn2(create, properties, handler) {
53 enumerate: function() { return [0, "a"] }
57 enumerate: function() { return this.enumerate2() },
58 enumerate2: function() { return [null, "a"] }
62 getPropertyNames: function() { return ["a", "b", "c", "d", "e"] },
63 getPropertyDescriptor: function(k)
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/
Promise-static-all.js 30 var p1 = new Promise(function(resolve) { resolve('p1'); });
31 var p2 = new Promise(function(resolve) { resolve('p2'); });
32 var p3 = new Promise(function(resolve) { resolve('p3'); });
33 var p4 = new Promise(function() {});
34 var p5 = new Promise(function() {});
35 var p6 = new Promise(function(_, reject) { reject('p6'); });
36 var p7 = new Promise(function(_, reject) { reject('p7'); });
37 var p8 = new Promise(function(_, reject) { reject('p8'); });
38 var p9 = new Promise(function(resolve) { resolve(p2); });
40 Promise.all([p1, p2, p5]).then(function(result)
    [all...]
Promise-static-race.js 30 var p1 = new Promise(function(resolve) { resolve('p1'); });
31 var p2 = new Promise(function(resolve) { resolve('p2'); });
32 var p3 = new Promise(function(resolve) { resolve('p3'); });
33 var p4 = new Promise(function() {});
34 var p5 = new Promise(function() {});
35 var p6 = new Promise(function(_, reject) { reject('p6'); });
36 var p7 = new Promise(function(_, reject) { reject('p7'); });
37 var p8 = new Promise(function(_, reject) { reject('p8'); });
38 var p9 = new Promise(function(resolve) { resolve(p2); });
40 Promise.race([p4, p5]).then(function(localResult)
    [all...]
  /external/chromium_org/tools/gn/
functions.cc 49 const FunctionCallNode* function,
56 FillNeedsBlockError(function, err);
67 function, "target defaults", err))
71 // The name is the single argument to the target function.
72 if (!EnsureSingleStringArg(function, args, err))
78 block_scope->SetValue(target_name, Value(function, args[0].string_value()),
79 function);
84 void FillNeedsBlockError(const FunctionCallNode* function, Err* err) {
85 *err = Err(function->function(), "This function call requires a block."
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
prototype-1.6.0.3.js 35 emptyFunction: function() { },
36 K: function(x) { return x }
45 create: function() {
50 function klass() {
59 var subclass = function() { };
78 addMethods: function(source) {
90 value = (function(m) {
91 return function() { return ancestor[m].apply(this, arguments) };
106 Object.extend = function(destination, source) {
113 inspect: function(object)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
results_unittests.js 28 (function () {
86 test("ResultAnalyzer", 44, function() {
156 test("expectedFailures", 1, function() {
170 test("unexpectedFailures", 1, function() {
181 test("unexpectedFailuresByTest", 1, function() {
196 test("failureInfoForTestAndBuilder", 1, function() {
208 test("resultKind", 12, function() {
223 test("resultType", 12, function() {
238 test("resultNodeForTest", 4, function() {
249 asyncTest("walkHistory", 1, function() {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
utilities.js 34 Object.isEmpty = function(obj)
46 Object.values = function(obj)
60 function mod(m, n)
69 String.prototype.findAll = function(string)
83 String.prototype.lineEndings = function()
95 String.prototype.lineCount = function()
104 String.prototype.lineAt = function(lineNumber)
119 String.prototype.escapeCharacters = function(chars)
145 String.regexSpecialCharacters = function()
153 String.prototype.escapeForRegExp = function()
    [all...]
  /bionic/libc/arch-arm64/include/machine/
asm.h 46 #define __bionic_asm_function_type %function
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
cts_report.js 24 function CtsReport(msg, score, isFinal)
  /development/ndk/platforms/android-L/arch-arm64/include/machine/
asm.h 46 #define __bionic_asm_function_type %function
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
EarlyExitException.as 34 public function EarlyExitException(decisionNumber:int, input:IntStream) {

Completed in 439 milliseconds

<<11121314151617181920>>