HomeSort by relevance Sort by last modified time
    Searched refs:function (Results 76 - 100 of 5480) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/ubench/
function-excess-args.js 0 function f(x0, x1, x2, x3, x4)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/audits/
AuditCategory.js 32 WebInspector.AuditCategory = function()
54 * @param {function(!WebInspector.AuditRuleResult)} ruleResultCallback
55 * @param {function()} categoryDoneCallback
58 run: function(target, requests, ruleResultCallback, categoryDoneCallback, progress)
  /external/llvm/test/MC/ELF/
gnu-type.s 4 // CHECK: .type TYPE,@function
7 // CHECK: .type comma_TYPE,@function
10 // CHECK: .type at_TYPE,@function
13 // CHECK: .type percent_TYPE,@function
16 // CHECK: .type string_TYPE,@function
18 .type type function
19 // CHECK: .type type,@function
21 .type comma_type, function
22 // CHECK: .type comma_type,@function
24 .type at_type, @function
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
Panel.js 33 WebInspector.Panel = function(name)
41 this._shortcuts = /** !Object.<number, function(Event=):boolean> */ ({});
53 reset: function()
60 defaultFocusedElement: function()
68 searchableView: function()
76 replaceSelectionWith: function(text)
84 replaceAllWith: function(query, text)
91 elementsToRestoreScrollPositionsFor: function()
99 handleShortcut: function(event)
112 function handleSearchShortcuts(shortcuts, handler
    [all...]
  /external/chromium_org/base/debug/
dump_without_crashing.h 17 // Before calling this function, call SetDumpWithoutCrashingFunction to pass a
18 // function pointer, typically chrome!DumpProcessWithoutCrash. See example code
22 // Sets a function that'll be invoked to dump the current process when
24 BASE_EXPORT void SetDumpWithoutCrashingFunction(void (CDECL *function)());
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/news/javascript/
util.js 27 function $(elementId) {
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
Object.js 30 WebInspector.Object = function() {
36 * @param {function(!WebInspector.Event)} listener
39 addEventListener: function(eventType, listener, thisObject)
53 * @param {function(!WebInspector.Event)} listener
56 removeEventListener: function(eventType, listener, thisObject)
72 removeAllListeners: function()
81 hasEventListeners: function(eventType)
93 dispatchEventToListeners: function(eventType, eventData)
116 WebInspector.Event = function(target, type, data)
126 stopPropagation: function()
    [all...]
  /external/clang/test/PCH/Inputs/
typo.hpp 2 template<typename F> class function {}; class in namespace:boost
  /external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
F_incomplete.pass.cpp 12 // class function<R(ArgTypes...)>
14 // template<class F> function(F);
21 typedef std::function<void(X&)> callback_type;
nullptr_t.pass.cpp 12 // class function<R(ArgTypes...)>
14 // function(nullptr_t);
21 std::function<int(int)> f(nullptr);
  /external/llvm/test/DebugInfo/AArch64/
eh_frame.s 5 .type foo,@function
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
ContentProviderBasedProjectDelegate.js 38 WebInspector.ContentProviderBasedProjectDelegate = function(workspace, id, type)
52 type: function()
60 displayName: function()
69 url: function()
77 * @param {function(?Date, ?number)} callback
79 requestMetadata: function(path, callback)
86 * @param {function(?string)} callback
88 requestFileContent: function(path, callback)
98 function innerCallback(content, encoded, mimeType)
107 canSetFileContent: function()
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_import_prototypes.cpp 26 * Import function prototypes from one IR tree into another.
34 * Visitor used to import function prototypes
39 * body of the function.
51 this->function = NULL;
56 assert(this->function == NULL);
58 this->function = this->symbols->get_function(ir->name);
59 if (!this->function) {
60 this->function = new(this->mem_ctx) ir_function(ir->name);
62 list->push_tail(this->function);
64 /* Add the new function to the symbol table
97 ir_function *function; member in class:import_prototype_visitor
    [all...]
  /external/chromium_org/third_party/skia/experimental/SkV8Example/
sample.js 4 var onDraw = function(){
6 function f(context) {
14 function onTimeout() {
speed.js 4 var onDraw = function(){
6 function f(canvas) {
13 function onTimeout() {
  /external/chromium_org/v8/test/mjsunit/regress/
regress-builtinbust-1.js 5 function nope() { return false; }
10 assertThrows(function() { a.pop(); }, TypeError);
11 assertThrows(function() { a.push(5); }, TypeError);
12 assertThrows(function() { a.shift(); }, TypeError);
13 assertThrows(function() { a.unshift(5); }, TypeError);
14 assertThrows(function() { a.splice(0, 1); }, TypeError);
regress-crbug-382143.js 5 function A() {
6 Object.defineProperty(this, "x", { set: function () {}, get: function () {}});
7 this.a = function () { return 1; }
10 function B() {
12 this.a = function () { return 2; }
regress-inline-getter-near-stack-limit.js 7 function runNearStackLimit(f) {
8 function t() {
14 function g(x) { return x.bar; }
15 function f1() { }
16 function f2() { }
24 runNearStackLimit(function() { g(y); });
  /external/guava/guava-tests/test/com/google/common/base/
EnumsTest.java 44 Function<String, TestEnum> function = Enums.valueOfFunction(TestEnum.class); local
45 assertEquals(TestEnum.CHEETO, function.apply("CHEETO"));
46 assertEquals(TestEnum.HONDA, function.apply("HONDA"));
47 assertEquals(TestEnum.POODLE, function.apply("POODLE"));
51 Function<String, TestEnum> function = Enums.valueOfFunction(TestEnum.class); local
52 assertNull(function.apply("cHEETO"));
53 assertNull(function.apply("Honda"));
54 assertNull(function.apply("poodlE"))
58 Function<String, TestEnum> function = Enums.valueOfFunction(TestEnum.class); local
72 Function<String, TestEnum> function = Enums.valueOfFunction(TestEnum.class); local
    [all...]
  /external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.inv/
invoke_int_0.pass.cpp 12 // class function<R(ArgTypes...)>
36 // function
38 std::function<int ()> r1(f_int_0);
41 // function pointer
44 std::function<int ()> r1(fp);
50 std::function<int ()> r1(a0);
  /external/mesa3d/src/glsl/
ir_import_prototypes.cpp 26 * Import function prototypes from one IR tree into another.
34 * Visitor used to import function prototypes
39 * body of the function.
51 this->function = NULL;
56 assert(this->function == NULL);
58 this->function = this->symbols->get_function(ir->name);
59 if (!this->function) {
60 this->function = new(this->mem_ctx) ir_function(ir->name);
62 list->push_tail(this->function);
64 /* Add the new function to the symbol table
97 ir_function *function; member in class:import_prototype_visitor
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineModel.js 35 WebInspector.TimelineModel = function()
118 * @param {?function(!WebInspector.TimelineModel.Record)|?function(!WebInspector.TimelineModel.Record,number)} preOrderCallback
119 * @param {function(!WebInspector.TimelineModel.Record)|function(!WebInspector.TimelineModel.Record,number)=} postOrderCallback
122 WebInspector.TimelineModel.forAllRecords = function(recordsArray, preOrderCallback, postOrderCallback)
129 function processRecords(records, depth)
151 startRecording: function(captureStacks, captureMemory, capturePictures)
155 stopRecording: function()
160 * @param {?function(!WebInspector.TimelineModel.Record)|?function(!WebInspector.TimelineModel.Record,number)} preOrder (…)
    [all...]
  /external/chromium_org/chrome/third_party/mock4js/
mock4js.js 8 _convertToConstraint: function(constraintOrValue) {
15 addMockSupport: function(object) {
17 object.mock = function(mockedType) {
27 object.once = function() {
30 object.never = function() {
33 object.exactly = function(expectedCallCount) {
36 object.atLeastOnce = function() {
44 object.eq = function(expectedValue) {
47 object.not = function(valueNotExpected) {
51 object.and = function() {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
TracingManager.js 12 WebInspector.TracingManager = function()
46 targetAdded: function(target)
57 targetRemoved: function(target)
67 _bufferUsage: function(usage)
75 _eventsCollected: function(events)
80 _tracingComplete: function()
85 _tracingStarted: function()
96 * @param {function(?string)=} callback
98 start: function(categoryFilter, options, callback)
110 stop: function()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/workspace/
UISourceCode.js 43 WebInspector.UISourceCode = function(project, parentPath, name, originURL, url, contentType)
51 /** @type {!Array.<function(?string)>} */
81 name: function()
89 parentPath: function()
97 path: function()
105 fullDisplayName: function()
114 displayName: function(skipTrim)
123 uri: function()
136 originURL: function()
144 canRename: function()
    [all...]

Completed in 2620 milliseconds

1 2 34 5 6 7 8 91011>>