Searched refs:endOffset (Results 1 - 25 of 89) sorted by relevance

1234

/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DCompositionUnderline.h35 : startOffset(0), endOffset(0), thick(false) { }
37 : startOffset(s), endOffset(e), color(c), thick(t) { }
39 unsigned endOffset; member in struct:WebCore::CompositionUnderline
H A DTextIterator.cpp262 int endOffset = r->endOffset(); local
272 m_endOffset = endOffset;
284 m_pastEndNode = nextInPreOrderCrossingShadowBoundaries(endContainer, endOffset);
1113 int endOffset = r->endOffset(); local
1122 if (endOffset > 0 && endOffset <= static_cast<int>(endNode->childNodeCount())) {
1123 endNode = endNode->childNode(endOffset - 1);
1124 endOffset
1329 emitCharacter(UChar c, Node* node, int startOffset, int endOffset) argument
[all...]
H A DTextCheckingHelper.h93 int findFirstGrammarDetail(const Vector<GrammarDetail>& grammarDetails, int badGrammarPhraseLocation, int startOffset, int endOffset, bool markAll) const;
/external/chromium_org/third_party/WebKit/public/web/
H A DWebCompositionUnderline.h43 , endOffset(0)
49 , endOffset(e)
54 unsigned endOffset; member in struct:WebKit::WebCompositionUnderline
H A DWebRange.h69 WEBKIT_EXPORT int endOffset() const;
/external/proguard/src/proguard/classfile/visitor/
H A DExceptionHandlerFilter.java38 private final int endOffset; field in class:ExceptionHandlerFilter
45 * @param endOffset the end of the instruction offset range.
50 int endOffset,
54 this.endOffset = endOffset;
65 handlerPC < endOffset)
49 ExceptionHandlerFilter(int startOffset, int endOffset, ExceptionInfoVisitor exceptionInfoVisitor) argument
H A DExceptionRangeFilter.java38 private final int endOffset; field in class:ExceptionRangeFilter
45 * @param endOffset the end offset of the instruction range.
50 int endOffset,
54 this.endOffset = endOffset;
63 if (exceptionInfo.isApplicable(startOffset, endOffset))
49 ExceptionRangeFilter(int startOffset, int endOffset, ExceptionInfoVisitor exceptionInfoVisitor) argument
/external/chromium_org/content/browser/accessibility/
H A Dbrowser_accessibility_delegate_mac.h19 endOffset:(int32)endOffset;
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentMarker.h72 DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset);
73 DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset, const String& description);
74 DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset, const String& description, uint32_t hash);
75 DocumentMarker(unsigned startOffset, unsigned endOffset, bool activeMatch);
76 DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset, PassRefPtr<DocumentMarkerDetails>);
80 unsigned endOffset() const { return m_endOffset; } function in class:WebCore::DocumentMarker
98 return type() == o.type() && startOffset() == o.startOffset() && endOffset() == o.endOffset();
H A DDocumentMarker.cpp108 DocumentMarker::DocumentMarker(MarkerType type, unsigned startOffset, unsigned endOffset) argument
111 , m_endOffset(endOffset)
116 DocumentMarker::DocumentMarker(MarkerType type, unsigned startOffset, unsigned endOffset, const String& description) argument
119 , m_endOffset(endOffset)
125 DocumentMarker::DocumentMarker(MarkerType type, unsigned startOffset, unsigned endOffset, const String& description, uint32_t hash) argument
128 , m_endOffset(endOffset)
134 DocumentMarker::DocumentMarker(unsigned startOffset, unsigned endOffset, bool activeMatch) argument
137 , m_endOffset(endOffset)
143 DocumentMarker::DocumentMarker(MarkerType type, unsigned startOffset, unsigned endOffset, PassRefPtr<DocumentMarkerDetails> details) argument
146 , m_endOffset(endOffset)
[all...]
H A DDocumentMarkerController.cpp68 addMarker(textPiece->startContainer(), DocumentMarker(type, textPiece->startOffset(), textPiece->endOffset(), description, hash));
77 addMarker(textPiece->startContainer(), DocumentMarker(type, textPiece->startOffset(), textPiece->endOffset(), description));
86 addMarker(textPiece->startContainer(), DocumentMarker(type, textPiece->startOffset(), textPiece->endOffset()));
108 unsigned endOffset = textPiece->endOffset(); local
109 addMarker(textPiece->startContainer(), DocumentMarker(startOffset, endOffset, activeMatch));
110 if (endOffset > startOffset) {
131 int endOffset = textPiece->endOffset(); local
132 removeMarkers(textPiece->startContainer(), startOffset, endOffset
213 unsigned endOffset = startOffset + length - 1; local
255 unsigned endOffset = startOffset + length; local
591 int endOffset = node == endContainer ? range->endOffset() : INT_MAX; local
596 setMarkersActive(Node* node, unsigned startOffset, unsigned endOffset, bool active) argument
[all...]
H A DRange.h53 static PassRefPtr<Range> create(PassRefPtr<Document>, PassRefPtr<Node> startContainer, int startOffset, PassRefPtr<Node> endContainer, int endOffset);
61 int endOffset() const { return m_end.offset(); } function in class:WebCore::Range
66 int endOffset(ExceptionState&) const;
154 Range(PassRefPtr<Document>, PassRefPtr<Node> startContainer, int startOffset, PassRefPtr<Node> endContainer, int endOffset);
166 static PassRefPtr<Node> processContentsBetweenOffsets(ActionType, PassRefPtr<DocumentFragment>, Node*, unsigned startOffset, unsigned endOffset, ExceptionState&);
H A DRange.cpp79 inline Range::Range(PassRefPtr<Document> ownerDocument, PassRefPtr<Node> startContainer, int startOffset, PassRefPtr<Node> endContainer, int endOffset) argument
94 setEnd(endContainer, endOffset);
97 PassRefPtr<Range> Range::create(PassRefPtr<Document> ownerDocument, PassRefPtr<Node> startContainer, int startOffset, PassRefPtr<Node> endContainer, int endOffset) argument
99 return adoptRef(new Range(ownerDocument, startContainer, startOffset, endContainer, endOffset));
158 int Range::endOffset(ExceptionState& es) const function in class:WebCore::Range
773 static inline void deleteCharacterData(PassRefPtr<CharacterData> data, unsigned startOffset, unsigned endOffset, ExceptionState& es) argument
775 if (data->length() - endOffset)
776 data->deleteData(endOffset, data->length() - endOffset, es);
782 Node* container, unsigned startOffset, unsigned endOffset, ExceptionStat
781 processContentsBetweenOffsets(ActionType action, PassRefPtr<DocumentFragment> fragment, Node* container, unsigned startOffset, unsigned endOffset, ExceptionState& es) argument
1568 int endOffset = node == endContainer ? m_end.offset() : numeric_limits<int>::max(); local
1600 int endOffset = node == endContainer ? m_end.offset() : numeric_limits<int>::max(); local
1888 int endOffset = (node == endContainer) ? m_end.offset() : INT_MAX; local
[all...]
/external/proguard/src/proguard/classfile/attribute/
H A DExceptionInfo.java82 public boolean isApplicable(int startOffset, int endOffset) argument
84 return u2startPC < endOffset &&
H A DCodeAttribute.java129 public void instructionsAccept(Clazz clazz, Method method, int startOffset, int endOffset, InstructionVisitor instructionVisitor) argument
133 while (offset < endOffset)
179 public void exceptionsAccept(Clazz clazz, Method method, int startOffset, int endOffset, ExceptionInfoVisitor exceptionInfoVisitor) argument
184 if (exceptionInfo.isApplicable(startOffset, endOffset))
/external/chromium_org/third_party/WebKit/Source/web/
H A DCompositionUnderlineBuilder.h47 : WebCore::CompositionUnderline(u.startOffset, u.endOffset,
H A DWebRange.cpp76 int WebRange::endOffset() const function in class:WebKit::WebRange
78 return m_private->endOffset();
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DStringExtensions.cs131 public static string substring( string str, int startOffset, int endOffset )
133 return str.Substring( startOffset, endOffset - startOffset );
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DStringExtensions.cs127 public static string substring(this string str, int startOffset, int endOffset) argument
129 return str.Substring( startOffset, endOffset - startOffset );
/external/proguard/src/proguard/optimize/peephole/
H A DUnreachableExceptionRemover.java114 int endOffset)
120 while (offset < endOffset)
110 mayThrowExceptions(Clazz clazz, Method method, CodeAttribute codeAttribute, int startOffset, int endOffset) argument
H A DReachableCodeMarker.java62 public boolean isReachable(int startOffset, int endOffset) argument
65 for (int offset = startOffset; offset < endOffset; offset++)
/external/chromium_org/third_party/iaccessible2/
H A Dia2_api_all.idl2107 @li endOffset < startOffset
2117 @param [in] endOffset
2125 [in] long endOffset
2134 @param [out] endOffset
2150 [out] long *endOffset,
2274 @param [out] endOffset
2284 [out, retval] long *endOffset
2290 the character at endOffset (exclusive), if startOffset is less or equal
2291 endOffste. If endOffset is lower than startOffset, the result is the same
2300 @param [in] endOffset
[all...]
/external/chromium_org/third_party/WebKit/Source/testing/runner/
H A DTextInputController.cpp127 intArray[1] = range.endOffset();
145 intArray[1] = range.endOffset();
/external/lzma/C/
H A DXzIn.c276 Int64 endOffset = 0; local
277 RINOK(stream->Seek(stream, &endOffset, SZ_SEEK_END));
278 *startOffset = endOffset;
302 if (progress && progress->Progress(progress, endOffset - *startOffset, (UInt64)(Int64)-1) != SZ_OK)
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DDOMExtension.js41 var endOffset = 0;
95 endOffset = i;
109 endOffset = stayWithinNode.nodeType === Node.TEXT_NODE ? stayWithinNode.nodeValue.length : stayWithinNode.childNodes.length;
113 endOffset = offset;
118 result.setEnd(endNode, endOffset);

Completed in 608 milliseconds

1234