HomeSort by relevance Sort by last modified time
    Searched defs:endOffset (Results 1 - 25 of 47) sorted by null

1 2

  /external/proguard/src/proguard/classfile/visitor/
ExceptionRangeFilter.java 38 private final int endOffset;
45 * @param endOffset the end offset of the instruction range.
50 int endOffset,
54 this.endOffset = endOffset;
63 if (exceptionInfo.isApplicable(startOffset, endOffset))
ExceptionHandlerFilter.java 38 private final int endOffset;
45 * @param endOffset the end of the instruction offset range.
50 int endOffset,
54 this.endOffset = endOffset;
65 handlerPC < endOffset)
  /external/webkit/JavaScriptCore/parser/
SourceCode.h 74 int endOffset() const { return m_endChar; }
  /external/webkit/WebCore/dom/
DocumentMarker.h 47 unsigned endOffset;
53 return type == o.type && startOffset == o.startOffset && endOffset == o.endOffset;
Range.h 44 static PassRefPtr<Range> create(PassRefPtr<Document>, PassRefPtr<Node> startContainer, int startOffset, PassRefPtr<Node> endContainer, int endOffset);
52 int endOffset() const { return m_end.offset(); }
57 int endOffset(ExceptionCode&) const;
135 Range(PassRefPtr<Document>, PassRefPtr<Node> startContainer, int startOffset, PassRefPtr<Node> endContainer, int endOffset);
Range.cpp 70 inline Range::Range(PassRefPtr<Document> ownerDocument, PassRefPtr<Node> startContainer, int startOffset, PassRefPtr<Node> endContainer, int endOffset)
86 setEnd(endContainer, endOffset, ec);
90 PassRefPtr<Range> Range::create(PassRefPtr<Document> ownerDocument, PassRefPtr<Node> startContainer, int startOffset, PassRefPtr<Node> endContainer, int endOffset)
92 return adoptRef(new Range(ownerDocument, startContainer, startOffset, endContainer, endOffset));
141 int Range::endOffset(ExceptionCode& ec) const
652 int endOffset = m_end.offset();
653 while (n && i < endOffset) { // delete until end offset
    [all...]
  /external/webkit/WebKit/chromium/src/
WebRange.cpp 64 int WebRange::endOffset() const
66 return m_private->endOffset();
  /external/webkit/JavaScriptCore/runtime/
ExceptionHelpers.cpp 77 int endOffset = 0;
79 int line = codeBlock->expressionRangeForBytecodeOffset(exec, bytecodeOffset, divotPoint, startOffset, endOffset);
83 exception->putWithAttributes(exec, Identifier(exec, expressionEndOffsetPropertyName), jsNumber(exec, divotPoint + endOffset), ReadOnly | DontDelete);
115 int endOffset = 0;
117 int line = codeBlock->expressionRangeForBytecodeOffset(exec, bytecodeOffset, divotPoint, startOffset, endOffset);
118 UString errorMessage = createErrorMessage(exec, codeBlock, line, divotPoint, divotPoint + endOffset, value, makeString("not a valid argument for '", op, "'"));
122 exception->putWithAttributes(exec, Identifier(exec, expressionEndOffsetPropertyName), jsNumber(exec, divotPoint + endOffset), ReadOnly | DontDelete);
129 int endOffset = 0;
131 int line = codeBlock->expressionRangeForBytecodeOffset(exec, bytecodeOffset, divotPoint, startOffset, endOffset);
143 exception->putWithAttributes(exec, Identifier(exec, expressionEndOffsetPropertyName), jsNumber(exec, divotPoint + endOffset), ReadOnly | DontDelete)
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
AttributeListParser.java 47 private int endOffset;
77 this.endOffset = -1;
97 return endOffset;
114 if (endOffset < 0) {
162 endOffset = at;
MemberListParser.java 49 private int endOffset;
80 this.endOffset = -1;
91 return endOffset;
107 if (endOffset < 0) {
238 endOffset = at;
  /external/webkit/WebKitTools/DumpRenderTree/win/
EditingDelegate.cpp 104 int endOffset;
105 if (FAILED(range->endOffset(&endOffset)))
117 _snwprintf(buffer, ARRAYSIZE(buffer), L"range from %ld of %s to %ld of %s", startOffset, dumpPath(startContainer.get()), endOffset, dumpPath(endContainer.get()));
  /dalvik/dx/src/com/android/dx/cf/cst/
ConstantPoolParser.java 58 private int endOffset;
74 this.endOffset = -1;
94 return endOffset;
111 if (endOffset < 0) {
143 int nextOffset = endOffset;
156 observer.parsed(bytes, endOffset, 0, "end constant_pool");
208 endOffset = at;
  /external/opencore/fileformats/mp4/parser/src/
textsamplemodifiers.cpp 164 uint16 endOffset;
189 if (!AtomUtils::read16(buf, endOffset))
198 _pEndCharOffsetVec[i] = endOffset;
  /external/webkit/WebCore/editing/
Editor.h 52 : startOffset(0), endOffset(0), thick(false) { }
54 : startOffset(s), endOffset(e), color(c), thick(t) { }
56 unsigned endOffset;
CompositeEditCommand.cpp 561 int endOffset = node == end.node() ? end.deprecatedEditingOffset() : textNode->length();
562 deleteInsignificantText(textNode, startOffset, endOffset);
    [all...]
SelectionController.cpp     [all...]
htmlediting.cpp     [all...]
markup.cpp 224 str.truncate(range->endOffset(ec));
239 length = range->endOffset(ec);
263 unsigned endOffset = textNode->length();
268 endOffset = range->endOffset(ec);
271 Position end(const_cast<Node*>(node), endOffset);
    [all...]
visible_units.cpp 482 int endOffset = 1;
484 endOffset = 0;
487 endOffset = endTextBox->start();
489 endOffset += endTextBox->len();
492 return VisiblePosition(endNode, endOffset, VP_UPSTREAM_IF_POSSIBLE);
    [all...]
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/asn1/
BerInputStream.java 614 int endOffset = begOffset + length;
622 for (; (offset < endOffset) && (i < type.length); i++) {
650 for (; (offset < endOffset) && (i < type.length); i++) {
684 if (offset != endOffset) {
741 int endOffset = begOffset + length;
746 while (endOffset > offset) {
755 while (endOffset > offset) {
765 if (offset != endOffset) {
  /external/webkit/WebCore/rendering/
RenderTextControl.cpp 294 int endOffset = it.range()->endOffset(ec);
296 return VisiblePosition(endContainer, endOffset, UPSTREAM);
  /external/webkit/JavaScriptCore/interpreter/
Interpreter.cpp 510 int endOffset = 0;
512 int line = codeBlock->expressionRangeForBytecodeOffset(callFrame, bytecodeOffset, divotPoint, startOffset, endOffset);
518 exception->putWithAttributes(callFrame, Identifier(callFrame, expressionEndOffsetPropertyName), jsNumber(callFrame, divotPoint + endOffset), ReadOnly | DontDelete);
    [all...]
  /external/webkit/JavaScriptCore/wtf/
DateMath.cpp 881 double endOffset = calculateDSTOffset(newEnd, utcOffset);
882 if (cache.offset == endOffset) {
888 return endOffset;
891 if (offset == endOffset) {
  /external/webkit/WebCore/platform/text/
BidiResolver.h 283 unsigned endOffset = eor.offset();
285 if (!endOfLine.atEnd() && endOffset >= endOfLine.offset()) {
287 endOffset = endOfLine.offset();
290 if (endOffset >= startOffset)
291 addRun(new Run(startOffset, endOffset + 1, context(), m_direction));
    [all...]
  /dalvik/vm/analysis/
DexOptimize.c 647 off_t depsOffset, auxOffset, endOffset, adjOffset;
692 endOffset = lseek(fd, 0, SEEK_END);
693 auxLength = endOffset - auxOffset;
    [all...]

Completed in 901 milliseconds

1 2