HomeSort by relevance Sort by last modified time
    Searched refs:endColumn (Results 1 - 25 of 69) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
TextRange.js 36 * @param {number} endColumn
38 WebInspector.TextRange = function(startLine, startColumn, endLine, endColumn)
43 this.endColumn = endColumn;
62 return new WebInspector.TextRange(serializedTextRange.startLine, serializedTextRange.startColumn, serializedTextRange.endLine, serializedTextRange.endColumn);
81 return this.startLine === this.endLine && this.startColumn === this.endColumn;
92 return this.endLine === range.startLine && this.endColumn === range.startColumn;
112 return (range.endLine === this.startLine && range.endColumn <= this.startColumn)
129 return new WebInspector.TextRange(this.endLine, this.endColumn, this.endLine, this.endColumn);
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
Token.java 34 * of this token; endLine and endColumn describe the position of the
37 public int beginLine, beginColumn, endLine, endColumn;
AddressListParserTokenManager.java 794 t.endColumn = input_stream.getEndColumn();
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/
Token.java 34 * of this token; endLine and endColumn describe the position of the
37 public int beginLine, beginColumn, endLine, endColumn;
ContentTypeParserTokenManager.java 680 t.endColumn = input_stream.getEndColumn();
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/
Token.java 34 * of this token; endLine and endColumn describe the position of the
37 public int beginLine, beginColumn, endLine, endColumn;
DateTimeParserTokenManager.java 719 t.endColumn = input_stream.getEndColumn();
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ScriptDebugListener.h 54 , endColumn(0)
66 int endColumn;
InspectorCSSAgent.cpp 851 unsigned endColumn = 0;
855 || !extractRangeComponent(errorString, range, "endColumn", endColumn))
861 && inspectorStyleSheet->lineNumberAndColumnToOffset(endLineNumber, endColumn, &endOffset);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
Script.js 36 * @param {number} endColumn
41 WebInspector.Script = function(target, scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL, hasSourceURL)
49 this.endColumn = endColumn;
ContentProviders.js 66 var columnNumber = previousScript.endColumn + scriptCloseTagLength + scriptOpenTagLength;
180 columnNumber = scripts[i].endColumn + scriptCloseTag.length;
DebuggerModel.js 472 * @param {number} endColumn
478 _parsedScriptSource: function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL, hasSourceURL, hasSyntaxError)
480 var script = new WebInspector.Script(this.target(), scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL, hasSourceURL);
534 if (script.endLine < lineNumber || (script.endLine === lineNumber && script.endColumn <= columnNumber))
784 * @param {number} endColumn
789 scriptParsed: function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL, hasSourceURL)
791 this._debuggerModel._parsedScriptSource(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, !!isContentScript, sourceMapURL, hasSourceURL, false);
800 * @param {number} endColumn
805 scriptFailedToParse: function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL, hasSourceURL)
807 this._debuggerModel._parsedScriptSource(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, !!isContentScript, sourceMapURL, hasSourceURL, true)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
CSSSourceFrame.js 87 var cssUnitRange = new WebInspector.TextRange(selection.startLine, token.startColumn, selection.startLine, token.endColumn);
94 selection.endColumn = selection.startColumn + newUnitText.length;
JavaScriptSourceFrame.js 504 if (textSelection.startLine !== textSelection.endLine || textSelection.startLine !== mouseLine || mouseColumn < textSelection.startColumn || mouseColumn > textSelection.endColumn)
508 var rightCorner = this.textEditor.cursorPositionToCoordinates(textSelection.endLine, textSelection.endColumn);
513 endColumn: textSelection.endColumn - 1
524 var tokenContent = line.substring(token.startColumn, token.endColumn);
531 var rightCorner = this.textEditor.cursorPositionToCoordinates(lineNumber, token.endColumn - 1);
537 endColumn: token.endColumn - 1
552 var endHighlight = anchorBox.highlight.endColumn;
    [all...]
EditingLocationHistoryManager.js 172 columnNumber: selection.endColumn
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DebuggerScript.js 160 var endColumn;
164 endColumn = 0;
167 endColumn = script.source.length + script.column_offset;
169 endColumn = script.source.length - (lineEnds[lineCount - 2] + 1);
181 endColumn: endColumn,
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderMultiColumnSet.cpp 448 unsigned endColumn = columnIndexAtOffset(paintInvalidationLogicalBottom);
452 for (unsigned i = startColumn; i <= endColumn; i++) {
502 unsigned endColumn = columnIndexAtOffset(layerLogicalBottom);
514 for (unsigned i = startColumn; i <= endColumn; i++) {
RenderTableSection.cpp     [all...]
RenderTable.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
CodeMirrorTextEditor.js 355 var tokenValue = line.substring(token.startColumn, token.endColumn);
524 var move = this._camelCaseMoveFromPosition(selection.endLine, selection.endColumn, direction);
526 selection.endColumn = move.columnNumber;
646 if (range.endColumn > WebInspector.CodeMirrorTextEditor.maxHighlightLength)
763 * @return {?{startColumn: number, endColumn: number, type: string}}
774 endColumn: token.end,
    [all...]
CodeMirrorUtils.js 48 end: new CodeMirror.Pos(range.endLine, range.endColumn)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridModel.java     [all...]
GridDropHandler.java 572 int endColumn = mGrid.getColumn(endX);
574 int columnSpan = endColumn - column + 1;
590 mColumnMatch.type == SegmentType.RIGHT ? endColumn : column, 1)) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
GridLayoutRule.java 436 int endColumn = grid.getColumn(state.bounds.x2());
437 int columnSpan = endColumn - startColumn + 1;
566 int endColumn = grid.getColumn(state.bounds.x2());
567 int columnSpan = endColumn - startColumn + 1;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/documentation/
DocumentationView.js 396 return new WebInspector.TextRange(textSelection.startLine, token.startColumn, textSelection.startLine, token.endColumn);
426 return token ? line.substring(token.startColumn, token.endColumn) : null;

Completed in 842 milliseconds

1 2 3