Home
last modified time | relevance | path

Searched refs:endColumn (Results 1 – 25 of 27) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
DTextRange.js38 WebInspector.TextRange = function(startLine, startColumn, endLine, endColumn) argument
43 this.endColumn = endColumn;
62 …Line, 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);
145 …startLine > this.endLine || (this.startLine === this.endLine && this.startColumn > this.endColumn))
146 … return new WebInspector.TextRange(this.endLine, this.endColumn, this.startLine, this.startColumn);
156 … return new WebInspector.TextRange(this.startLine, this.startColumn, this.endLine, this.endColumn);
[all …]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
DScript.js41 … function(target, scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript… argument
49 this.endColumn = endColumn;
DDebuggerModel.js478 …_parsedScriptSource: function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isC… argument
480 …pt(this.target(), scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript…
534 …if (script.endLine < lineNumber || (script.endLine === lineNumber && script.endColumn <= columnNum…
789 …scriptParsed: function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentS… argument
791 …arsedScriptSource(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, !!isContentScri…
805 …scriptFailedToParse: function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isC… argument
807 …arsedScriptSource(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, !!isContentScri…
DContentProviders.js66 … var columnNumber = previousScript.endColumn + scriptCloseTagLength + scriptOpenTagLength;
180 columnNumber = scripts[i].endColumn + scriptCloseTag.length;
DCSSStyleModel.js949 …or.TextRange(firstRange.startLine, firstRange.startColumn, lastRange.endLine, lastRange.endColumn);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DScriptDebugListener.h54 , endColumn(0) in Script()
66 int endColumn; variable
DInspectorCSSAgent.cpp851 unsigned endColumn = 0; in jsonRangeToSourceRange() local
855 || !extractRangeComponent(errorString, range, "endColumn", endColumn)) in jsonRangeToSourceRange()
861 && inspectorStyleSheet->lineNumberAndColumnToOffset(endLineNumber, endColumn, &endOffset); in jsonRangeToSourceRange()
DInspectorDebuggerAgent.cpp1358 …scriptURL, script.startLine, script.startColumn, script.endLine, script.endColumn, isContentScript… in didParseSource()
1360 …scriptURL, script.startLine, script.startColumn, script.endLine, script.endColumn, isContentScript… in didParseSource()
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DDebuggerScript.js160 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,
DScriptDebugServer.cpp579 script.endColumn = object->Get(v8AtomicString(m_isolate, "endColumn"))->ToInteger()->Value(); in dispatchDidParseSource()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
DCSSSourceFrame.js87 …bInspector.TextRange(selection.startLine, token.startColumn, selection.startLine, token.endColumn);
94 selection.endColumn = selection.startColumn + newUnitText.length;
DJavaScriptSourceFrame.js504 … !== mouseLine || mouseColumn < textSelection.startColumn || mouseColumn > textSelection.endColumn)
508 …rner = this.textEditor.cursorPositionToCoordinates(textSelection.endLine, textSelection.endColumn);
513 endColumn: textSelection.endColumn - 1 property
524 var tokenContent = line.substring(token.startColumn, token.endColumn);
531 … var rightCorner = this.textEditor.cursorPositionToCoordinates(lineNumber, token.endColumn - 1);
537 endColumn: token.endColumn - 1 property
552 var endHighlight = anchorBox.highlight.endColumn;
DEditingLocationHistoryManager.js172 columnNumber: selection.endColumn
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
DCodeMirrorTextEditor.js355 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)
774 endColumn: token.end,
1223 newRange.endColumn = newRange.startColumn;
1226 newRange.endColumn = newRange.startColumn + changeObject.text[0].length;
1229 newRange.endColumn = changeObject.text[linesAdded - 1].length;
1638 _isWord: function(selectedText, lineNumber, startColumn, endColumn) argument
1642 …var rightBound = endColumn === line.length || !WebInspector.TextUtils.isWordChar(line.charAt(endCo…
[all …]
DCodeMirrorUtils.js48 end: new CodeMirror.Pos(range.endLine, range.endColumn)
DSourceFrame.js725 …tText(WebInspector.UIString("Line %d, Column %d", textRange.endLine + 1, textRange.endColumn + 1));
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderMultiColumnSet.cpp448 unsigned endColumn = columnIndexAtOffset(paintInvalidationLogicalBottom); in paintInvalidationForFlowThreadContent() local
452 for (unsigned i = startColumn; i <= endColumn; i++) { in paintInvalidationForFlowThreadContent()
502 unsigned endColumn = columnIndexAtOffset(layerLogicalBottom); in collectLayerFragments() local
514 for (unsigned i = startColumn; i <= endColumn; i++) { in collectLayerFragments()
DRenderTableSection.cpp1358 unsigned endColumn; in spannedColumns() local
1360 endColumn = nextColumn; in spannedColumns()
1362endColumn = std::upper_bound(columnPos.begin() + nextColumn, columnPos.end(), flippedRect.maxX()) … in spannedColumns()
1363 if (endColumn == columnPos.size()) in spannedColumns()
1364 endColumn = columnPos.size() - 1; in spannedColumns()
1367 return CellSpan(startColumn, endColumn); in spannedColumns()
DRenderTable.cpp948 unsigned endColumn = numEffCols() - 1; in calcBorderEnd() local
949 if (RenderTableCol* column = colElement(endColumn)) { in calcBorderEnd()
DRenderBlock.cpp3048 unsigned endColumn = (endOffset - beforeBorderPadding) / colHeight; in adjustRectForColumns() local
3050 if (startColumn == endColumn) { in adjustRectForColumns()
3074 result.unite(columnRectAt(colInfo, endColumn)); in adjustRectForColumns()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/documentation/
DDocumentationView.js396 …or.TextRange(textSelection.startLine, token.startColumn, textSelection.startLine, token.endColumn);
426 return token ? line.substring(token.startColumn, token.endColumn) : null;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
DCSSWorkspaceBinding.js137 …var column = forName ? range.startColumn : range.endColumn - (cssProperty.text && cssProperty.text…
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/extensions/
DExtensionServer.js711 endColumn: textRange.endColumn, property
/external/clang/include/clang-c/
DIndex.h3975 unsigned *endColumn);
/external/clang/tools/c-index-test/
Dc-index-test.c1076 unsigned startLine, startColumn, endLine, endColumn, curLine, curColumn; in FunctionScanVisitor() local
1086 &endLine, &endColumn); in FunctionScanVisitor()

12