Searched refs:CopyInto (Results 1 - 25 of 41) sorted by relevance

12

/haiku/src/tests/kits/support/bstring/
H A DStringSubCopyTest.cpp23 // CopyInto(BString&, int32, int32)
27 string2->CopyInto(*string1, 4, 30);
32 // CopyInto(const char*, int32, int32)
37 string1->CopyInto(tmp, 0, 4);
/haiku/src/add-ons/print/drivers/postscript/
H A DPPDParser.cpp73 fContent.CopyInto(line, pos, next - pos);
77 line.CopyInto(result, pattern.Length(),
/haiku/src/apps/mediaplayer/playlist/
H A DPlaylistFileReader.cpp159 line.CopyInto(lineType, 0, trackIndex);
160 line.CopyInto(trackNumber, trackIndex, equalIndex - trackIndex);
162 line.CopyInto(lineType, 0, equalIndex);
167 line.CopyInto(lineContent, equalIndex + 1, line.Length() - (equalIndex + 1));
/haiku/src/kits/debugger/debug_info/loading_state_handlers/
H A DDwarfLoadingStateHandler.cpp194 debugFileName.CopyInto(fileName, 0, endIndex);
200 debugFileName.CopyInto(packageName, startIndex, endIndex - startIndex);
206 debugFileName.CopyInto(packageVersion, startIndex,
/haiku/src/bin/
H A Droster.cpp52 name.CopyInto(begin, 0, beginLength);
53 name.CopyInto(end, name.Length() - endLength, endLength);
H A Durlwrapper.cpp109 contents.CopyInto(line, 0, cr);
158 contents.CopyInto(line, 0, cr);
/haiku/src/kits/network/libnetservices/
H A DHttpForm.cpp626 formString.CopyInto(name, *index, firstEqual - *index);
627 formString.CopyInto(value, firstEqual + 1,
630 formString.CopyInto(value, *index,
636 formString.CopyInto(name, *index, firstEqual - *index);
637 formString.CopyInto(value, firstEqual + 1,
640 formString.CopyInto(value, *index, firstAmpersand - *index);
H A DHttpAuthentication.cpp152 wwwAuthenticate.CopyInto(authRequired, 0, wwwAuthenticate.Length());
154 wwwAuthenticate.CopyInto(authRequired, 0, firstSpace);
155 wwwAuthenticate.CopyInto(additionalData, firstSpace + 1,
H A DNetworkCookie.cpp790 cookieString.CopyInto(name, first, last - first + 1);
795 cookieString.CopyInto(value, first, last - first + 1);
825 cookieString.CopyInto(attribute, first, last - first + 1);
837 cookieString.CopyInto(value, first, last - first + 1);
/haiku/src/servers/launch/
H A DBaseJob.cpp270 line.CopyInto(variable, 7, separator - 7);
273 line.CopyInto(value, separator + 2, line.Length() - separator - 3);
/haiku/src/apps/installer/
H A DUnzipEngine.cpp314 line.CopyInto(itemPath, 13, pos - 13);
316 line.CopyInto(itemPath, 13, line.CountChars() - 14);
/haiku/src/apps/haikudepot/model/
H A DPackageIconTarRepository.cpp89 fileName.CopyInto(packageName, 5, secondSlashIdx - 5);
90 fileName.CopyInto(leafName, secondSlashIdx + 1,
/haiku/src/apps/mail/
H A DPeople.cpp63 groupString.CopyInto(group, first, end - first);
/haiku/src/add-ons/input_server/devices/tablet/
H A DTabletInputDevice.cpp253 string.CopyInto(name, slash + 1, string.Length() - slash);
257 string.CopyInto(name, previousSlash + 1, slash - previousSlash - 1);
/haiku/src/preferences/mail/
H A DAutoConfig.cpp93 emailS.CopyInto(provider, at + 1, emailS.Length() - at);
/haiku/src/kits/network/libnetapi/
H A DNetworkAddressResolver.cpp29 host.CopyInto(port, separator + 1, -1);
/haiku/src/apps/debugger/user_interface/cli/
H A DCommandLineUserInterface.cpp355 name.CopyInto(nextName, startIndex, spaceIndex - startIndex);
/haiku/src/kits/mail/
H A DMailComponent.cpp221 string.CopyInto(sub_cat, i, end - i);
240 sub_cat.CopyInto(end_piece, first_equal + 1, sub_cat.Length() - first_equal - 1);
/haiku/src/add-ons/input_server/devices/mouse/
H A DMouseInputDevice.cpp311 string.CopyInto(deviceName, slash + 1, string.Length() - slash);
317 string.CopyInto(name, previousSlash + 1, slash - previousSlash - 1);
/haiku/headers/os/support/
H A DString.h77 BString& CopyInto(BString& into, int32 fromOffset,
79 void CopyInto(char* into, int32 fromOffset,
/haiku/src/add-ons/input_server/devices/keyboard/
H A DKeyboardInputDevice.cpp106 string.CopyInto(name, slash + 1, string.Length() - slash);
110 string.CopyInto(name, previousSlash + 1, slash - previousSlash - 1);
/haiku/src/apps/mediaplayer/interface/
H A DSubtitleBitmap.cpp309 string.CopyInto(subString, pos, nextPos - pos);
/haiku/src/add-ons/screen_savers/message/
H A DMessage.cpp212 message->CopyInto(*origMessage, 0, message->Length());
/haiku/src/apps/aboutsystem/
H A DAboutSystem.cpp1755 haikuLicense.CopyInto(part, 0, licensePart1);
1760 haikuLicense.CopyInto(part, licensePart1 + 1, licensePart2 - 1
1766 haikuLicense.CopyInto(part, licensePart2 + 1, licensePart3 - 1
1772 haikuLicense.CopyInto(part, licensePart3 + 1, licensePart4 - 1
1778 haikuLicense.CopyInto(part, licensePart4 + 1, haikuLicense.Length() - 1
/haiku/src/preferences/backgrounds/
H A DBackgroundImage.cpp575 fName.CopyInto(extension, ++offset, -1);

Completed in 130 milliseconds

12