Searched refs:fromPosition (Results 1 - 9 of 9) sorted by relevance

/macosx-10.10.1/xnu-2782.1.97/iokit/IOKit/
H A DIOMemoryCursor.h139 @param fromPosition Starting location of the I/O within a memory descriptor.
148 IOByteCount fromPosition,
212 @param fromPosition Starting location of the I/O within a memory descriptor.
220 IOByteCount fromPosition,
226 return genPhysicalSegments(descriptor, fromPosition, segments,
288 @param fromPosition Starting location of the I/O within a memory descriptor.
296 IOByteCount fromPosition,
302 return genPhysicalSegments(descriptor, fromPosition, segments,
362 @param fromPosition Starting location of the I/O within a memory descriptor.
370 IOByteCount fromPosition,
219 getPhysicalSegments(IOMemoryDescriptor *descriptor, IOByteCount fromPosition, PhysicalSegment *segments, UInt32 maxSegments, UInt32 inMaxTransferSize = 0, IOByteCount *transferSize = 0) argument
295 getPhysicalSegments(IOMemoryDescriptor * descriptor, IOByteCount fromPosition, PhysicalSegment * segments, UInt32 maxSegments, UInt32 inMaxTransferSize = 0, IOByteCount * transferSize = 0) argument
369 getPhysicalSegments(IOMemoryDescriptor * descriptor, IOByteCount fromPosition, PhysicalSegment * segments, UInt32 maxSegments, UInt32 inMaxTransferSize = 0, IOByteCount * transferSize = 0) argument
[all...]
/macosx-10.10.1/xnu-2782.1.97/iokit/Kernel/
H A DIOMemoryCursor.cpp104 IOByteCount fromPosition,
131 while ((seg.location) || (fromPosition < inDescriptorLength))
136 fromPosition, (IOByteCount*)&seg.length);
139 fromPosition += seg.length;
103 genPhysicalSegments(IOMemoryDescriptor *inDescriptor, IOByteCount fromPosition, void * inSegments, UInt32 inMaxSegments, UInt32 inMaxTransferSize, IOByteCount *outTransferSize) argument
/macosx-10.10.1/ICU-531.30/icuSources/layout/
H A DLEGlyphStorage.cpp515 void LEGlyphStorage::moveGlyph(le_int32 fromPosition, le_int32 toPosition, le_uint32 marker ) argument
520 LEGlyphID holdGlyph = getGlyphID(fromPosition,success);
521 le_int32 holdCharIndex = getCharIndex(fromPosition,success);
522 le_uint32 holdAuxData = getAuxData(fromPosition,success);
524 if ( fromPosition < toPosition ) {
525 for ( le_int32 i = fromPosition ; i < toPosition ; i++ ) {
531 for ( le_int32 i = toPosition ; i > fromPosition ; i-- ) {
H A DLEGlyphStorage.h361 * @param fromPosition - position of the glyph to be moved
367 void moveGlyph(le_int32 fromPosition, le_int32 toPosition, le_uint32 marker);
H A DIndicReordering.cpp263 void moveCharacter( le_int32 fromPosition, le_int32 toPosition ) { argument
266 LEUnicode saveChar = fOutChars[fromPosition];
269 saveIndex = fGlyphStorage.getCharIndex(fromPosition,success);
270 saveAuxData = fGlyphStorage.getAuxData(fromPosition,success);
272 if ( fromPosition > toPosition ) {
273 for ( i = fromPosition ; i > toPosition ; i-- ) {
280 for ( i = fromPosition ; i < toPosition ; i++ ) {
308 void removeCharacter( le_int32 fromPosition ) {
313 for ( i = fromPosition ; i < fOutIndex ; i--) {
/macosx-10.10.1/IOATAFamily-253.0.1/
H A DIOATACommand.cpp255 IOATACommand::setPosition (IOByteCount fromPosition) argument
258 _position = fromPosition;
H A DIOATACommand.h120 virtual void setPosition (IOByteCount fromPosition);
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/WebPage/ios/
H A DWebPageIOS.mm1497 VisiblePosition fromPosition = frame.visiblePositionForPoint(frame.view()->rootViewToContents(from));
1500 if (fromPosition.isNotNull() && toPosition.isNotNull()) {
1501 if (fromPosition < toPosition)
1502 range = Range::create(*frame.document(), fromPosition, toPosition);
1504 range = Range::create(*frame.document(), toPosition, fromPosition);
1505 frame.selection().setSelectedRange(range.get(), fromPosition.affinity(), true);
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/ios/
H A DWKContentViewInteraction.mm2025 - (UITextRange *)textRangeFromPosition:(UITextPosition *)fromPosition toPosition:(UITextPosition *)toPosition

Completed in 93 milliseconds