Searched defs:startOffset (Results 1 - 25 of 92) sorted by relevance

1234

/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
H A DWordMeasurement.h39 , startOffset(0)
46 int startOffset; member in class:blink::WordMeasurement
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DCompositionUnderline.h35 : startOffset(0)
42 : startOffset(s)
48 unsigned startOffset; member in struct:blink::CompositionUnderline
H A DCompositionUnderlineRangeFilterTest.cpp32 int startOffset = toks[0].toInt(); local
34 ASSERT_LE(startOffset, endOffset);
37 underlines->append(CompositionUnderline(startOffset, endOffset, Color(i, 0, 0), false, 0));
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGTextPath.cpp72 float RenderSVGTextPath::startOffset() const function in class:blink::RenderSVGTextPath
74 return toSVGTextPathElement(node())->startOffset()->currentValue()->valueAsPercentage();
/external/chromium_org/third_party/WebKit/public/web/
H A DWebCompositionUnderline.h42 : startOffset(0)
49 : startOffset(s)
57 return startOffset != other.startOffset ? startOffset < other.startOffset : endOffset < other.endOffset;
62 unsigned startOffset; member in struct:blink::WebCompositionUnderline
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
H A DIndexDataManager.h42 unsigned int startOffset; // In bytes member in struct:rx::TranslatedIndexData
/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/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/third_party/WebKit/Source/platform/text/
H A DTextRun.h153 TextRun subRun(unsigned startOffset, unsigned length) const argument
155 ASSERT(startOffset < m_len);
160 result.setText(data8(startOffset), length);
163 result.setText(data16(startOffset), length);
/external/proguard/src/proguard/optimize/peephole/
H A DUnreachableExceptionRemover.java113 int startOffset,
119 int offset = startOffset;
110 mayThrowExceptions(Clazz clazz, Method method, CodeAttribute codeAttribute, int startOffset, int endOffset) argument
/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/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGTextPathElement.h60 SVGAnimatedLength* startOffset() const { return m_startOffset.get(); } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebRange.cpp62 int WebRange::startOffset() const function in class:blink::WebRange
64 return m_private->startOffset();
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
H A DVariableSizeListIterator.java44 private final int startOffset; field in class:VariableSizeListIterator
50 this.startOffset = offset;
88 reader.setOffset(startOffset);
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimationNode.cpp118 const double startOffset = multiplyZeroAlwaysGivesZero(m_timing.iterationStart, iterationDuration); local
119 ASSERT(startOffset >= 0);
120 const double scaledActiveTime = calculateScaledActiveTime(activeDuration, activeTime, startOffset, m_timing);
121 const double iterationTime = calculateIterationTime(iterationDuration, repeatedDuration(), scaledActiveTime, startOffset, m_timing);
140 const double startOffset = m_timing.iterationStart * localIterationDuration;
141 ASSERT(startOffset >= 0);
142 const double scaledActiveTime = calculateScaledActiveTime(localActiveDuration, localActiveTime, startOffset, m_timing);
143 const double iterationTime = calculateIterationTime(localIterationDuration, localRepeatedDuration, scaledActiveTime, startOffset, m_timing);
H A DTimingCalculations.h102 static inline double calculateScaledActiveTime(double activeDuration, double activeTime, double startOffset, const Timing& specified) argument
105 ASSERT(startOffset >= 0);
111 return multiplyZeroAlwaysGivesZero(specified.playbackRate < 0 ? activeTime - activeDuration : activeTime, specified.playbackRate) + startOffset;
120 static inline double calculateIterationTime(double iterationDuration, double repeatedDuration, double scaledActiveTime, double startOffset, const Timing& specified) argument
129 ASSERT(scaledActiveTime <= repeatedDuration + startOffset);
132 || (scaledActiveTime - startOffset == repeatedDuration && specified.iterationCount && endsOnIterationBoundary(specified.iterationCount, specified.iterationStart)))
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentMarker.cpp108 DocumentMarker::DocumentMarker(MarkerType type, unsigned startOffset, unsigned endOffset, const String& description, uint32_t hash) argument
110 , m_startOffset(startOffset)
117 DocumentMarker::DocumentMarker(unsigned startOffset, unsigned endOffset, bool activeMatch) argument
119 , m_startOffset(startOffset)
126 DocumentMarker::DocumentMarker(MarkerType type, unsigned startOffset, unsigned endOffset, PassRefPtrWillBeRawPtr<DocumentMarkerDetails> details) argument
128 , m_startOffset(startOffset)
137 , m_startOffset(marker.startOffset())
H A DRange.h54 static PassRefPtrWillBeRawPtr<Range> create(Document&, Node* startContainer, int startOffset, Node* endContainer, int endOffset);
60 int startOffset() const { return m_start.offset(); } function in class:blink::FINAL
156 Range(Document&, Node* startContainer, int startOffset, Node* endContainer, int endOffset);
166 static PassRefPtrWillBeRawPtr<Node> processContentsBetweenOffsets(ActionType, PassRefPtrWillBeRawPtr<DocumentFragment>, Node*, unsigned startOffset, unsigned endOffset, ExceptionState&);
/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>(nullptr))
34 , m_start(startOffset)
/external/chromium_org/third_party/WebKit/Source/platform/animation/
H A DTimingFunction.cpp149 double startOffset = 0; local
152 startOffset = 1;
155 startOffset = 0.5;
158 startOffset = 0;
164 return clampTo(floor((m_steps * fraction) + startOffset) / m_steps, 0.0, 1.0);
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DTextFinderTest.cpp34 static WebFloatRect findInPageRect(Node* startContainer, int startOffset, Node* endContainer, int endOffset);
61 WebFloatRect TextFinderTest::findInPageRect(Node* startContainer, int startOffset, Node* endContainer, int endOffset) argument
63 RefPtrWillBeRawPtr<Range> range = Range::create(startContainer->document(), startContainer, startOffset, endContainer, endOffset);
82 EXPECT_EQ(4, activeMatch->startOffset());
91 EXPECT_EQ(14, activeMatch->startOffset());
100 EXPECT_EQ(4, activeMatch->startOffset());
113 EXPECT_EQ(14, activeMatch->startOffset());
122 EXPECT_EQ(4, activeMatch->startOffset());
131 EXPECT_EQ(14, activeMatch->startOffset());
171 EXPECT_EQ(0, activeMatch->startOffset());
[all...]
/external/lldb/tools/debugserver/source/
H A DDNBDataRef.cpp325 uint32_t startOffset,
339 for (offset = startOffset, count = 0; ValidOffset(offset) && offset < endOffset; ++count)
348 str_offset += snprintf(str, sizeof(str), "0x%8.8llx:", (uint64_t)(offsetBase + (offset - startOffset)));
323 Dump( uint32_t startOffset, uint32_t endOffset, uint64_t offsetBase, DNBDataRef::Type type, uint32_t numPerLine, const char *format ) argument

Completed in 532 milliseconds

1234