Searched refs:console (Results 1 - 25 of 654) sorted by relevance

1234567891011>>

/external/chromium_org/gin/shell/
H A Dhello_world.js5 define(["console"], function(console) {
6 console.log("Hello World");
/external/chromium_org/third_party/WebKit/ManualTests/inspector/resources/
H A Dscript-console-calls.js0 console.info("Test console.info");
2 console.log("Test console.log");
3 console.warn("Test console.warn");
4 console.error("Test console.error");
5 console.time("Test console
[all...]
/external/chromium_org/remoting/webapp/js_proto/
H A Dconsole_proto.js6 * @fileoverview Definitions for console logging.
11 var console = {};
17 console.log = function(var_args) {};
23 console.error = function(var_args) {};
29 console.warn = function(var_args) {};
/external/pdfium/fpdfsdk/src/javascript/
H A Dconsole.cpp12 #include "../../include/javascript/console.h"
18 /* ------------------------ console ------------------------ */
33 IMPLEMENT_JS_CLASS(CJS_Console,console)
37 console::console(CJS_Object* pJSObject): CJS_EmbedObj(pJSObject) function in class:console
41 console::~console()
45 FX_BOOL console::clear(OBJ_METHOD_PARAMS)
53 FX_BOOL console::hide(OBJ_METHOD_PARAMS)
62 FX_BOOL console
[all...]
/external/chromium_org/extensions/test/data/platform_app/
H A Dworld.js6 console.log('app window opened');
/external/chromium_org/tools/page_cycler/startup_test_common/
H A Dhead.js6 console.log("PAGE_ONLOAD_EVENT" + location.hash);
/external/libmtp/
H A Dlibmtp.sh20 # New code, using lock files instead of copying /dev/console permissions
25 if [ -f /var/run/console/console.lock ]
27 DEVICEOWNER=`cat /var/run/console/console.lock`
28 elif [ -f /var/run/console.lock ]
30 DEVICEOWNER=`cat /var/run/console.lock`
31 elif [ -f /var/lock/console.lock ]
33 DEVICEOWNER=`cat /var/lock/console.lock`
H A Dlibmtp.sh.in20 # New code, using lock files instead of copying /dev/console permissions
25 if [ -f /var/run/console/console.lock ]
27 DEVICEOWNER=`cat /var/run/console/console.lock`
28 elif [ -f /var/run/console.lock ]
30 DEVICEOWNER=`cat /var/run/console.lock`
31 elif [ -f /var/lock/console.lock ]
33 DEVICEOWNER=`cat /var/lock/console.lock`
/external/pdfium/fpdfsdk/include/javascript/
H A Dconsole.h10 class console : public CJS_EmbedObj class in inherits:CJS_EmbedObj
13 console(CJS_Object* pJSObject);
14 virtual ~console(void);
31 JS_STATIC_METHOD(clear, console);
32 JS_STATIC_METHOD(hide, console);
33 JS_STATIC_METHOD(println, console);
34 JS_STATIC_METHOD(show, console);
/external/chromium_org/chrome/common/extensions/docs/examples/api/commands/
H A Dbackground.js6 console.log('onCommand event received for message: ', command);
/external/chromium_org/chrome/common/extensions/docs/examples/api/contextMenus/basic/
H A Dsample.js7 console.log("item " + info.menuItemId + " was clicked");
8 console.log("info: " + JSON.stringify(info));
9 console.log("tab: " + JSON.stringify(tab));
20 console.log("'" + context + "' item:" + id);
30 console.log("parent:" + parent + " child1:" + child1 + " child2:" + child2);
35 console.log("radio item " + info.menuItemId +
43 console.log("radio1:" + radio1 + " radio2:" + radio2);
48 console.log(JSON.stringify(info));
49 console.log("checkbox item " + info.menuItemId +
58 console
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/api/contextMenus/event_page/
H A Dsample.js8 console.log("radio item " + info.menuItemId +
12 console.log(JSON.stringify(info));
13 console.log("checkbox item " + info.menuItemId +
18 console.log("item " + info.menuItemId + " was clicked");
19 console.log("info: " + JSON.stringify(info));
20 console.log("tab: " + JSON.stringify(tab));
36 console.log("'" + context + "' item:" + id);
45 console.log("parent child1 child2");
52 console.log("radio1 radio2");
59 console
[all...]
/external/chromium_org/ui/file_manager/file_manager/common/js/
H A Derror_util.js18 // Overrides console.error() to count errors.
22 console.error = (function() {
23 var orig = console.error;
30 // Overrides console.assert() to count errors.
35 console.assert = (function() {
36 var orig = console.assert;
63 console.error('Exception happens in callback.', liveStack);
/external/chromium_org/chrome/common/extensions/docs/examples/api/input.ime/basic/
H A Dmain.js9 console.log("Initializing IME");
12 console.log('onFocus:' + context.contextID);
16 console.log('onBlur:' + contextID);
21 console.log('onActivate:' + engineID);
24 console.log('onDeactivated:' + engineID);
29 console.log('onKeyEvent:' + keyData.key + " context: " + context_id);
/external/chromium_org/chrome/common/extensions/docs/examples/api/omnibox/simple-example/
H A Dbackground.js9 console.log('inputChanged: ' + text);
19 console.log('inputEntered: ' + text);
/external/chromium_org/chrome/common/extensions/docs/examples/api/browserAction/make_page_red/
H A Dbackground.js8 console.log('Turning ' + tab.url + ' red!');
/external/chromium_org/chrome/common/extensions/docs/examples/api/devtools/network/chrome-firephp/
H A Dbackground.js7 console[args[0]].apply(console, Array.prototype.slice.call(args, 1));
/external/chromium_org/chrome/common/extensions/docs/examples/api/webNavigation/basic/
H A Dbackground.js19 console.log(chrome.i18n.getMessage('inHandler'), e, data);
21 console.error(chrome.i18n.getMessage('inHandlerError'), e);
/external/chromium_org/tools/memory_inspector/memory_inspector/frontends/www_content/js/
H A Dwebservice.js22 console.log('------------------------');
23 console.log('AJAX error (req: ' + path + ').');
24 console.log('HTTP response: ' + xhr.status + ' ' + thrownError);
25 console.log(xhr.responseText);
/external/chromium_org/chrome/common/extensions/docs/examples/api/desktopCapture/
H A Dapp.js6 console.log("Received local stream");
10 stream.onended = function() { console.log("Ended"); };
14 console.log("getUserMedia() failed.");
19 console.log("Access rejected.");
45 {}, function(response) { console.log(response.farewell); });
/external/chromium_org/ui/accessibility/extensions/alt/
H A Dbackground.js10 console.log('successfully injected axs_testing.js');
15 console.log('successfully injected script', opt_tab ? opt_tab.url : '');
20 console.log('successfully injected css', opt_tab ? opt_tab.url : '');
25 console.log('created infobar');
36 console.log('command: ', command);
/external/chromium_org/chrome/browser/resources/whispernet_proxy/js/
H A Dinit.js26 console.log('init: creating encoder!');
30 console.log('init: creating decoder!');
47 console.error('encodeTokenRequest: Whisper not initialized!');
59 console.error('decodeSamplesRequest: Whisper not initialized!');
70 console.error('detectBroadcastRequest: Whisper not initialized!');
78 console.log('init: Nacl ready!');
98 console.log('init: Starting Nacl bridge.');
/external/chromium_org/native_client_sdk/src/gonacl_appengine/static/bullet/
H A Dworld.js45 console.log('Body needs a shapename.');
49 console.log('Body needs a mass.');
53 console.log('Body needs a friction.');
57 console.log('Body needs a transform.');
61 console.log('Body needs a transform array.');
69 console.log('Shape needs a name.');
79 console.log('Shape type - ' + type + ' not supported.');
/external/chromium_org/ui/file_manager/video_player/js/cast/
H A Dcaster.js36 console.info('No Google Cast extension is installed.');
58 console.error('Google Cast API extension load failed.');
68 console.error('Google Cast API extension installation error.',
73 console.info('Google Cast API extension installed.');
93 console.error('Either "Google Cast API" or "Google Cast" extension ' +
103 console.error('Google Cast extension load failed.', errorInfo);
126 console.error('Error on Cast initialization.', error);
143 console.error('Receiver list is empty.');
151 console.error('Unexpected response in onReceiver.', arguments);
/external/chromium_org/chrome/test/chromedriver/js/
H A Dtest.js34 console.log('Waiting for ', description);
52 * Runs all tests and reports the results via the console.
60 console.log('Running %d tests...', tests.length);
65 console.log('All tests passed');
75 console.log('Running (%d/%d) -- %s', testNo + 1, tests.length, test.name);

Completed in 592 milliseconds

1234567891011>>