Searched refs:endOffset (Results 26 - 47 of 47) sorted by relevance

12

/macosx-10.10.1/WebKit-7600.1.25/ios/WebCoreSupport/
H A DWebVisiblePosition.mm431 if (marker->startOffset() <= offset && marker->endOffset() >= offset) {
437 RefPtr<Range> range = Range::create(document, node, marker->startOffset(), node, marker->endOffset());
465 if (marker->startOffset() <= offset && marker->endOffset() >= offset) {
466 RefPtr<Range> range = Range::create(document, node, marker->startOffset(), node, marker->endOffset());
H A DWebFrameIOS.mm875 if (resultMarker->endOffset() > (unsigned)lastOffset)
931 if (resultMarker->endOffset() > static_cast<unsigned>(lastOffset))
937 if (resultMarker->endOffset() <= static_cast<unsigned>(lastOffset))
938 return [WebVisiblePosition _wrapVisiblePosition:VisiblePosition(createLegacyEditingPosition(currentNode, resultMarker->endOffset()))];
/macosx-10.10.1/WebKit-7600.1.25/mac/WebView/
H A DWebHTMLRepresentation.mm278 - (NSAttributedString *)attributedStringFrom:(DOMNode *)startNode startOffset:(int)startOffset to:(DOMNode *)endNode endOffset:(int)endOffset
280 return editingAttributedStringFromRange(*Range::create(core(startNode)->document(), core(startNode), startOffset, core(endNode), endOffset));
H A DWebFrame.mm855 Position end = Position(endContainer, [proposedRange endOffset], Position::PositionIsOffsetInAnchor);
1781 RefPtr<Range> range = Range::create(*document, node, marker->startOffset(), node, marker->endOffset());
2034 Position endPos(endContainer, [rangeToReplace endOffset], Position::PositionIsOffsetInAnchor);
/macosx-10.10.1/JavaScriptCore-7600.1.17/interpreter/
H A DStackVisitor.cpp306 void StackVisitor::Frame::retrieveExpressionInfo(int& divot, int& startOffset, int& endOffset, unsigned& line, unsigned& column) argument
309 codeBlock->unlinkedCodeBlock()->expressionRangeForBytecodeOffset(bytecodeOffset(), divot, startOffset, endOffset, line, column); local
H A DInterpreter.h134 void expressionInfo(int& divot, int& startOffset, int& endOffset, unsigned& line, unsigned& column);
H A DInterpreter.cpp523 void StackFrame::expressionInfo(int& divot, int& startOffset, int& endOffset, unsigned& line, unsigned& column) argument
525 codeBlock->expressionRangeForBytecodeOffset(bytecodeOffset, divot, startOffset, endOffset, line, column);
/macosx-10.10.1/hfs-285/fsck_hfs/dfalib/
H A Dfsck_journal.c451 off_t endOffset =jnlSwap->swap64(jhdr.end); local
480 jinfo.end = offset + endOffset;
/macosx-10.10.1/tcl-105/tcl_ext/tdom/tdom/lib/
H A Dtdom.tcl431 set endOffset [expr $offset + $count - 1]
432 return [string range [$node nodeValue] $offset $endOffset]
/macosx-10.10.1/JavaScriptCore-7600.1.17/inspector/agents/
H A DInspectorRuntimeAgent.cpp81 .setEndOffset(tokenLocation.endOffset);
/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DVM.cpp609 int endOffset = 0; local
615 codeBlock->expressionRangeForBytecodeOffset(bytecodeOffset, divotPoint, startOffset, endOffset, line, column);
618 int expressionStop = divotPoint + endOffset;
/macosx-10.10.1/dyld-353.2.1/launch-cache/
H A DMachOLayout.hpp493 uint64_t endOffset = segCmd->fileoff(); local
498 endOffset = sect->offset() + sect->size();
500 uint64_t size = (endOffset - segCmd->fileoff() + 4095) & (-4096);
/macosx-10.10.1/JavaScriptCore-7600.1.17/parser/
H A DLexer.h392 tokenLocation->endOffset = currentOffset();
H A DParser.h540 int lastTokenEnd = m_token.m_location.endOffset;
550 int lastTokenEnd = m_token.m_location.endOffset;
H A DParser.cpp215 m_token.m_location.endOffset = source.startOffset();
1171 *directiveLiteralLength = m_token.m_location.endOffset - m_token.m_location.startOffset;
1293 m_lexer->setOffset(m_token.m_location.endOffset, m_token.m_location.lineStartOffset);
/macosx-10.10.1/JavaScriptCore-7600.1.17/bytecode/
H A DUnlinkedCodeBlock.h273 int startOffset, int endOffset, unsigned line, unsigned column);
465 int& startOffset, int& endOffset, unsigned& line, unsigned& column);
H A DCodeBlock.cpp2564 int endOffset;
2567 expressionRangeForBytecodeOffset(bytecodeOffset, divot, startOffset, endOffset, line, column);
2571 void CodeBlock::expressionRangeForBytecodeOffset(unsigned bytecodeOffset, int& divot, int& startOffset, int& endOffset, unsigned& line, unsigned& column)
2573 m_unlinkedCode->expressionRangeForBytecodeOffset(bytecodeOffset, divot, startOffset, endOffset, line, column);
H A DCodeBlock.h192 int& startOffset, int& endOffset, unsigned& line, unsigned& column);
/macosx-10.10.1/JavaScriptCore-7600.1.17/bytecompiler/
H A DBytecodeGenerator.h297 int endOffset = divotEnd.offset - divot.offset; local
316 m_codeBlock->addExpressionInfo(instructionOffset, divotOffset, startOffset, endOffset, line, column);
/macosx-10.10.1/WebKit2-7600.1.25/Shared/
H A DWebCoreArgumentCoders.cpp1114 encoder << underline.endOffset;
1123 if (!decoder.decode(underline.endOffset))
/macosx-10.10.1/WebKit-7600.1.25/win/
H A DWebView.cpp5625 underlines[i].endOffset = clauses[i + 1];
7038 *length = range->startOffset() + range->endOffset();
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/WebPage/ios/
H A DWebPageIOS.mm1085 return Range::create(rangeA->ownerDocument(), start->startContainer(), start->startOffset(), end->endContainer(), end->endOffset());

Completed in 331 milliseconds

12