HomeSort by relevance Sort by last modified time
    Searched refs:function (Results 101 - 125 of 6305) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/skia/experimental/SkV8Example/
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/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() {
  /ndk/sources/cxx-stl/llvm-libc++/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/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...]
LayerTreeModel.js 49 WebInspector.LayerTreeModel = function(target)
71 disable: function()
80 enable: function()
93 setLayerTree: function(layerTree)
103 layerTree: function()
111 _layerTreeChanged: function(layers)
121 function onLayersSet()
139 _layerPainted: function(layerId, clipRect)
153 _onDocumentUpdated: function()
168 WebInspector.LayerTreeBase = function(target
    [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...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
FileUtils.js 34 WebInspector.OutputStreamDelegate = function()
39 onTransferStarted: function() { },
41 onTransferFinished: function() { },
46 onChunkTransferred: function(reader) { },
52 onError: function(reader, event) { },
58 WebInspector.OutputStream = function()
65 * @param {function(!WebInspector.OutputStream)=} callback
67 write: function(data, callback) { },
69 close: function() { }
75 WebInspector.ChunkedReader = function()
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
RewriteRuleTokenStream.as 34 public function RewriteRuleTokenStream(adaptor:TreeAdaptor, elementDescription:String, element:Object=null) {
39 public function nextNode():Object {
44 public function nextToken():Token {
51 protected override function toTree(el:Object):Object {
55 protected override function dup(el:Object):Object {
  /external/chromium_org/chrome/browser/extensions/api/tabs/
windows_util.cc 19 bool GetWindowFromWindowID(ChromeUIThreadExtensionFunction* function,
22 ChromeExtensionFunctionDetails function_details(function);
25 function->dispatcher()->delegate()->GetExtensionWindowController();
35 function->SetError(extensions::tabs_constants::kNoCurrentWindowError);
42 function->SetError(extensions::ErrorUtils::FormatErrorMessage(
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/buildbot/
prefs.js 5 (function() {
9 buildbot.PrefStore = function() {
15 get_: function(key, callback) {
17 function (storage) {
22 set_: function(key, value) {
24 function (storage) {
30 getUseNotifications: function(callback) {
34 setUseNotifications: function(use_notifications) {
38 getTryJobUsername: function(callback) {
42 setTryJobUsername: function(try_job_username)
    [all...]
  /external/chromium_org/remoting/webapp/browser_test/
mock_client_plugin.js 20 remoting.MockClientPlugin = function(container) {
31 remoting.MockClientPlugin.prototype.dispose = function() {
37 remoting.MockClientPlugin.prototype.getDesktopWidth = function() {
41 remoting.MockClientPlugin.prototype.getDesktopHeight = function() {
45 remoting.MockClientPlugin.prototype.getDesktopXDpi = function() {
49 remoting.MockClientPlugin.prototype.getDesktopYDpi = function() {
53 remoting.MockClientPlugin.prototype.element = function() {
57 remoting.MockClientPlugin.prototype.initialize = function(onDone) {
61 remoting.MockClientPlugin.prototype.connect = function(
75 function(key, down) {}
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
Progress.js 35 WebInspector.Progress = function()
48 setTotalWork: function(totalWork) { },
53 setTitle: function(title) { },
59 setWorked: function(worked, title) { },
64 worked: function(worked) { },
66 done: function() { },
71 isCanceled: function() { return false; },
75 * @param {function(!WebInspector.Event)} listener
78 addEventListener: function(eventType, listener, thisObject) { }
86 WebInspector.CompositeProgress = function(parent
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
Drawer.js 35 WebInspector.Drawer = function(splitView)
62 toggleButton: function()
70 closeView: function(id)
79 showView: function(id, immediate)
97 showCloseableView: function(id, title, view)
109 showDrawer: function()
114 wasShown: function()
121 willHide: function()
130 _innerShow: function(immediate)
141 closeDrawer: function()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/
RequestHTMLView.js 37 WebInspector.RequestHTMLView = function(request, dataURL)
48 hasContent: function()
53 wasShown: function()
58 willHide: function(parentElement)
63 _createIFrame: function()
  /external/chromium_org/ui/accessibility/extensions/longdesc/
options.js 6 function save_options() {
10 }, function() {
14 setTimeout(function() {
22 function restore_options() {
24 chrome.storage.sync.get("addBorder", function(item) {
  /external/compiler-rt/lib/builtins/
int_util.c 30 void compilerrt_abort_impl(const char *file, int line, const char *function) {
31 panic("%s:%d: abort in %s", file, line, function);
44 void compilerrt_abort_impl(const char *file, int line, const char *function) {
45 __assert_rtn(function, file, line, "libcompiler_rt abort");
57 void compilerrt_abort_impl(const char *file, int line, const char *function) {

Completed in 1230 milliseconds

1 2 3 45 6 7 8 91011>>