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

<<11121314151617181920>>

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
CPUProfileFlameChart.js 38 WebInspector.CPUFlameChartDataProvider = function(cpuProfile, target)
50 barHeight: function()
58 textBaseline: function()
66 textPadding: function()
76 dividerOffsets: function(startTime, endTime)
84 minimumBoundary: function()
92 totalTime: function()
100 maxStackDepth: function()
108 timelineData: function()
116 _calculateTimelineData: function()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
NavigatorView.js 33 WebInspector.NavigatorView = function()
70 WebInspector.NavigatorView.iconClassForType = function(type)
80 setWorkspace: function(workspace)
88 wasShown: function()
100 accept: function(uiSourceCode)
108 _addUISourceCode: function(uiSourceCode)
122 _uiSourceCodeAdded: function(event)
131 _uiSourceCodeRemoved: function(event)
140 _projectRemoved: function(event)
152 _projectNode: function(project
    [all...]
Placard.js 32 WebInspector.Placard = function(title, subtitle)
89 select: function()
97 deselect: function()
105 toggleSelected: function()
113 isHidden: function()
121 setHidden: function(x)
129 discard: function()
  /external/chromium_org/chrome/browser/extensions/api/tabs/
tabs_test.cc 44 scoped_refptr<WindowsGetFunction> function = new WindowsGetFunction(); local
46 function->set_extension(extension.get());
49 function.get(),
61 function = new WindowsGetFunction();
62 function->set_extension(extension.get());
65 function.get(),
77 function = new WindowsGetFunction();
78 function->set_extension(extension.get());
81 function.get(),
103 function = new WindowsGetFunction()
145 scoped_refptr<WindowsGetCurrentFunction> function = local
186 scoped_refptr<WindowsGetAllFunction> function = new WindowsGetAllFunction(); local
300 scoped_refptr<WindowsCreateFunction> function = new WindowsCreateFunction(); local
341 scoped_refptr<WindowsCreateFunction> function = new WindowsCreateFunction(); local
372 scoped_refptr<WindowsCreateFunction> function = new WindowsCreateFunction(); local
401 scoped_refptr<TabsQueryFunction> function = new TabsQueryFunction(); local
468 scoped_refptr<WindowsUpdateFunction> function = new WindowsUpdateFunction(); local
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/
speech_rule_functions.js 20 cvox.SpeechRuleFunctions = function() { };
24 * Private superclass of all the custom function stores.
26 * @param {string} prefix A prefix string for the function names.
27 * @param {Object.<string, Function>} store Storage object.
30 cvox.SpeechRuleFunctions.Store_ = function(prefix, store) {
39 * Adds a new function for the function store.
41 * @param {!Function} func A function.
43 cvox.SpeechRuleFunctions.Store_.prototype.add = function(name, func)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/eventPage/basic/
content.js 7 function addButton(name, cb) {
15 function log(str) {
20 addButton("Clear logs", function() {
24 addButton("Send message with delayed response", function() {
25 chrome.runtime.sendMessage({delayedResponse: true}, function(response) {
30 addButton("Show counters", function() {
31 chrome.runtime.sendMessage({getCounters: true}, function(response) {
37 addButton("Set an alarm", function() {
41 chrome.runtime.onMessage.addListener(function(msg, _, sendResponse) {
  /external/chromium_org/chrome/common/extensions/docs/examples/api/permissions/extension-questions/
options.js 10 chrome.permissions.onAdded.addListener(function(permissions) {
13 chrome.permissions.onRemoved.addListener(function(permissions) {
16 chrome.permissions.contains(PERMISSIONS, function(contains) {
20 document.querySelector('button#enable').addEventListener('click', function() {
21 chrome.permissions.contains(PERMISSIONS, function(allowed) {
25 chrome.permissions.request(PERMISSIONS, function(result) {
35 document.querySelector('button#disable').addEventListener('click', function() {
36 chrome.permissions.contains(PERMISSIONS, function(allowed) {
38 chrome.permissions.remove(PERMISSIONS, function(result) {
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/buildbot/
active_issues.js 5 (function(){
9 buildbot.ActiveIssues = function() {
15 forEach: function(callback) {
20 getIssue: function(number) {
24 updateIssue: function(issue) {
31 removeIssue: function(issue) {
36 setEventCallback: function(callback) {
40 postEvent_: function(obj) {
46 buildbot.getActiveIssues = function() {
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
Resource.js 42 WebInspector.Resource = function(request, url, documentURL, frameId, loaderId, type, mimeType, isHidden)
152 addMessage: function(msg)
189 clearErrorsAndWarnings: function()
216 contentURL: function()
224 contentType: function()
230 * @param {function(?string)} callback
232 requestContent: function(callback)
247 canonicalMimeType: function()
256 * @param {function(!Array.<!WebInspector.ContentProvider.SearchMatch>)} callback
258 searchInContent: function(query, caseSensitive, isRegex, callback
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
SourceFrame.js 58 WebInspector.SourceFrame = function(contentProvider)
90 WebInspector.SourceFrame.createSearchRegex = function(query, modifiers)
121 * @param {function()} handler
123 addShortcut: function(key, handler)
128 wasShown: function()
139 _isEditorShowing: function()
144 willHide: function()
154 statusBarText: function()
162 statusBarItems: function()
170 defaultFocusedElement: function()
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
ui.js 28 (function () {
30 ui.displayURLForBuilder = function(builderName)
39 ui.displayNameForBuilder = function(builderName)
44 ui.urlForTest = function(testName)
49 ui.urlForCrbug = function(bugID)
54 ui.urlForFlakinessDashboard = function(opt_testNameList)
60 ui.urlForEmbeddedFlakinessDashboard = function(opt_testNameList)
65 ui.rolloutReasonForTestNameList = function(testNameList)
67 return 'Broke:\n' + testNameList.map(function(testName) {
72 ui.setTargetForLink = function(anchor
    [all...]
  /system/netd/client/
NetdClient.cpp 137 extern "C" void netdClientInitAccept4(Accept4FunctionType* function) {
138 if (function && *function) {
139 libcAccept4 = *function;
140 *function = netdClientAccept4;
144 extern "C" void netdClientInitConnect(ConnectFunctionType* function) {
145 if (function && *function) {
146 libcConnect = *function;
147 *function = netdClientConnect
    [all...]
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/src/gl-matrix/
vec2.js 34 vec2.create = function() {
47 vec2.clone = function(a) {
61 vec2.fromValues = function(x, y) {
75 vec2.copy = function(out, a) {
89 vec2.set = function(out, x, y) {
103 vec2.add = function(out, a, b) {
117 vec2.subtract = function(out, a, b) {
125 * @function
137 vec2.multiply = function(out, a, b) {
145 * @function
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/fx/
content.js 6 function sendEvent(event, value) {
14 function stopEvent(type) {
20 // |validator| is a function which should return true if the event is
22 function handleEvent(event, type, validator) {
39 function listenAndCoalesce(target, type, validator) {
40 target.addEventListener(type, function(event) {
49 document.body.onresize = function(event) {
54 listenAndCoalesce(document, "keypress", function(event) {
  /external/chromium_org/chrome/test/chromedriver/js/
test.js 9 function assert(x) {
18 function assertEquals(x, y) {
25 * @param {function()} test The test to run.
26 * @param {function()} onPass The function to call if and when the
27 * function passes.
29 function runTest(test, onPass) {
32 waitForAsync: function(description) {
37 continueTesting: function() {
39 window.setTimeout(function() {
    [all...]
  /external/chromium_org/content/test/data/fileapi/
quota_test.js 5 function truncateFailByQuota(fs) {
6 fs.root.getFile('fd', {create: false, exclusive: false}, function(fileEntry) {
7 fileEntry.createWriter(function(fileWriter) {
9 fileWriter.onerror = function(e) {
12 fileWriter.onwriteend = function(e) {
21 }, function(e) { fail('Open for 2nd truncate:' + fileErrorToString(e)); } );
24 function requestFileSystemSuccess(fs) {
25 fs.root.getFile('fd', {create: true, exclusive: false}, function(fileEntry) {
26 fileEntry.createWriter(function(fileWriter) {
28 fileWriter.onerror = function(e)
    [all...]
  /external/chromium_org/remoting/webapp/js_proto/
remoting_proto.js 14 remoting.ClipboardData = function() {};
19 /** @type {function(string): string} */
22 /** @type {function(string, string): void} */
27 remoting.ClipboardEvent = function() {};
32 /** @type {function(): void} */
38 remoting.ViewerPlugin = function() { };
41 remoting.ViewerPlugin.prototype.postMessage = function(message) {};
46 remoting.WcsIqClient = function() {};
48 /** @param {function(Array.<string>): void} onMsg The function called when
    [all...]
  /external/chromium_org/remoting/webapp/
wcs.js 23 * @param {function(string): void} onReady Called with the WCS client's JID.
25 remoting.Wcs = function(wcsIqClient, token, onReady) {
41 * The function called when the WCS client has received a full JID.
42 * @type {?function(string): void}
55 * A function called when an IQ stanza is received.
59 this.onIq_ = function(stanza) {};
74 remoting.Wcs.prototype.updateAccessToken = function(tokenNew) {
88 remoting.Wcs.prototype.onMessage_ = function(msg) {
106 remoting.Wcs.prototype.getJid = function() {
116 remoting.Wcs.prototype.sendIq = function(stanza)
    [all...]
  /external/chromium_org/sandbox/win/src/
interception_unittest.cc 45 FunctionInfo *function = reinterpret_cast<FunctionInfo*>( local
49 ASSERT_EQ(0u, function->record_bytes % sizeof(size_t));
51 char* name = function->function;
62 EXPECT_TRUE(NULL == function->interceptor_address);
64 EXPECT_TRUE(NULL != function->interceptor_address);
68 function = reinterpret_cast<FunctionInfo*>(
69 reinterpret_cast<char*>(function) + function->record_bytes);
87 // Any pointer will do for a function pointer
88 void* function = &interceptions; local
175 void* function = &interceptions; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/extensions/
ExtensionView.js 38 WebInspector.ExtensionView = function(id, src, className)
54 wasShown: function()
60 willHide: function()
66 _onLoad: function()
82 WebInspector.ExtensionNotifierView = function(id)
90 wasShown: function()
95 willHide: function()
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
DatabaseTableView.js 30 WebInspector.DatabaseTableView = function(database, tableName)
45 wasShown: function()
59 _escapeTableName: function(tableName)
64 update: function()
69 _queryFinished: function(columnNames, values)
84 _queryError: function(error)
95 _refreshButtonClicked: function(event)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineLayersView.js 11 WebInspector.TimelineLayersView = function()
24 showLayerTree: function(deferredLayerTree)
32 function onLayersReady(layerTree)
41 _selectObject: function(activeObject)
58 _hoverObject: function(activeObject)
75 _onObjectSelected: function(event)
84 _onObjectHovered: function(event)
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d9/
ShaderCache.h 36 ShaderObject *create(const DWORD *function, size_t length)
38 std::string key(reinterpret_cast<const char*>(function), length);
47 HRESULT result = createShader(function, &shader);
81 HRESULT createShader(const DWORD *function, IDirect3DVertexShader9 **shader)
83 return mDevice->CreateVertexShader(function, shader);
86 HRESULT createShader(const DWORD *function, IDirect3DPixelShader9 **shader)
88 return mDevice->CreatePixelShader(function, shader);
  /external/chromium_org/third_party/blanketjs/src/
qunit_adapter.js 0 (function(){
6 var allLoaded = function() {
10 function shouldAutoStart() {
17 QUnit.begin=function(){
21 QUnit.done=function(failures, total) {
24 QUnit.moduleStart=function( details ) {
27 QUnit.testStart=function( details ) {
30 QUnit.testDone=function( details ) {
46 QUnit.begin(function(){
50 QUnit.done(function(failures, total)
    [all...]
  /external/chromium_org/third_party/skia/expectations/gm/
loader.js 8 function($httpProvider) {
11 $httpProvider.defaults.transformResponse = function(data, headersGetter) {
18 function($scope, $http) {
19 /* When the changePlatformPath function is called, download expected-results.json
25 $scope.changePlatformPath = function() {
27 function(response) {
30 angular.forEach(response['expected-results'], function(imageExpectations, imageName) {
33 angular.forEach(imageExpectations['allowed-digests'], function(allowedDigest, key) {

Completed in 708 milliseconds

<<11121314151617181920>>