Searched refs:startOffset (Results 1 - 25 of 124) sorted by relevance

12345

/macosx-10.9.5/WebKit-7537.78.2/win/Interfaces/Accessible2/
H A DAccessibleEditableText.idl67 If startOffset is less than endOffset, the substring starts with the
68 character at startOffset and ends with the character just before endOffset.
69 If endOffset is lower than startOffset, the result is the same as a call
87 @param [in] startOffset
103 [in] long startOffset,
112 @param [in] startOffset
127 [in] long startOffset,
159 @param [in] startOffset
175 [in] long startOffset,
212 @param [in] startOffset
[all...]
H A DAccessibleText2.idl78 @param [out] startOffset
93 [out] long *startOffset,
H A DAccessibleText.idl130 @li endOffset < startOffset
138 @param [in] startOffset
150 [in] long startOffset,
159 @param [out] startOffset
176 [out] long *startOffset,
318 <li>the startOffset for the "one ? three" object would be 4, matching the embed character and the endOffset would be 5.</li>
319 <li>the startOffset for the "two" object would be 0, and the endOffset would be 3</li>
325 @param [out] startOffset
335 [out] long *startOffset,
341 The substring starts with the character at startOffset (inclusiv
[all...]
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DAccessibleTextImpl.h38 virtual HRESULT STDMETHODCALLTYPE addSelection(long startOffset, long endOffset);
39 virtual HRESULT STDMETHODCALLTYPE get_attributes(long offset, long* startOffset, long* endOffset, BSTR* textAttributes);
44 virtual HRESULT STDMETHODCALLTYPE get_selection(long selectionIndex, long* startOffset, long* endOffset);
45 virtual HRESULT STDMETHODCALLTYPE get_text(long startOffset, long endOffset, BSTR* text);
46 virtual HRESULT STDMETHODCALLTYPE get_textBeforeOffset(long offset, enum IA2TextBoundaryType boundaryType, long* startOffset, long* endOffset, BSTR* text);
47 virtual HRESULT STDMETHODCALLTYPE get_textAfterOffset(long offset, enum IA2TextBoundaryType boundaryType, long* startOffset, long* endOffset, BSTR* text);
48 virtual HRESULT STDMETHODCALLTYPE get_textAtOffset(long offset, enum IA2TextBoundaryType boundaryType, long* startOffset, long* endOffset, BSTR* text);
51 virtual HRESULT STDMETHODCALLTYPE setSelection(long selectionIndex, long startOffset, long endOffset);
59 virtual HRESULT STDMETHODCALLTYPE get_attributeRange(long offset, BSTR filter, long* startOffset, long* endOffset, BSTR* attributeValues);
62 virtual HRESULT STDMETHODCALLTYPE copyText(long startOffset, lon
[all...]
H A DAccessibleTextImpl.cpp55 HRESULT AccessibleText::addSelection(long startOffset, long endOffset) argument
60 startOffset = convertSpecialOffset(startOffset);
63 m_object->setSelectedTextRange(PlainTextRange(startOffset, endOffset-startOffset));
68 HRESULT AccessibleText::get_attributes(long offset, long* startOffset, long* endOffset, BSTR* textAttributes) argument
169 HRESULT AccessibleText::get_selection(long selectionIndex, long* startOffset, long* endOffset) argument
181 *startOffset = selectionRange.start;
186 HRESULT AccessibleText::get_text(long startOffset, long endOffset, BSTR* text) argument
191 startOffset
202 get_textBeforeOffset(long offset, enum IA2TextBoundaryType boundaryType, long* startOffset, long* endOffset, BSTR* text) argument
270 get_textAfterOffset(long offset, enum IA2TextBoundaryType boundaryType, long* startOffset, long* endOffset, BSTR* text) argument
337 get_textAtOffset(long offset, enum IA2TextBoundaryType boundaryType, long* startOffset, long* endOffset, BSTR* text) argument
427 setSelection(long selectionIndex, long startOffset, long endOffset) argument
539 get_attributeRange(long offset, BSTR filter, long* startOffset, long* endOffset, BSTR* attributeValues) argument
547 copyText(long startOffset, long endOffset) argument
565 deleteText(long startOffset, long endOffset) argument
603 cutText(long startOffset, long endOffset) argument
644 replaceText(long startOffset, long endOffset, BSTR* text) argument
665 setAttributes(long startOffset, long endOffset, BSTR* attributes) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DDocumentMarker.cpp105 DocumentMarker::DocumentMarker(MarkerType type, unsigned startOffset, unsigned endOffset) argument
106 : m_type(type), m_startOffset(startOffset), m_endOffset(endOffset)
110 DocumentMarker::DocumentMarker(MarkerType type, unsigned startOffset, unsigned endOffset, const String& description) argument
112 , m_startOffset(startOffset)
118 DocumentMarker::DocumentMarker(unsigned startOffset, unsigned endOffset, bool activeMatch) argument
120 , m_startOffset(startOffset)
126 DocumentMarker::DocumentMarker(MarkerType type, unsigned startOffset, unsigned endOffset, PassRefPtr<DocumentMarkerDetails> details) argument
128 , m_startOffset(startOffset)
H A DDocumentMarker.h96 DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset);
97 DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset, const String& description);
98 DocumentMarker(unsigned startOffset, unsigned endOffset, bool activeMatch);
99 DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset, PassRefPtr<DocumentMarkerDetails>);
102 unsigned startOffset() const { return m_startOffset; } function in class:WebCore::DocumentMarker
120 return type() == o.type() && startOffset() == o.startOffset() && endOffset() == o.endOffset();
H A DDocumentMarkerController.cpp65 addMarker(textPiece->startContainer(), DocumentMarker(type, textPiece->startOffset(), textPiece->endOffset(), description));
74 addMarker(textPiece->startContainer(), DocumentMarker(type, textPiece->startOffset(), textPiece->endOffset()));
79 void DocumentMarkerController::addMarkerToNode(Node* node, unsigned startOffset, unsigned length, DocumentMarker::MarkerType type) argument
81 addMarker(node, DocumentMarker(type, startOffset, startOffset + length));
84 void DocumentMarkerController::addMarkerToNode(Node* node, unsigned startOffset, unsigned length, DocumentMarker::MarkerType type, PassRefPtr<DocumentMarkerDetails> details) argument
86 addMarker(node, DocumentMarker(type, startOffset, startOffset + length, details));
95 unsigned startOffset = textPiece->startOffset(); local
118 int startOffset = textPiece->startOffset(); local
187 copyMarkers(Node* srcNode, unsigned startOffset, int length, Node* dstNode, int delta) argument
229 removeMarkers(Node* node, unsigned startOffset, int length, DocumentMarker::MarkerTypes markerTypes, RemovePartiallyOverlappingMarkerOrNot shouldRemovePartiallyOverlappingMarker) argument
528 shiftMarkers(Node* node, unsigned startOffset, int delta) argument
568 int startOffset = node == startContainer ? range->startOffset() : 0; local
574 setMarkersActive(Node* node, unsigned startOffset, unsigned endOffset, bool active) argument
641 unsigned startOffset = node == startContainer ? range->startOffset() : 0; local
[all...]
H A DDocumentMarkerController.h53 void addMarkerToNode(Node*, unsigned startOffset, unsigned length, DocumentMarker::MarkerType);
54 void addMarkerToNode(Node*, unsigned startOffset, unsigned length, DocumentMarker::MarkerType, PassRefPtr<DocumentMarkerDetails>);
57 void copyMarkers(Node* srcNode, unsigned startOffset, int length, Node* dstNode, int delta);
65 void removeMarkers(Node*, unsigned startOffset, int length, DocumentMarker::MarkerTypes = DocumentMarker::AllMarkers(), RemovePartiallyOverlappingMarkerOrNot = DoNotRemovePartiallyOverlappingMarker);
71 void shiftMarkers(Node*, unsigned startOffset, int delta);
73 void setMarkersActive(Node*, unsigned startOffset, unsigned endOffset, bool);
H A DRange.h52 static PassRefPtr<Range> create(PassRefPtr<Document>, PassRefPtr<Node> startContainer, int startOffset, PassRefPtr<Node> endContainer, int endOffset);
58 int startOffset() const { return m_start.offset(); } function in class:WebCore::Range
63 int startOffset(ExceptionCode&) const;
153 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, ExceptionCode&);
/macosx-10.9.5/ICU-511.35/icuSources/test/perf/ubrkperf/
H A Dubrkperf.cpp90 UniCharCount startOffset = 0, breakOffset = 0, numUniChars = textSize;
91 startOffset = 0;
94 while (startOffset < numUniChars)
97 startOffset, &breakOffset);
98 //require_action(status == noErr, EXIT, printf( "**UCFindTextBreak failed: startOffset %d, status %d\n", (int)startOffset, (int)status));
99 //require_action((breakOffset <= numUniChars),EXIT, printf("**UCFindTextBreak breakOffset too big: startOffset %d, breakOffset %d\n", (int)startOffset, (int)breakOffset));
106 startOffset = breakOffset;
110 startOffset
[all...]
/macosx-10.9.5/WebCore-7537.78.1/accessibility/atk/
H A DWebKitAccessibleInterfaceText.cpp164 static gchar* webkitAccessibleTextGetText(AtkText*, gint startOffset, gint endOffset);
393 static const AccessibilityObject* getAccessibilityObjectForOffset(const AccessibilityObject* object, guint offset, gint* startOffset, gint* endOffset) argument
398 *startOffset = 0;
402 *startOffset = -1;
421 *startOffset = childStartOffset + childPosition;
433 static AtkAttributeSet* getRunAttributesFromAccesibilityObject(const AccessibilityObject* element, gint offset, gint* startOffset, gint* endOffset) argument
435 const AccessibilityObject* child = getAccessibilityObjectForOffset(element, offset, startOffset, endOffset);
437 *startOffset = -1;
448 static IntRect textExtents(AtkText* text, gint startOffset, gint length, AtkCoordType coords) argument
450 gchar* textContent = webkitAccessibleTextGetText(text, startOffset,
473 getSelectionOffsetsForObject(AccessibilityObject* coreObject, VisibleSelection& selection, gint& startOffset, gint& endOffset) argument
528 webkitAccessibleTextGetText(AtkText* text, gint startOffset, gint endOffset) argument
578 webkitAccessibleTextGetChar(AtkText* text, gint offset, GetTextRelativePosition textPosition, gint* startOffset, gint* endOffset) argument
610 webkitAccessibleTextGetTextForOffset(AtkText* text, gint offset, AtkTextBoundary boundaryType, GetTextRelativePosition textPosition, gint* startOffset, gint* endOffset) argument
647 webkitAccessibleTextGetTextAfterOffset(AtkText* text, gint offset, AtkTextBoundary boundaryType, gint* startOffset, gint* endOffset) argument
652 webkitAccessibleTextGetTextAtOffset(AtkText* text, gint offset, AtkTextBoundary boundaryType, gint* startOffset, gint* endOffset) argument
657 webkitAccessibleTextGetTextBeforeOffset(AtkText* text, gint offset, AtkTextBoundary boundaryType, gint* startOffset, gint* endOffset) argument
698 webkitAccessibleTextGetRunAttributes(AtkText* text, gint offset, gint* startOffset, gint* endOffset) argument
740 webkitAccessibleTextGetRangeExtents(AtkText* text, gint startOffset, gint endOffset, AtkCoordType coords, AtkTextRectangle* rect) argument
781 webkitAccessibleTextGetSelection(AtkText* text, gint selectionNum, gint* startOffset, gint* endOffset) argument
809 webkitAccessibleTextSetSelection(AtkText* text, gint selectionNum, gint startOffset, gint endOffset) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/rendering/svg/
H A DRenderSVGTextPath.cpp63 float RenderSVGTextPath::startOffset() const function in class:WebCore::RenderSVGTextPath
65 return static_cast<SVGTextPathElement*>(node())->startOffset().valueAsPercentage();
H A DRenderSVGTextPath.h34 float startOffset() const;
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGTextPathElement.idl40 readonly attribute SVGAnimatedLength startOffset;
/macosx-10.9.5/JavaScriptCore-7537.78.1/parser/
H A DNodeConstructors.h47 , m_startOffset(location.startOffset)
50 ASSERT(location.startOffset >= location.lineStartOffset);
105 inline ResolveNode::ResolveNode(const JSTokenLocation& location, const Identifier& ident, unsigned startOffset, unsigned divotLine, unsigned divotLineStart) argument
108 , m_startOffset(startOffset)
249 inline EvalFunctionCallNode::EvalFunctionCallNode(const JSTokenLocation& location, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset, unsigned divotLine, unsigned divotLineStart) argument
251 , ThrowableExpressionData(divot, startOffset, endOffset, divotLine, divotLineStart)
257 inline FunctionCallValueNode::FunctionCallValueNode(const JSTokenLocation& location, ExpressionNode* expr, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset, unsigned divotLine, unsigned divotLineStart) argument
259 , ThrowableExpressionData(divot, startOffset, endOffset, divotLine, divotLineStart)
265 inline FunctionCallResolveNode::FunctionCallResolveNode(const JSTokenLocation& location, const Identifier& ident, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset, unsigned divotLine, unsigned divotLineStart) argument
267 , ThrowableExpressionData(divot, startOffset, endOffse
273 FunctionCallBracketNode(const JSTokenLocation& location, ExpressionNode* base, ExpressionNode* subscript, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset, unsigned divotLine, unsigned divotLineStart) argument
282 FunctionCallDotNode(const JSTokenLocation& location, ExpressionNode* base, const Identifier& ident, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset, unsigned divotLine, unsigned divotLineStart) argument
291 CallFunctionCallDotNode(const JSTokenLocation& location, ExpressionNode* base, const Identifier& ident, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset, unsigned divotLine, unsigned divotLineStart) argument
296 ApplyFunctionCallDotNode(const JSTokenLocation& location, ExpressionNode* base, const Identifier& ident, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset, unsigned divotLine, unsigned divotLineStart) argument
301 PostfixNode(const JSTokenLocation& location, ExpressionNode* expr, Operator oper, unsigned divot, unsigned startOffset, unsigned endOffset, unsigned divotLine, unsigned divotLineStart) argument
306 DeleteResolveNode(const JSTokenLocation& location, const Identifier& ident, unsigned divot, unsigned startOffset, unsigned endOffset, unsigned divotLine, unsigned divotLineStart) argument
313 DeleteBracketNode(const JSTokenLocation& location, ExpressionNode* base, ExpressionNode* subscript, unsigned divot, unsigned startOffset, unsigned endOffset, unsigned divotLine, unsigned divotLineStart) argument
321 DeleteDotNode(const JSTokenLocation& location, ExpressionNode* base, const Identifier& ident, unsigned divot, unsigned startOffset, unsigned endOffset, unsigned divotLine, unsigned divotLineStart) argument
353 PrefixNode(const JSTokenLocation& location, ExpressionNode* expr, Operator oper, unsigned divot, unsigned startOffset, unsigned endOffset, unsigned divotLine, unsigned divotLineStart) argument
539 ReadModifyResolveNode(const JSTokenLocation& location, const Identifier& ident, Operator oper, ExpressionNode* right, bool rightHasAssignments, unsigned divot, unsigned startOffset, unsigned endOffset, unsigned divotLine, unsigned divotLineStart) argument
558 ReadModifyBracketNode(const JSTokenLocation& location, ExpressionNode* base, ExpressionNode* subscript, Operator oper, ExpressionNode* right, bool subscriptHasAssignments, bool rightHasAssignments, unsigned divot, unsigned startOffset, unsigned endOffset, unsigned divotLine, unsigned divotLineStart) argument
570 AssignBracketNode(const JSTokenLocation& location, ExpressionNode* base, ExpressionNode* subscript, ExpressionNode* right, bool subscriptHasAssignments, bool rightHasAssignments, unsigned divot, unsigned startOffset, unsigned endOffset, unsigned divotLine, unsigned divotLineStart) argument
581 AssignDotNode(const JSTokenLocation& location, ExpressionNode* base, const Identifier& ident, ExpressionNode* right, bool rightHasAssignments, unsigned divot, unsigned startOffset, unsigned endOffset, unsigned divotLine, unsigned divotLineStart) argument
591 ReadModifyDotNode(const JSTokenLocation& location, ExpressionNode* base, const Identifier& ident, Operator oper, ExpressionNode* right, bool rightHasAssignments, unsigned divot, unsigned startOffset, unsigned endOffset, unsigned divotLine, unsigned divotLineStart) argument
602 AssignErrorNode(const JSTokenLocation& location, unsigned divot, unsigned startOffset, unsigned endOffset, unsigned divotLine, unsigned divotLineStart) argument
825 ForInNode(VM* vm, const JSTokenLocation& location, const Identifier& ident, ExpressionNode* in, ExpressionNode* expr, StatementNode* statement, unsigned divot, int startOffset, int endOffset, unsigned divotLine, unsigned divotLineStart) argument
[all...]
H A DParserTokens.h164 JSTokenLocation() : line(0), lineStartOffset(0), startOffset(0) { }
169 startOffset = location.startOffset;
175 unsigned startOffset; member in struct:JSC::JSTokenLocation
/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecode/
H A DUnlinkedCodeBlock.cpp94 , m_functionStartOffset(node->functionStart() - source.startOffset())
96 , m_startOffset(node->source().startOffset() - source.startOffset())
125 unsigned startOffset = sourceOffset + m_startOffset; local
127 SourceCode code(source.provider(), startOffset, startOffset + m_sourceLength, firstLine, startColumn);
246 int startOffset;
250 expressionRangeForBytecodeOffset(bytecodeOffset, divot, startOffset, endOffset, line, column);
255 int& divot, int& startOffset, int& endOffset, unsigned& line, unsigned& column)
260 startOffset
244 ASSERT(bytecodeOffset < instructions().size()); int divot; int startOffset; int endOffset; unsigned line; unsigned column; expressionRangeForBytecodeOffset(bytecodeOffset, divot, startOffset, endOffset, line, column); return line; } void UnlinkedCodeBlock::expressionRangeForBytecodeOffset(unsigned bytecodeOffset, int& divot, int& startOffset, int& endOffset, unsigned& line, unsigned& column) { ASSERT(bytecodeOffset < instructions().size()); if (!m_expressionInfo.size()) { startOffset = 0; endOffset = 0; divot = 0; line = 0; column = 0; return; } Vector<ExpressionRangeInfo>& expressionInfo = m_expressionInfo; int low = 0; int high = expressionInfo.size(); while (low < high) { int mid = low + (high - low) / 2; if (expressionInfo[mid].instructionOffset <= bytecodeOffset) low = mid + 1; else high = mid; } if (!low) low = 1; ExpressionRangeInfo& info = expressionInfo[low - 1]; startOffset = info.startOffset; endOffset = info.endOffset; divot = info.divotPoint; switch (info.mode) { case ExpressionRangeInfo::FatLineMode: info.decodeFatLineMode(line, column); break; case ExpressionRangeInfo::FatColumnMode: info.decodeFatColumnMode(line, column); break; case ExpressionRangeInfo::FatLineAndColumnMode: { unsigned fatIndex = info.position; ExpressionRangeInfo::FatPosition& fatPos = m_rareData->m_expressionInfoFatPositions[fatIndex]; line = fatPos.line; column = fatPos.column; break; } } } void UnlinkedCodeBlock::addExpressionInfo(unsigned instructionOffset, int divot, int startOffset, int endOffset, unsigned line, unsigned column) { if (divot > ExpressionRangeInfo::MaxDivot) { divot = 0; startOffset = 0; endOffset = 0; } else if (startOffset > ExpressionRangeInfo::MaxOffset) { startOffset = 0; endOffset = 0; } else if (endOffset > ExpressionRangeInfo::MaxOffset) argument
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DRegExp.cpp114 void RegExpFunctionalTestCollector::outputOneTest(RegExp* regExp, String s, int startOffset, int* ovector, int result) argument
132 fprintf(m_file, "\", %d, %d, (", startOffset, result);
321 int RegExp::match(VM& vm, const String& s, unsigned startOffset, Vector<int, 32>& ovector) argument
338 result = m_regExpJITCode.execute(s.characters8(), startOffset, s.length(), offsetVector).start;
340 result = m_regExpJITCode.execute(s.characters16(), startOffset, s.length(), offsetVector).start;
342 matchCompareWithInterpreter(s, startOffset, offsetVector, result);
346 result = Yarr::interpret(m_regExpBytecode.get(), s, startOffset, reinterpret_cast<unsigned*>(offsetVector));
376 RegExpFunctionalTestCollector::get()->outputOneTest(this, s, startOffset, offsetVector, result);
443 MatchResult RegExp::match(VM& vm, const String& s, unsigned startOffset) argument
455 m_regExpJITCode.execute(s.characters8(), startOffset,
497 matchCompareWithInterpreter(const String& s, int startOffset, int* offsetVector, int jitResult) argument
[all...]
H A DRegExpConstructor.h58 MatchResult performMatch(VM&, RegExp*, JSString*, const String&, int startOffset, int** ovector);
59 MatchResult performMatch(VM&, RegExp*, JSString*, const String&, int startOffset);
104 ALWAYS_INLINE MatchResult RegExpConstructor::performMatch(VM& vm, RegExp* regExp, JSString* string, const String& input, int startOffset, int** ovector) argument
106 int position = regExp->match(vm, input, startOffset, m_ovector);
123 ALWAYS_INLINE MatchResult RegExpConstructor::performMatch(VM& vm, RegExp* regExp, JSString* string, const String& input, int startOffset) argument
125 MatchResult result = regExp->match(vm, input, startOffset);
H A DRegExp.h63 JS_EXPORT_PRIVATE int match(VM&, const String&, unsigned startOffset, Vector<int, 32>& ovector);
64 MatchResult match(VM&, const String&, unsigned startOffset);
110 void matchCompareWithInterpreter(const String&, int startOffset, int* offsetVector, int jitResult);
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebHTMLRepresentation.h56 - (NSAttributedString *)attributedStringFrom:(DOMNode *)startNode startOffset:(int)startOffset to:(DOMNode *)endNode endOffset:(int)endOffset;
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderTextFragment.cpp31 RenderTextFragment::RenderTextFragment(Node* node, StringImpl* str, int startOffset, int length) argument
32 : RenderText(node, str ? str->substring(startOffset, length) : PassRefPtr<StringImpl>(0))
33 , m_start(startOffset)
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/InjectedBundle/API/mac/
H A DWKDOMRange.h45 @property(readonly) NSInteger startOffset; variable
/macosx-10.9.5/WebKit-7537.78.2/gtk/tests/
H A Dtestatk.c98 gint startOffset; local
100 char* text = fn(textObject, offset, boundary, &startOffset, &endOffset);
102 g_assert_cmpint(startOffset, ==, startOffsetResult);
1174 gint startOffset; local
1176 AtkAttributeSet* set1 = atk_text_get_run_attributes(childText, 0, &startOffset, &endOffset);
1177 g_assert_cmpint(startOffset, ==, 0);
1181 AtkAttributeSet* set2 = atk_text_get_run_attributes(childText, 15, &startOffset, &endOffset);
1182 g_assert_cmpint(startOffset, ==, 12);
1186 AtkAttributeSet* set3 = atk_text_get_run_attributes(childText, 17, &startOffset, &endOffset);
1187 g_assert_cmpint(startOffset,
1274 int startOffset = 0; local
1276 atk_text_get_selection(ATK_TEXT(text), 0, &startOffset, &endOffset); local
1313 gint startOffset; local
1534 gint startOffset; local
1603 gint startOffset; local
[all...]

Completed in 166 milliseconds

12345