HomeSort by relevance Sort by last modified time
    Searched defs:CodeMirror (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
externs.js 255 var CodeMirror = function(element, config) { }
256 CodeMirror.on = function(obj, type, handler) { }
257 CodeMirror.prototype = {
290 * @param {!CodeMirror.Pos} from
396 CodeMirror.prototype.display;
398 CodeMirror.Pass;
399 CodeMirror.showHint = function(codeMirror, hintintFunction) { };
400 CodeMirror.commands = {};
401 CodeMirror.modes = {}
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
headlesscodemirror.js 2 // from CodeMirror distribution
4 // CodeMirror, copyright (c) by Marijn Haverbeke and others
5 // Distributed under an MIT license: http://codemirror.net/LICENSE
7 window.CodeMirror = {};
73 CodeMirror.StringStream = StringStream;
75 CodeMirror.startState = function (mode, a1, a2) {
79 var modes = CodeMirror.modes = {}, mimeModes = CodeMirror.mimeModes = {};
80 CodeMirror.defineMode = function (name, mode) { modes[name] = mode; };
81 CodeMirror.defineMIME = function (mime, spec) { mimeModes[mime] = spec; }
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
CodeMirrorTextEditor.js 44 this.registerRequiredCSS("cm/codemirror.css");
47 this._codeMirror = new window.CodeMirror(this.element, {
49 gutters: ["CodeMirror-linenumbers"],
57 CodeMirror.keyMap["devtools-common"] = {
76 CodeMirror.keyMap["devtools-pc"] = {
99 CodeMirror.keyMap["devtools-mac"] = {
130 CodeMirror.commands.maybeAvoidSmartSingleQuotes = this._maybeAvoidSmartQuotes.bind(this, "'");
131 CodeMirror.commands.maybeAvoidSmartDoubleQuotes = this._maybeAvoidSmartQuotes.bind(this, "\"");
184 /** @typedef {{canceled: boolean, from: !CodeMirror.Pos, to: !CodeMirror.Pos, text: string, origin: string, cancel: function()}} *
    [all...]

Completed in 223 milliseconds