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

123456

/external/webkit/Source/WebKit/chromium/public/
H A DWebCompositionUnderline.h42 : startOffset(0)
48 : startOffset(s)
53 unsigned startOffset; member in struct:WebKit::WebCompositionUnderline
/external/proguard/src/proguard/classfile/visitor/
H A DExceptionHandlerFilter.java37 private final int startOffset; field in class:ExceptionHandlerFilter
44 * @param startOffset the start of the instruction offset range.
49 public ExceptionHandlerFilter(int startOffset, argument
53 this.startOffset = startOffset;
64 if (handlerPC >= startOffset &&
H A DExceptionRangeFilter.java37 private final int startOffset; field in class:ExceptionRangeFilter
44 * @param startOffset the start offset of the instruction range.
49 public ExceptionRangeFilter(int startOffset, argument
53 this.startOffset = startOffset;
63 if (exceptionInfo.isApplicable(startOffset, endOffset))
/external/proguard/src/proguard/classfile/attribute/
H A DExceptionInfo.java82 public boolean isApplicable(int startOffset, int endOffset) argument
85 u2endPC > startOffset;
H A DCodeAttribute.java129 public void instructionsAccept(Clazz clazz, Method method, int startOffset, int endOffset, InstructionVisitor instructionVisitor) argument
131 int offset = startOffset;
179 public void exceptionsAccept(Clazz clazz, Method method, int startOffset, int endOffset, ExceptionInfoVisitor exceptionInfoVisitor) argument
184 if (exceptionInfo.isApplicable(startOffset, endOffset))
/external/webkit/Source/WebKit/chromium/src/
H A DCompositionUnderlineBuilder.h47 : WebCore::CompositionUnderline(u.startOffset, u.endOffset,
H A DWebRange.cpp58 int WebRange::startOffset() const function in class:WebKit::WebRange
60 return m_private->startOffset();
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DStringExtensions.cs126 public static string substring( string str, int startOffset )
128 return str.Substring( startOffset );
131 public static string substring( string str, int startOffset, int endOffset ) argument
133 return str.Substring( startOffset, endOffset - startOffset );
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DStringExtensions.cs121 public static string substring( this string str, int startOffset )
123 return str.Substring( startOffset );
127 public static string substring(this string str, int startOffset, int endOffset) argument
129 return str.Substring( startOffset, endOffset - startOffset );
/external/icu4c/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...]
/external/webkit/Source/JavaScriptCore/parser/
H A DNodeConstructors.h97 inline ResolveNode::ResolveNode(JSGlobalData* globalData, const Identifier& ident, int startOffset) argument
100 , m_startOffset(startOffset)
238 inline EvalFunctionCallNode::EvalFunctionCallNode(JSGlobalData* globalData, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset) argument
240 , ThrowableExpressionData(divot, startOffset, endOffset)
245 inline FunctionCallValueNode::FunctionCallValueNode(JSGlobalData* globalData, ExpressionNode* expr, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset) argument
247 , ThrowableExpressionData(divot, startOffset, endOffset)
253 inline FunctionCallResolveNode::FunctionCallResolveNode(JSGlobalData* globalData, const Identifier& ident, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset) argument
255 , ThrowableExpressionData(divot, startOffset, endOffset)
261 inline FunctionCallBracketNode::FunctionCallBracketNode(JSGlobalData* globalData, ExpressionNode* base, ExpressionNode* subscript, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset) argument
263 , ThrowableSubExpressionData(divot, startOffset, endOffse
270 FunctionCallDotNode(JSGlobalData* globalData, ExpressionNode* base, const Identifier& ident, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset) argument
279 CallFunctionCallDotNode(JSGlobalData* globalData, ExpressionNode* base, const Identifier& ident, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset) argument
284 ApplyFunctionCallDotNode(JSGlobalData* globalData, ExpressionNode* base, const Identifier& ident, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset) argument
289 PrePostResolveNode(JSGlobalData* globalData, const Identifier& ident, unsigned divot, unsigned startOffset, unsigned endOffset) argument
296 PostfixResolveNode(JSGlobalData* globalData, const Identifier& ident, Operator oper, unsigned divot, unsigned startOffset, unsigned endOffset) argument
302 PostfixBracketNode(JSGlobalData* globalData, ExpressionNode* base, ExpressionNode* subscript, Operator oper, unsigned divot, unsigned startOffset, unsigned endOffset) argument
311 PostfixDotNode(JSGlobalData* globalData, ExpressionNode* base, const Identifier& ident, Operator oper, unsigned divot, unsigned startOffset, unsigned endOffset) argument
320 PostfixErrorNode(JSGlobalData* globalData, ExpressionNode* expr, Operator oper, unsigned divot, unsigned startOffset, unsigned endOffset) argument
328 DeleteResolveNode(JSGlobalData* globalData, const Identifier& ident, unsigned divot, unsigned startOffset, unsigned endOffset) argument
335 DeleteBracketNode(JSGlobalData* globalData, ExpressionNode* base, ExpressionNode* subscript, unsigned divot, unsigned startOffset, unsigned endOffset) argument
343 DeleteDotNode(JSGlobalData* globalData, ExpressionNode* base, const Identifier& ident, unsigned divot, unsigned startOffset, unsigned endOffset) argument
375 PrefixResolveNode(JSGlobalData* globalData, const Identifier& ident, Operator oper, unsigned divot, unsigned startOffset, unsigned endOffset) argument
381 PrefixBracketNode(JSGlobalData* globalData, ExpressionNode* base, ExpressionNode* subscript, Operator oper, unsigned divot, unsigned startOffset, unsigned endOffset) argument
390 PrefixDotNode(JSGlobalData* globalData, ExpressionNode* base, const Identifier& ident, Operator oper, unsigned divot, unsigned startOffset, unsigned endOffset) argument
399 PrefixErrorNode(JSGlobalData* globalData, ExpressionNode* expr, Operator oper, unsigned divot, unsigned startOffset, unsigned endOffset) argument
594 ReadModifyResolveNode(JSGlobalData* globalData, const Identifier& ident, Operator oper, ExpressionNode* right, bool rightHasAssignments, unsigned divot, unsigned startOffset, unsigned endOffset) argument
612 ReadModifyBracketNode(JSGlobalData* globalData, ExpressionNode* base, ExpressionNode* subscript, Operator oper, ExpressionNode* right, bool subscriptHasAssignments, bool rightHasAssignments, unsigned divot, unsigned startOffset, unsigned endOffset) argument
624 AssignBracketNode(JSGlobalData* globalData, ExpressionNode* base, ExpressionNode* subscript, ExpressionNode* right, bool subscriptHasAssignments, bool rightHasAssignments, unsigned divot, unsigned startOffset, unsigned endOffset) argument
635 AssignDotNode(JSGlobalData* globalData, ExpressionNode* base, const Identifier& ident, ExpressionNode* right, bool rightHasAssignments, unsigned divot, unsigned startOffset, unsigned endOffset) argument
645 ReadModifyDotNode(JSGlobalData* globalData, ExpressionNode* base, const Identifier& ident, Operator oper, ExpressionNode* right, bool rightHasAssignments, unsigned divot, unsigned startOffset, unsigned endOffset) argument
656 AssignErrorNode(JSGlobalData* globalData, ExpressionNode* left, Operator oper, ExpressionNode* right, unsigned divot, unsigned startOffset, unsigned endOffset) argument
889 ForInNode(JSGlobalData* globalData, const Identifier& ident, ExpressionNode* in, ExpressionNode* expr, StatementNode* statement, int divot, int startOffset, int endOffset) argument
[all...]
/external/webkit/Source/WebCore/dom/
H A DDocumentMarkerController.cpp66 DocumentMarker marker = {type, textPiece->startOffset(exception), textPiece->endOffset(exception), description, false};
79 int startOffset = textPiece->startOffset(); local
81 removeMarkers(textPiece->startContainer(), startOffset, endOffset - startOffset, markerTypes, shouldRemovePartiallyOverlappingMarker);
90 ASSERT(newMarker.endOffset >= newMarker.startOffset);
91 if (newMarker.endOffset == newMarker.startOffset)
114 if (marker.startOffset > newMarker.startOffset)
116 if (marker.type == newMarker.type && marker.endOffset >= newMarker.startOffset) {
155 copyMarkers(Node* srcNode, unsigned startOffset, int length, Node* dstNode, int delta) argument
201 removeMarkers(Node* node, unsigned startOffset, int length, DocumentMarker::MarkerTypes markerTypes, RemovePartiallyOverlappingMarkerOrNot shouldRemovePartiallyOverlappingMarker) argument
535 shiftMarkers(Node* node, unsigned startOffset, int delta) argument
580 int startOffset = node == startContainer ? range->startOffset(ec) : 0; local
586 setMarkersActive(Node* node, unsigned startOffset, unsigned endOffset, bool active) argument
655 unsigned startOffset = node == startContainer ? range->startOffset() : 0; local
[all...]
H A DDocumentMarkerController.h50 void copyMarkers(Node* srcNode, unsigned startOffset, int length, Node* dstNode, int delta);
58 void removeMarkers(Node*, unsigned startOffset, int length, DocumentMarker::MarkerTypes = DocumentMarker::AllMarkers(), RemovePartiallyOverlappingMarkerOrNot = DoNotRemovePartiallyOverlappingMarker);
65 void shiftMarkers(Node*, unsigned startOffset, int delta);
67 void setMarkersActive(Node*, unsigned startOffset, unsigned endOffset, bool);
H A DDocumentMarker.h83 unsigned startOffset; member in struct:WebCore::DocumentMarker
90 return type == o.type && startOffset == o.startOffset && endOffset == o.endOffset;
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGTextPath.cpp65 float RenderSVGTextPath::startOffset() const function in class:WebCore::RenderSVGTextPath
67 return static_cast<SVGTextPathElement*>(node())->startOffset().valueAsPercentage();
H A DRenderSVGTextPath.h34 float startOffset() const;
/external/webkit/Source/WebCore/svg/
H A DSVGTextPathElement.idl40 readonly attribute SVGAnimatedLength startOffset;
/external/webkit/Source/JavaScriptCore/runtime/
H A DRegExp.cpp133 int RegExp::match(const UString& s, int startOffset, Vector<int, 32>* ovector) argument
135 if (startOffset < 0)
136 startOffset = 0;
142 if (static_cast<unsigned>(startOffset) > s.length() || s.isNull())
167 result = Yarr::execute(m_representation->m_regExpJITCode, s.characters(), startOffset, s.length(), offsetVector);
169 matchCompareWithInterpreter(s, startOffset, offsetVector, result);
173 result = Yarr::interpret(m_representation->m_regExpBytecode.get(), s.characters(), startOffset, s.length(), offsetVector);
189 void RegExp::matchCompareWithInterpreter(const UString& s, int startOffset, int* offsetVector, int jitResult) argument
204 interpreterResult = Yarr::interpret(m_representation->m_regExpBytecode.get(), s.characters(), startOffset, s.length(), interpreterOffsetVector);
216 unsigned segmentLen = s.length() - static_cast<unsigned>(startOffset);
[all...]
H A DRegExp.h52 int match(const UString&, int startOffset, Vector<int, 32>* ovector = 0);
71 void matchCompareWithInterpreter(const UString&, int startOffset, int* offsetVector, int jitResult);
H A DRegExpConstructor.h73 void performMatch(RegExp*, const UString&, int startOffset, int& position, int& length, int** ovector = 0);
112 ALWAYS_INLINE void RegExpConstructor::performMatch(RegExp* r, const UString& s, int startOffset, int& position, int& length, int** ovector) argument
114 position = r->match(s, startOffset, &d->tempOvector());
/external/webkit/Source/WebCore/rendering/
H A DRenderTextFragment.cpp31 RenderTextFragment::RenderTextFragment(Node* node, StringImpl* str, int startOffset, int length) argument
32 : RenderText(node, str ? str->substring(startOffset, length) : 0)
33 , m_start(startOffset)
/external/webkit/Source/WebKit/mac/WebView/
H A DWebHTMLRepresentation.h62 - (NSAttributedString *)attributedStringFrom:(DOMNode *)startNode startOffset:(int)startOffset to:(DOMNode *)endNode endOffset:(int)endOffset;
/external/webkit/Source/WebKit/gtk/tests/
H A Dtestatk.c83 gint startOffset; local
85 char* text = fn(textObject, offset, boundary, &startOffset, &endOffset);
87 g_assert_cmpint(startOffset, ==, startOffsetResult);
979 gint startOffset; local
981 AtkAttributeSet* set1 = atk_text_get_run_attributes(childText, 0, &startOffset, &endOffset);
982 g_assert_cmpint(startOffset, ==, 0);
986 AtkAttributeSet* set2 = atk_text_get_run_attributes(childText, 15, &startOffset, &endOffset);
987 g_assert_cmpint(startOffset, ==, 12);
991 AtkAttributeSet* set3 = atk_text_get_run_attributes(childText, 17, &startOffset, &endOffset);
992 g_assert_cmpint(startOffset,
1105 gint startOffset; local
1324 gint startOffset; local
1399 gint startOffset; local
[all...]
/external/proguard/src/proguard/optimize/evaluation/
H A DPartialEvaluator.java284 public boolean isTraced(int startOffset, int endOffset) argument
286 for (int index = startOffset; index < endOffset; index++)
500 int startOffset)
504 startOffset));
513 int startOffset)
517 startOffset));
530 int startOffset,
538 startOffset);
543 startOffset,
557 int startOffset)
498 pushCallingInstructionBlock(TracedVariables variables, TracedStack stack, int startOffset) argument
511 pushInstructionBlock(TracedVariables variables, TracedStack stack, int startOffset) argument
525 evaluateInstructionBlockAndExceptionHandlers(Clazz clazz, Method method, CodeAttribute codeAttribute, TracedVariables variables, TracedStack stack, int startOffset, int endOffset) argument
552 evaluateInstructionBlock(Clazz clazz, Method method, CodeAttribute codeAttribute, TracedVariables variables, TracedStack stack, int startOffset) argument
591 evaluateSingleInstructionBlock(Clazz clazz, Method method, CodeAttribute codeAttribute, TracedVariables variables, TracedStack stack, int startOffset) argument
982 evaluateExceptionHandlers(Clazz clazz, Method method, CodeAttribute codeAttribute, int startOffset, int endOffset) argument
1189 generalizeVariables(int startOffset, int endOffset, boolean includeAfterLastInstruction, TracedVariables generalizedVariables) argument
1257 private int startOffset; field in class:PartialEvaluator.MyInstructionBlock
1260 MyInstructionBlock(TracedVariables variables, TracedStack stack, int startOffset) argument
[all...]
/external/webkit/LayoutTests/fast/dom/Selection/script-tests/
H A DgetRangeAt.js25 debug("startOffset: " + range.startOffset);

Completed in 1116 milliseconds

123456