Searched refs:prototype (Results 226 - 250 of 1919) sorted by relevance

1234567891011>>

/external/v8/test/mjsunit/regress/
H A Dregress-88591.js29 // prototype shadowed by a setter in the global object's prototype's
30 // prototype would crash or assert when seen by Runtime_DeclareContextSlot.
32 Object.prototype.__defineSetter__('x', function(x) { called = true; });
33 Object.prototype.__defineGetter__('x', function () { return 0; });
/external/chromium_org/v8/test/webkit/fast/js/kde/
H A DArray.js202 var backupNumberToString = Number.prototype.toString;
203 var backupNumberToLocaleString = Number.prototype.toLocaleString;
204 var backupRegExpToString = RegExp.prototype.toString;
205 var backupRegExpToLocaleString = RegExp.prototype.toLocaleString;
208 Number.prototype.toString = function() { return "toString"; }
209 Number.prototype.toLocaleString = function() { return "toLocaleString"; }
210 RegExp.prototype.toString = function() { return "toString2"; }
211 RegExp.prototype.toLocaleString = function() { return "toLocaleString2"; }
216 Number.prototype.toLocaleString = "invalid";
220 RegExp.prototype
[all...]
/external/chromium_org/chrome/browser/resources/options/chromeos/
H A Dpreferred_networks.js28 PreferredNetworks.prototype = {
29 __proto__: OptionsPage.prototype,
35 OptionsPage.prototype.initializePage.call(this);
62 el.__proto__ = PreferredNetworkListItem.prototype;
70 PreferredNetworkListItem.prototype = {
71 __proto__: DeletableItem.prototype,
83 DeletableItem.prototype.decorate.call(this);
99 PreferredNetworkList.prototype = {
100 __proto__: DeletableItemList.prototype,
104 DeletableItemList.prototype
[all...]
/external/chromium_org/remoting/webapp/
H A Dwcs.js74 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) {
127 remoting.Wcs.prototype.setOnIq = function(onIq) {
H A Dclipboard.js25 remoting.Clipboard.prototype.ItemTypes = {
34 remoting.Clipboard.prototype.previousContent = "";
40 remoting.Clipboard.prototype.itemFromHostTextPending = false;
46 remoting.Clipboard.prototype.blockOneClipboardSend_ = false;
53 remoting.Clipboard.prototype.startSession = function() {
76 remoting.Clipboard.prototype.toHost = function(clipboardData) {
120 remoting.Clipboard.prototype.fromHost = function(mimeType, item) {
144 remoting.Clipboard.prototype.toOs = function(clipboardData) {
167 remoting.Clipboard.prototype.initiateToHost = function() {
182 remoting.Clipboard.prototype
[all...]
H A Dhost_session.js26 remoting.HostSession.prototype.plugin = null;
68 remoting.HostSession.prototype.createPluginAndConnect =
88 remoting.HostSession.prototype.getAccessCode = function() {
97 remoting.HostSession.prototype.getAccessCodeLifetime = function() {
106 remoting.HostSession.prototype.getClient = function() {
114 remoting.HostSession.prototype.disconnect = function() {
123 remoting.HostSession.prototype.removePlugin = function() {
H A Doauth2.js32 remoting.OAuth2.prototype.KEY_REFRESH_TOKEN_ = 'oauth2-refresh-token';
34 remoting.OAuth2.prototype.KEY_REFRESH_TOKEN_REVOKABLE_ =
37 remoting.OAuth2.prototype.KEY_ACCESS_TOKEN_ = 'oauth2-access-token';
39 remoting.OAuth2.prototype.KEY_XSRF_TOKEN_ = 'oauth2-xsrf-token';
41 remoting.OAuth2.prototype.KEY_EMAIL_ = 'remoting-email';
45 remoting.OAuth2.prototype.SCOPE_ =
54 remoting.OAuth2.prototype.getRedirectUri_ = function() {
61 remoting.OAuth2.prototype.getClientId_ = function() {
68 remoting.OAuth2.prototype.getClientSecret_ = function() {
75 remoting.OAuth2.prototype
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/hosted/
H A Djson2.js48 Date.prototype.toJSON = function (key) {
154 lastIndex, length, parse, prototype, push, replace, slice, stringify,
173 if (typeof Date.prototype.toJSON !== 'function') {
175 Date.prototype.toJSON = function (key) {
186 String.prototype.toJSON =
187 Number.prototype.toJSON =
188 Boolean.prototype.toJSON = function (key) {
293 if (Object.prototype.toString.apply(value) === '[object Array]') {
/external/chromium_org/v8/test/mjsunit/
H A Dvalue-callic-prototype-change.js42 String.prototype.toString = function() { return "ostehaps"; };
54 Number.prototype.toString = function() { return 0; };
65 Number.prototype.toString = function() { return 42; };
76 Boolean.prototype.toString = function() { return 0; };
87 Boolean.prototype.toString = function() { return 42; };
/external/v8/test/mjsunit/
H A Dvalue-callic-prototype-change.js42 String.prototype.toString = function() { return "ostehaps"; };
54 Number.prototype.toString = function() { return 0; };
65 Number.prototype.toString = function() { return 42; };
76 Boolean.prototype.toString = function() { return 0; };
87 Boolean.prototype.toString = function() { return 42; };
/external/chromium/chrome/browser/resources/net_internals/
H A Dsourceentry.js23 SourceEntry.prototype.isSelected = function() {
27 SourceEntry.prototype.setSelectedStyles = function(isSelected) {
32 SourceEntry.prototype.setMouseoverStyle = function(isMouseOver) {
36 SourceEntry.prototype.setIsMatchedByFilter = function(isMatchedByFilter) {
54 SourceEntry.prototype.isMatchedByFilter = function() {
58 SourceEntry.prototype.setFilterStyles = function(isMatchedByFilter) {
67 SourceEntry.prototype.update = function(logEntry) {
95 SourceEntry.prototype.onCheckboxToggled_ = function() {
99 SourceEntry.prototype.matchesFilter = function(filter) {
131 SourceEntry.prototype
[all...]
H A Dmain.js281 BrowserBridge.prototype.sendReady = function() {
291 BrowserBridge.prototype.isPlatformWindows = function() {
295 BrowserBridge.prototype.sendGetProxySettings = function() {
300 BrowserBridge.prototype.sendReloadProxySettings = function() {
304 BrowserBridge.prototype.sendGetBadProxies = function() {
309 BrowserBridge.prototype.sendGetHostResolverInfo = function() {
314 BrowserBridge.prototype.sendClearBadProxies = function() {
318 BrowserBridge.prototype.sendClearHostResolverCache = function() {
322 BrowserBridge.prototype.sendStartConnectionTests = function(url) {
326 BrowserBridge.prototype
[all...]
/external/chromium_org/v8/tools/
H A Dprofile_view.js47 ViewBuilder.prototype.buildView = function(
81 ViewBuilder.prototype.createView = function(head) {
98 ViewBuilder.prototype.createViewNode = function(
124 ProfileView.prototype.sort = function(sortFunc) {
136 ProfileView.prototype.traverse = function(f) {
174 ProfileView.Node.prototype.__defineGetter__(
183 ProfileView.Node.prototype.__defineGetter__(
192 ProfileView.Node.prototype.__defineGetter__(
203 ProfileView.Node.prototype.addChild = function(node) {
216 ProfileView.Node.prototype
[all...]
H A Dcodemap.js81 CodeMap.prototype.addCode = function(start, codeEntry) {
94 CodeMap.prototype.moveCode = function(from, to) {
107 CodeMap.prototype.deleteCode = function(start) {
118 CodeMap.prototype.addLibrary = function(
131 CodeMap.prototype.addStaticCode = function(
140 CodeMap.prototype.markPages_ = function(start, end) {
151 CodeMap.prototype.deleteAllCoveredNodes_ = function(tree, start, end) {
168 CodeMap.prototype.isAddressBelongsTo_ = function(addr, node) {
176 CodeMap.prototype.findInTree_ = function(tree, addr) {
188 CodeMap.prototype
[all...]
/external/v8/tools/
H A Dprofile_view.js47 ViewBuilder.prototype.buildView = function(
81 ViewBuilder.prototype.createView = function(head) {
98 ViewBuilder.prototype.createViewNode = function(
124 ProfileView.prototype.sort = function(sortFunc) {
136 ProfileView.prototype.traverse = function(f) {
174 ProfileView.Node.prototype.__defineGetter__(
183 ProfileView.Node.prototype.__defineGetter__(
192 ProfileView.Node.prototype.__defineGetter__(
203 ProfileView.Node.prototype.addChild = function(node) {
216 ProfileView.Node.prototype
[all...]
H A Dcodemap.js81 CodeMap.prototype.addCode = function(start, codeEntry) {
94 CodeMap.prototype.moveCode = function(from, to) {
107 CodeMap.prototype.deleteCode = function(start) {
118 CodeMap.prototype.addLibrary = function(
131 CodeMap.prototype.addStaticCode = function(
140 CodeMap.prototype.markPages_ = function(start, end) {
151 CodeMap.prototype.deleteAllCoveredNodes_ = function(tree, start, end) {
168 CodeMap.prototype.isAddressBelongsTo_ = function(addr, node) {
176 CodeMap.prototype.findInTree_ = function(tree, addr) {
188 CodeMap.prototype
[all...]
/external/chromium-trace/trace-viewer/src/
H A Dui_test.js11 TestElement.prototype = {
12 __proto__: HTMLDivElement.prototype,
22 Base.prototype = {
23 __proto__: HTMLDivElement.prototype,
64 Sub.prototype = {
65 __proto__: Base.prototype,
83 NoArgs.prototype = {
84 __proto__: HTMLDivElement.prototype,
94 Args.prototype = {
95 __proto__: NoArgs.prototype,
[all...]
/external/chromium_org/chrome/browser/resources/file_manager/js/image_editor/
H A Dimage_buffer.js22 ImageBuffer.prototype.addOverlay = function(overlay) {
36 ImageBuffer.prototype.removeOverlay = function(overlay) {
49 ImageBuffer.prototype.draw = function() {
62 ImageBuffer.prototype.getCursorStyle = function(x, y, mouseDown) {
76 ImageBuffer.prototype.onClick = function(x, y) {
90 ImageBuffer.prototype.getDragHandler = function(x, y, touch) {
106 ImageBuffer.prototype.getDoubleTapAction = function(x, y) {
136 ImageBuffer.Overlay.prototype.getZIndex = function() { return 0 };
141 ImageBuffer.Overlay.prototype.draw = function() {};
151 ImageBuffer.Overlay.prototype
[all...]
/external/chromium_org/chrome_frame/cfinstall/src/stub/
H A Dprompt.js30 google.cf.installer.Prompt.prototype.customInteractionDelegate_ = undefined;
36 google.cf.installer.Prompt.prototype.
44 google.cf.installer.Prompt.prototype.setInteractionDelegate =
54 google.cf.installer.Prompt.prototype.setSameDomainResourceUri = function(uri) {
65 google.cf.installer.Prompt.prototype.installProc_ = null;
78 google.cf.installer.Prompt.prototype.implementationUrl_ =
86 google.cf.installer.Prompt.prototype.downloadPageUrl_ = undefined;
92 google.cf.installer.Prompt.prototype.setImplementationUrl = function(url) {
100 google.cf.installer.Prompt.prototype.setDownloadPageUrl = function(url) {
109 google.cf.installer.Prompt.prototype
[all...]
/external/chromium_org/tools/perf/metrics/
H A Dsmoothness.js41 GpuBenchmarkingRenderingStats.prototype.start = function() {
46 GpuBenchmarkingRenderingStats.prototype.stop = function() {
51 GpuBenchmarkingRenderingStats.prototype.getStartValues = function() {
61 GpuBenchmarkingRenderingStats.prototype.getEndValues = function() {
71 GpuBenchmarkingRenderingStats.prototype.getDeltas = function() {
84 GpuBenchmarkingRenderingStats.prototype.getRenderingStats_ = function() {
99 RafRenderingStats.prototype.start = function() {
106 RafRenderingStats.prototype.stop = function() {
110 RafRenderingStats.prototype.getStartValues = function() {
118 RafRenderingStats.prototype
[all...]
/external/chromium/chrome/browser/resources/options/
H A Dautofill_options_list.js21 el.__proto__ = AddressListItem.prototype;
27 AddressListItem.prototype = {
28 __proto__: DeletableItem.prototype,
32 DeletableItem.prototype.decorate.call(this);
54 el.__proto__ = CreditCardListItem.prototype;
60 CreditCardListItem.prototype = {
61 __proto__: DeletableItem.prototype,
65 DeletableItem.prototype.decorate.call(this);
92 el.__proto__ = ValuesListItem.prototype;
98 ValuesListItem.prototype
[all...]
/external/chromium_org/chrome/browser/resources/file_manager/js/metadata/
H A Dfunction_sequence.js38 FunctionSequence.prototype.setCallback = function(callback) {
47 FunctionSequence.prototype.setFailureCallback = function(failureCallback) {
59 FunctionSequence.prototype.onError_ = function(err) {
75 FunctionSequence.prototype.finish_ = function() {
90 FunctionSequence.prototype.nextStep_ = function(var_args) {
114 FunctionSequence.prototype.start = function(var_args) {
131 FunctionSequence.prototype.apply_ = function(obj, args) {
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dplatform_app.js22 * @param {Object} object The object with methods to disable. The prototype is
41 * @param {Object} object The object with properties to disable. The prototype
76 disableMethods(HTMLDocument.prototype, 'document',
86 disableMethods(Window.prototype, 'window', ['find']);
90 disableMethods(Window.prototype, 'window', ['alert', 'confirm', 'prompt']);
128 Window.prototype.__defineSetter__(
130 Window.prototype.__defineSetter__(
132 var windowAddEventListener = Window.prototype.addEventListener;
133 Window.prototype.addEventListener = function(type) {
H A Dwindow_controls.js28 WindowControls.prototype.template_element = null;
33 WindowControls.prototype.createShadowRoot_ = function(node) {
35 var template = WindowControls.prototype.template_element;
39 WindowControls.prototype.template_element = element.firstChild;
40 template = WindowControls.prototype.template_element;
51 WindowControls.prototype.setupWindowControls_ = function() {
68 WindowControls.prototype.maxRestore_ = function() {
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dproperty-static.js34 Object.prototype.load = function() { return this.property; };
35 Object.prototype.load.call({ A:0, property:10 });
36 Object.prototype.load.call({ A:0, B:0, property:11 });
37 Object.prototype.load.call({ A:0, B:0, C:0, property:12 });
38 Object.prototype.load.call({ A:0, B:0, C:0, D:0, property:13 });
39 Object.prototype.load.call({ A:0, B:0, C:0, D:0, E:0, property:14 });
40 Object.prototype.load.call({ A:0, B:0, C:0, D:0, E:0, F:0, property:15 });

Completed in 811 milliseconds

1234567891011>>