HomeSort by relevance Sort by last modified time
    Searched refs:startRange (Results 1 - 9 of 9) sorted by null

  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
TryListBuilder.java 185 TryRange startRange;
189 startRange = ranges.first;
193 TryRange tryRange = startRange;
218 TryRange startRange = null;
227 startRange = tryRange;
235 startRange = tryRange.split(startAddress);
243 startRange = new TryRange(startAddress, endAddress);
244 tryRange.prepend(startRange);
245 return new Pair<TryRange, TryRange>(startRange, startRange);
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGParserUtilities.cpp 254 unsigned startRange = 0;
265 startRange = (startRange << 4) | toASCIIHexValue(*ptr);
291 range.first = startRange;
297 unsigned endRange = startRange;
304 startRange <<= 4;
312 range.first = startRange;
  /external/webkit/Source/WebCore/editing/
ApplyBlockElementCommand.cpp 89 RefPtr<Range> startRange = TextIterator::rangeFromLocationAndLength(document()->documentElement(), startIndex, 0, true);
91 if (startRange && endRange)
92 setEndingSelection(VisibleSelection(startRange->startPosition(), endRange->startPosition(), DOWNSTREAM));
CompositeEditCommand.cpp 304 RefPtr<Range> startRange = Range::create(document(), firstPositionInNode(document()->documentElement()), endingSelection().start());
305 unsigned startIndex = TextIterator::rangeLength(startRange.get());
    [all...]
ApplyStyleCommand.cpp 258 RefPtr<Range> startRange = Range::create(document(), firstPositionInNode(scope), visibleStart.deepEquivalent().parentAnchoredEquivalent());
260 int startIndex = TextIterator::rangeLength(startRange.get(), true);
290 startRange = TextIterator::rangeFromLocationAndLength(static_cast<Element*>(scope), startIndex, 0, true);
292 if (startRange && endRange)
293 updateStartEnd(startRange->startPosition(), endRange->startPosition());
    [all...]
TextIterator.cpp     [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
FastMath.java 362 * @param startRange the starting range on the segment (use 0)
367 public static float getCatmullRomP1toP2Length(Vector3f p0, Vector3f p1, Vector3f p2, Vector3f p3, float startRange, float endRange, float curveTension) {
370 float middleValue = (startRange + endRange) * 0.5f;
372 if (startRange != 0) {
373 FastMath.interpolateCatmullRom(startRange, curveTension, p0, p1, p2, p3, start);
385 l1 = getCatmullRomP1toP2Length(p0, p1, p2, p3, startRange, middleValue, curveTension);
    [all...]
  /external/zxing/core/
core.jar 
  /external/webkit/Source/WebKit/android/jni/
WebViewCore.cpp     [all...]

Completed in 269 milliseconds