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

1 2

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
TextRange.js 36 * @param {number} endColumn
38 WebInspector.TextRange = function(startLine, startColumn, endLine, endColumn)
43 this.endColumn = endColumn;
57 return new WebInspector.TextRange(serializedTextRange.startLine, serializedTextRange.startColumn, serializedTextRange.endLine, serializedTextRange.endColumn);
66 return this.startLine === this.endLine && this.startColumn === this.endColumn;
77 return this.endLine === range.startLine && this.endColumn === range.startColumn;
101 return new WebInspector.TextRange(this.endLine, this.endColumn, this.endLine, this.endColumn);
109 if (this.startLine > this.endLine || (this.startLine === this.endLine && this.startColumn > this.endColumn))
    [all...]
Script.js 35 * @param {number} endColumn
40 WebInspector.Script = function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL, hasSourceURL)
47 this.endColumn = endColumn;
CSSSourceFrame.js 87 var cssUnitRange = new WebInspector.TextRange(selection.startLine, token.startColumn, selection.startLine, token.endColumn + 1);
94 selection.endColumn = selection.startColumn + newUnitText.length;
JavaScriptSourceFrame.js 278 if (textSelection.startLine !== textSelection.endLine || textSelection.startLine !== mouseLine || mouseColumn < textSelection.startColumn || mouseColumn > textSelection.endColumn)
282 var rightCorner = this.textEditor.cursorPositionToCoordinates(textSelection.endLine, textSelection.endColumn);
287 endColumn: textSelection.endColumn - 1
298 var tokenContent = line.substring(token.startColumn, token.endColumn + 1);
303 var rightCorner = this.textEditor.cursorPositionToCoordinates(lineNumber, token.endColumn + 1);
309 endColumn: token.endColumn
343 var endHighlight = anchorBox.highlight.endColumn;
    [all...]
UISourceCodeFrame.js 136 end = event.data.newFormatter.originalToFormatted(selection.endLine, selection.endColumn);
139 end = event.data.oldFormatter.formattedToOriginal(selection.endLine, selection.endColumn);
CodeMirrorTextEditor.js 322 if (range.endColumn > WebInspector.CodeMirrorTextEditor.maxHighlightLength)
474 * @return {?{startColumn: number, endColumn: number, type: string}}
488 endColumn: token.end - 1,
    [all...]
ContentProviders.js 66 var columnNumber = previousScript.endColumn + scriptCloseTagLength + scriptOpenTagLength;
181 columnNumber = scripts[i].endColumn + scriptCloseTag.length;
DebuggerModel.js 494 * @param {number} endColumn
499 _parsedScriptSource: function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL, hasSourceURL)
501 var script = new WebInspector.Script(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL, hasSourceURL);
552 if (script.endLine < lineNumber || (script.endLine === lineNumber && script.endColumn <= columnNumber))
780 * @param {number} endColumn
785 scriptParsed: function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL, hasSourceURL)
787 this._debuggerModel._parsedScriptSource(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, !!isContentScript, sourceMapURL, hasSourceURL);
    [all...]
ExtensionServer.js 684 endColumn: textRange.endColumn,
    [all...]
SourceFrame.js 759 this._sourcePosition.setText(WebInspector.UIString("Line %d, Column %d", textRange.endLine + 1, textRange.endColumn + 1));
  /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 51 , endColumn(0)
62 int endColumn;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
DebuggerScript.js 140 var endColumn;
144 endColumn = 0;
147 endColumn = script.source.length + script.column_offset;
149 endColumn = script.source.length - (lineEnds[lineCount - 2] + 1);
159 endColumn: endColumn,
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderMultiColumnSet.cpp 398 unsigned endColumn = columnIndexAtOffset(repaintLogicalBottom);
402 for (unsigned i = startColumn; i <= endColumn; i++) {
452 unsigned endColumn = columnIndexAtOffset(layerLogicalBottom);
458 for (unsigned i = startColumn; i <= endColumn; i++) {
RenderTableSection.cpp     [all...]
RenderTable.cpp     [all...]
  /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;
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternView.java 936 final int endColumn = end.column;
    [all...]

Completed in 248 milliseconds

1 2