Searched defs:TextRange (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
H A DTextRange.js38 WebInspector.TextRange = function(startLine, startColumn, endLine, endColumn)
49 * @return {!WebInspector.TextRange}
51 WebInspector.TextRange.createFromLocation = function(line, column)
53 return new WebInspector.TextRange(line, column, line, column);
58 * @return {!WebInspector.TextRange}
60 WebInspector.TextRange.fromObject = function(serializedTextRange)
62 return new WebInspector.TextRange(serializedTextRange.startLine, serializedTextRange.startColumn, serializedTextRange.endLine, serializedTextRange.endColumn);
66 * @param {!WebInspector.TextRange} range1
67 * @param {!WebInspector.TextRange} range2
70 WebInspector.TextRange
[all...]
/external/chromium_org/chrome/browser/ui/autofill/
H A Dgenerated_credit_card_bubble_controller.h34 struct TextRange { struct in namespace:autofill
35 // The range of text this TextRange applies to (start and end).
40 bool operator==(const TextRange& other) const;
84 const std::vector<TextRange>& ContentsTextRanges() const;
155 std::vector<TextRange> contents_text_ranges_;

Completed in 533 milliseconds