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

123456

/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) { }
38 unsigned startOffset; member in struct:WebCore::CompositionUnderline
H A DPlainTextRange.cpp110 textRunRange->setEnd(range->startContainer(), range->startOffset(), ASSERT_NO_EXCEPTION);
124 resultRange->setStart(textRunRange->startContainer(), offset + textRunRange->startOffset(), IGNORE_EXCEPTION);
127 resultRange->setStart(textRunRange->startContainer(), textRunRange->startOffset(), IGNORE_EXCEPTION);
136 resultRange->setEnd(textRunRange->startContainer(), offset + textRunRange->startOffset(), IGNORE_EXCEPTION);
139 resultRange->setEnd(textRunRange->startContainer(), textRunRange->startOffset(), IGNORE_EXCEPTION);
174 RefPtr<Range> testRange = Range::create(scope.document(), const_cast<Node*>(&scope), 0, range.startContainer(), range.startOffset());
/external/chromium_org/third_party/WebKit/public/web/
H A DWebCompositionUnderline.h42 : startOffset(0)
48 : startOffset(s)
53 unsigned startOffset; member in struct:blink::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/chromium_org/content/browser/accessibility/
H A Dbrowser_accessibility_delegate_mac.h19 startOffset:(int32)startOffset
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentMarker.cpp108 DocumentMarker::DocumentMarker(MarkerType type, unsigned startOffset, unsigned endOffset) argument
110 , m_startOffset(startOffset)
116 DocumentMarker::DocumentMarker(MarkerType type, unsigned startOffset, unsigned endOffset, const String& description) argument
118 , m_startOffset(startOffset)
125 DocumentMarker::DocumentMarker(MarkerType type, unsigned startOffset, unsigned endOffset, const String& description, uint32_t hash) argument
127 , m_startOffset(startOffset)
134 DocumentMarker::DocumentMarker(unsigned startOffset, unsigned endOffset, bool activeMatch) argument
136 , m_startOffset(startOffset)
143 DocumentMarker::DocumentMarker(MarkerType type, unsigned startOffset, unsigned endOffset, PassRefPtr<DocumentMarkerDetails> details) argument
145 , m_startOffset(startOffset)
[all...]
H A DDocumentMarker.h97 DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset);
98 DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset, const String& description);
99 DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset, const String& description, uint32_t hash);
100 DocumentMarker(unsigned startOffset, unsigned endOffset, bool activeMatch);
101 DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset, PassRefPtr<DocumentMarkerDetails>);
104 unsigned startOffset() const { return m_startOffset; } function in class:WebCore::DocumentMarker
123 return type() == o.type() && startOffset() == o.startOffset() && endOffset() == o.endOffset();
H A DDocumentMarkerController.cpp89 addMarker(textPiece->startContainer(), DocumentMarker(type, textPiece->startOffset(), textPiece->endOffset(), description, hash));
98 addMarker(textPiece->startContainer(), DocumentMarker(type, textPiece->startOffset(), textPiece->endOffset(), description));
107 addMarker(textPiece->startContainer(), DocumentMarker(type, textPiece->startOffset(), textPiece->endOffset()));
112 void DocumentMarkerController::addMarkerToNode(Node* node, unsigned startOffset, unsigned length, DocumentMarker::MarkerType type) argument
114 addMarker(node, DocumentMarker(type, startOffset, startOffset + length));
117 void DocumentMarkerController::addMarkerToNode(Node* node, unsigned startOffset, unsigned length, DocumentMarker::MarkerType type, PassRefPtr<DocumentMarkerDetails> details) argument
119 addMarker(node, DocumentMarker(type, startOffset, startOffset + length, details));
128 unsigned startOffset local
156 int startOffset = textPiece->startOffset(); local
167 startsAfter(const DocumentMarker& marker, size_t startOffset) argument
172 endsBefore(size_t startOffset, const DocumentMarker& rhv) argument
187 doesNotInclude(const DocumentMarker& marker, size_t startOffset) argument
248 copyMarkers(Node* srcNode, unsigned startOffset, int length, Node* dstNode, int delta) argument
293 removeMarkers(Node* node, unsigned startOffset, int length, DocumentMarker::MarkerTypes markerTypes, RemovePartiallyOverlappingMarkerOrNot shouldRemovePartiallyOverlappingMarker) argument
610 shiftMarkers(Node* node, unsigned startOffset, int delta) argument
653 int startOffset = node == startContainer ? range->startOffset() : 0; local
659 setMarkersActive(Node* node, unsigned startOffset, unsigned endOffset, bool active) argument
[all...]
H A DDocumentMarkerController.h55 void addMarkerToNode(Node*, unsigned startOffset, unsigned length, DocumentMarker::MarkerType);
56 void addMarkerToNode(Node*, unsigned startOffset, unsigned length, DocumentMarker::MarkerType, PassRefPtr<DocumentMarkerDetails>);
59 void copyMarkers(Node* srcNode, unsigned startOffset, int length, Node* dstNode, int delta);
68 void removeMarkers(Node*, unsigned startOffset, int length, DocumentMarker::MarkerTypes = DocumentMarker::AllMarkers(), RemovePartiallyOverlappingMarkerOrNot = DoNotRemovePartiallyOverlappingMarker);
74 void shiftMarkers(Node*, unsigned startOffset, int delta);
76 void setMarkersActive(Node*, unsigned startOffset, unsigned endOffset, bool);
/external/lzma/C/
H A DXzIn.c141 static SRes Xz_ReadBackward(CXzStream *p, ILookInStream *stream, Int64 *startOffset, ISzAlloc *alloc) argument
146 if ((*startOffset & 3) != 0 || *startOffset < XZ_STREAM_FOOTER_SIZE)
148 *startOffset = -XZ_STREAM_FOOTER_SIZE;
149 RINOK(SeekFromCur(stream, startOffset));
156 *startOffset += XZ_STREAM_FOOTER_SIZE;
163 if (*startOffset < XZ_STREAM_FOOTER_SIZE || i > (1 << 16))
165 processedSize = (*startOffset > TEMP_BUF_SIZE) ? TEMP_BUF_SIZE : (size_t)*startOffset;
167 *startOffset
274 Xzs_ReadBackward(CXzs *p, ILookInStream *stream, Int64 *startOffset, ICompressProgress *progress, ISzAlloc *alloc) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGTextPathElement.idl37 readonly attribute SVGAnimatedLength startOffset;
/external/proguard/src/proguard/classfile/attribute/
H A DExceptionInfo.java82 public boolean isApplicable(int startOffset, int endOffset) argument
85 u2endPC > startOffset;
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGTextPath.h33 float startOffset() const;
H A DRenderSVGTextPath.cpp57 float RenderSVGTextPath::startOffset() const function in class:WebCore::RenderSVGTextPath
/external/chromium_org/third_party/WebKit/Source/web/
H A DCompositionUnderlineBuilder.h47 : WebCore::CompositionUnderline(u.startOffset, u.endOffset,
/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/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAnimation.java24 private long startOffset; field in class:ShadowAnimation
98 public void setStartOffset(long startOffset) { argument
99 this.startOffset = startOffset;
104 return startOffset;
/external/chromium_org/third_party/icu/source/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/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/chromium_org/third_party/WebKit/Source/core/animation/
H A DTimedItem.cpp88 const double startOffset = multiplyZeroAlwaysGivesZero(m_specified.iterationStart, iterationDuration); local
89 ASSERT(startOffset >= 0);
90 const double scaledActiveTime = calculateScaledActiveTime(activeDuration, activeTime, startOffset, m_specified);
91 const double iterationTime = calculateIterationTime(iterationDuration, repeatedDuration, scaledActiveTime, startOffset, m_specified);
110 const double startOffset = m_specified.iterationStart * localIterationDuration;
111 ASSERT(startOffset >= 0);
112 const double scaledActiveTime = calculateScaledActiveTime(localActiveDuration, localActiveTime, startOffset, m_specified);
113 const double iterationTime = calculateIterationTime(localIterationDuration, localRepeatedDuration, scaledActiveTime, startOffset, m_specified);
/external/chromium_org/tools/perf/page_sets/mse_cases/
H A Dstartup_test.js30 testParams.startOffset = 0;
154 function BufferAppender(mimetype, url, id, startOffset, appendSize) {
158 this.startOffset = startOffset;
167 this.xhr.setRequestHeader('Range', 'bytes=' + this.startOffset + '-' +
168 (this.startOffset + this.appendSize - 1));
227 function StreamAppender(mimetype, url, id, startOffset, appendSize) {
231 this.startOffset = startOffset;
243 this.xhr.setRequestHeader('Range', 'bytes=' + this.startOffset
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTextFragment.cpp32 RenderTextFragment::RenderTextFragment(Node* node, StringImpl* str, int startOffset, int length) argument
33 : RenderText(node, str ? str->substring(startOffset, length) : PassRefPtr<StringImpl>(0))
34 , m_start(startOffset)
/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...]

Completed in 671 milliseconds

123456