OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:onclick
(Results
1 - 25
of
120
) sorted by null
1
2
3
4
5
/external/chromium_org/extensions/renderer/resources/
context_menus_custom_bindings.js
37
// An extension context menu item has been clicked on - fire the
onclick
40
var
onclick
= contextMenus.handlersForId(id)[id];
41
if (
onclick
) {
42
$Function.apply(
onclick
, null, arguments);
65
// Set up the
onclick
handler if we were passed one in the request.
66
var
onclick
= request.args.length ? request.args[0].
onclick
: null;
67
if (
onclick
) {
69
contextMenus.handlersForId(id)[id] =
onclick
;
86
if (request.args[1].
onclick
) {
[
all
...]
/external/lldb/test/pexpect-2.4/examples/
cgishell.cgi
634
<input name="refresh" type="button" value="REFRESH"
onclick
="refresh_screen()">
635
<input name="refresh" type="button" value="CURSOR"
onclick
="query_cursor()">
636
<input name="hash" type="button" value="HASH"
onclick
="query_hash()">
637
<input name="exit" type="button" value="EXIT"
onclick
="exit_server()">
639
<input type="button" value="Esc"
onclick
="type_key('\\x1b\\x1b')" />
640
<input type="button" value="` ~"
onclick
="type_key('`~')" />
641
<input type="button" value="1!"
onclick
="type_key('1!')" />
642
<input type="button" value="2@"
onclick
="type_key('2@\\x00')" />
643
<input type="button" value="3#"
onclick
="type_key('3#')" />
644
<input type="button" value="4$"
onclick
="type_key('4$')" /
[
all
...]
/external/chromium_org/chrome/common/extensions/docs/examples/api/contextMenus/basic/
sample.js
5
// A generic
onclick
callback function.
19
"
onclick
": genericOnClick});
27
{"title": "Child 1", "parentId": parent, "
onclick
": genericOnClick});
29
{"title": "Child 2", "parentId": parent, "
onclick
": genericOnClick});
40
"
onclick
":radioOnClick});
42
"
onclick
":radioOnClick});
55
{"title": "Checkbox1", "type": "checkbox", "
onclick
":checkboxOnClick});
57
{"title": "Checkbox2", "type": "checkbox", "
onclick
":checkboxOnClick});
/external/chromium_org/chrome/renderer/resources/extensions/
chrome_web_view_internal_custom_bindings.js
55
// An extension context menu item has been clicked on - fire the
onclick
60
var
onclick
= webviewContextMenus.handlersForId(instanceId, id)[id];
61
if (
onclick
) {
62
$Function.apply(
onclick
, null, arguments);
88
var
onclick
= request.args.length ? request.args[1].
onclick
: null;
89
if (
onclick
) {
91
webviewContextMenus.handlersForId(instanceId, id)[id] =
onclick
;
102
if (request.args[2].
onclick
) {
104
request.args[2].
onclick
;
[
all
...]
/external/chromium_org/chrome/browser/resources/chromeos/network_configuration/js/
main_config.js
30
$('save').
onclick
= function() {
37
$('connect').
onclick
= function() {
44
$('disconnect').
onclick
= function() {
/external/chromium_org/chrome/browser/resources/
about_credits.js
29
links[i].
onclick
= function () { return toggle(this); };
33
$("print-link").
onclick
= function () {
plugins.js
128
links[i].
onclick
= function() {
135
links[i].
onclick
= function() {
142
links[i].
onclick
= function() {
149
links[i].
onclick
= function() {
156
checkboxes[i].
onclick
= function() {
274
$('collapse').
onclick
= toggleTmiMode;
275
$('expand').
onclick
= toggleTmiMode;
276
$('details-link').
onclick
= toggleTmiMode;
supervised_user_block_interstitial.js
16
$('request-access-button').
onclick
= function(event) {
41
$('back-button').
onclick
= function(event) {
about_stats.js
117
elements[i].
onclick
= function() { sortTable('string'); };
121
elements[i].
onclick
= function() { sortTable('number'); };
134
// <td
onclick
="sort('string')" ...>
136
// The function sorts rows after the row with
onclick
event handler.
flags.js
33
elements[i].
onclick
= function() {
41
elements[i].
onclick
= function() {
49
elements[i].
onclick
= restartBrowser;
52
$('experiment-reset-all').
onclick
= resetAllFlags;
sync_setup_overlay.js
128
$('choose-datatypes-cancel').
onclick
=
129
$('confirm-everything-cancel').
onclick
=
130
$('stop-syncing-cancel').
onclick
=
131
$('sync-spinner-cancel').
onclick
= function() {
134
$('confirm-everything-ok').
onclick
= function() {
137
$('timeout-ok').
onclick
= function() {
141
$('stop-syncing-ok').
onclick
= function() {
306
$('use-default-link').
onclick
= null;
352
$('customize-link').
onclick
= disabled ? null : function() {
362
* |dataTypeBoxedDisabled_| with their values, and makes their
onclick
[
all
...]
/external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_manager/
icons.js
7
download.
onclick
= function() {
popup.js
190
item.getElement('referrer').
onclick
= function() {
194
item.getElement('by-ext').
onclick
= function() {
198
item.getElement('open-filename').
onclick
= function() {
206
item.getElement('pause').
onclick
= function() {
210
item.getElement('cancel').
onclick
= function() {
214
item.getElement('resume').
onclick
= function() {
218
item.getElement('show-folder').
onclick
= function() {
222
item.getElement('remove-file').
onclick
= function() {
226
item.getElement('erase').
onclick
= function() {
360
document.getElementById('grant-management-permission').
onclick
[
all
...]
/external/chromium_org/third_party/WebKit/Source/modules/notifications/
Notification.idl
45
attribute EventHandler
onclick
;
/external/doclava/res/assets/templates/components/
api_filter.cs
4
<input type="checkbox" id="apiLevelCheckbox"
onclick
="toggleApiLevelSelector(this)" />
/external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/zoom/
popup.js
57
document.getElementById('increaseButton').
onclick
= doZoomIn;
58
document.getElementById('decreaseButton').
onclick
= doZoomOut;
59
document.getElementById('defaultButton').
onclick
= doZoomDefault;
60
document.getElementById('setModeButton').
onclick
= doSetMode;
61
document.getElementById('closeButton').
onclick
= doClose;
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/extensions/searchvox/
util.js
120
* invoke the
onclick
method if there is one.
133
if (targetNode.
onclick
) {
134
onClickFunction = targetNode.
onclick
;
137
targetNode.parentNode && targetNode.parentNode.
onclick
) {
138
onClickFunction = targetNode.parentNode.
onclick
;
145
// Something went very wrong with the
onclick
method; we'll ignore it
150
// The
onclick
method ran successfully and returned false, meaning the
/external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_filename_controller/
options.js
33
this.getElement('move-up').
onclick
= function() {
39
this.getElement('move-down').
onclick
= function() {
50
this.getElement('remove').
onclick
= function() {
93
document.getElementById('new').
onclick
= function() {
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/imageinfo/
background.js
26
"
onclick
" : getClickHandler()
/external/chromium_org/chrome/browser/resources/net_export/
net_export.js
32
$('export-view-start-data').
onclick
= this.onStartData_.bind(this);
33
$('export-view-stop-data').
onclick
= this.onStopData_.bind(this);
34
$('export-view-send-data').
onclick
= this.onSendData_.bind(this);
/external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_links/
popup.js
28
col1.
onclick
= function() {
107
document.getElementById('download0').
onclick
= downloadCheckedLinks;
108
document.getElementById('download1').
onclick
= downloadCheckedLinks;
/external/chromium_org/chrome/common/extensions/docs/examples/api/eventPage/basic/
content.js
10
a.
onclick
= cb;
/external/chromium_org/chrome/browser/resources/feedback/js/
feedback.js
292
$('performance-info-link').
onclick
= openSlowTraceWindow;
302
$('sys-info-url').
onclick
=
307
$('histograms-url').
onclick
=
322
$('send-report-button').
onclick
= sendReport;
323
$('cancel-button').
onclick
= cancel;
324
$('remove-attached-file').
onclick
= clearAttachedFile;
/external/chromium_org/chrome/browser/resources/downloads/
downloads.js
53
* Creates a link with a specified
onclick
handler and content.
54
* @param {function()}
onclick
The
onclick
handler.
58
function createLink(
onclick
, value) {
60
link.
onclick
=
onclick
;
68
* Creates a button with a specified
onclick
handler and content.
69
* @param {function()}
onclick
The
onclick
handler.
73
function createButton(
onclick
, value)
[
all
...]
/external/chromium_org/chrome/browser/resources/about_sys/
about_sys.js
87
button.
onclick
= changeCollapsedStatus;
182
$('collapseAll').
onclick
= collapseAll;
183
$('expandAll').
onclick
= expandAll;
Completed in 1805 milliseconds
1
2
3
4
5