HomeSort by relevance Sort by last modified time
    Searched refs:endColumn (Results 1 - 25 of 38) 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...]
TextEditorModel.js 150 if (range.startLine === range.endLine && range.endColumn - range.startColumn === 1)
152 if (range.endLine - range.startLine === 1 && range.endColumn === 0 && range.startColumn === this.lineLength(range.startLine))
287 var suffix = this._lines[range.endLine].substring(range.endColumn);
355 clip.push(this._lines[range.startLine].substring(range.startColumn, range.endColumn));
361 clip.push(this._lines[range.endLine].substring(0, range.endColumn));
509 if (range.endColumn)
510 newRange.endColumn += indent.length;
534 if (!range.endColumn)
554 newRange.endColumn = Math.max(0, newRange.endColumn - lineIndentLength)
    [all...]
Script.js 35 * @param {number} endColumn
40 WebInspector.Script = function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL, hasSourceURL)
47 this.endColumn = endColumn;
JavaScriptSourceFrame.js 248 if (textSelection.startLine !== textSelection.endLine || textSelection.startLine !== mouseLine || mouseColumn < textSelection.startColumn || mouseColumn > textSelection.endColumn)
252 var rightCorner = this.textEditor.cursorPositionToCoordinates(textSelection.endLine, textSelection.endColumn);
257 endColumn: textSelection.endColumn - 1
268 var tokenContent = line.substring(token.startColumn, token.endColumn + 1);
273 var rightCorner = this.textEditor.cursorPositionToCoordinates(lineNumber, token.endColumn + 1);
279 endColumn: token.endColumn
312 var endHighlight = anchorBox.highlight.endColumn;
ContentProviders.js 67 var columnNumber = previousScript.endColumn + scriptCloseTagLength + scriptOpenTagLength;
176 columnNumber = scripts[i].endColumn + scriptCloseTag.length;
TextEditorHighlighter.js 208 endColumn: newColumn - 1,
214 endColumn: newColumn - 1,
DebuggerModel.js 386 * @param {number} endColumn
391 _parsedScriptSource: function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL, hasSourceURL)
393 var script = new WebInspector.Script(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL, hasSourceURL);
444 if (script.endLine < lineNumber || (script.endLine === lineNumber && script.endColumn <= columnNumber))
665 * @param {number} endColumn
670 scriptParsed: function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL, hasSourceURL)
672 this._debuggerModel._parsedScriptSource(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, !!isContentScript, sourceMapURL, hasSourceURL);
CodeMirrorTextEditor.js 470 * @return {?{startColumn: number, endColumn: number, type: string}}
484 endColumn: token.end - 1,
    [all...]
SourceFrame.js 736 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 412 unsigned endColumn = columnIndexAtOffset(repaintLogicalBottom);
416 for (unsigned i = startColumn; i <= endColumn; i++) {
455 unsigned endColumn = columnIndexAtOffset(layerLogicalBottom);
461 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...]
  /prebuilts/devtools/tools/lib/
lint.jar 

Completed in 609 milliseconds

1 2