Symbol: MoveInto
headers/os/support/String.h
161
BString& MoveInto(BString& into, int32 from, int32 length);
headers/os/support/String.h
162
void MoveInto(char* into, int32 from, int32 length);
src/add-ons/print/transports/hp_jetdirect/HPJetDirectTransport.cpp
47
address.MoveInto(fHost, 0, index);
src/apps/codycam/SftpClient.cpp
93
host.MoveInto(port, host.FindFirst(':'), host.Length());
src/apps/cortex/InfoView/InfoView.cpp
488
currentLine->MoveInto(*newLine, i,
src/apps/cortex/InfoView/InfoView.cpp
514
currentLine->MoveInto(*newLine, lastBreak,
src/apps/webpositive/autocompletion/AutoCompleterDefaultImpl.cpp
261
fPreText.MoveInto(fMatchText, choice->MatchPos(), choice->MatchLen());
src/apps/webpositive/autocompletion/AutoCompleterDefaultImpl.cpp
262
fPreText.MoveInto(fPostText, choice->MatchPos(), fPreText.Length());
src/bin/cddb_lookup/cddb_server.cpp
126
output.MoveInto(responseData->category, 0, output.FindFirst(" "));
src/bin/cddb_lookup/cddb_server.cpp
129
output.MoveInto(responseData->cddbID, 0, output.FindFirst(" "));
src/bin/cddb_lookup/cddb_server.cpp
132
output.MoveInto(responseData->artist, 0, output.FindFirst(" / "));
src/bin/cddb_lookup/cddb_server.cpp
135
output.MoveInto(responseData->title, 0, output.FindFirst("\r\n"));
src/bin/cddb_lookup/cddb_server.cpp
185
output.MoveInto(statusCode, 0, 3);
src/bin/cddb_lookup/cddb_server.cpp
205
output.MoveInto(line, 0, output.FindFirst("\r\n"));
src/bin/cddb_lookup/cddb_server.cpp
210
line.MoveInto(prefix, 0, line.FindFirst("="));
src/bin/cddb_lookup/cddb_server.cpp
216
line.MoveInto(artist, 0, line.FindFirst(" / "));
src/bin/cddb_lookup/cddb_server.cpp
245
prefix.MoveInto(index, 6, prefix.Length() - 6);
src/bin/cddb_lookup/cddb_server.cpp
266
line.MoveInto(trackArtist, 0, pos);
src/bin/cddb_lookup/cddb_server.cpp
308
newCddbServer.MoveInto(portString, pos + 1,
src/bin/cddb_lookup/cddb_server.cpp
91
output.MoveInto(statusCode, 0, 3);
src/bin/urlwrapper.cpp
115
line.MoveInto(url, 4, line.Length());
src/bin/urlwrapper.cpp
186
line.MoveInto(url, s, e - s);
src/kits/debugger/user_interface/util/UiUtils.cpp
453
dataString.MoveInto(tempRange, 0, index);
src/kits/network/libnetservices/GopherRequest.cpp
444
line.MoveInto(&type, 0, 1);
src/kits/network/libnetservices/HttpAuthentication.cpp
177
additionalData.MoveInto(value, 0, firstComma);
src/kits/network/libnetservices/HttpAuthentication.cpp
186
value.MoveInto(name, 0, equal);
src/kits/network/libnetservices/HttpAuthentication.cpp
336
tmpString.MoveInto(in, 0, 3);
src/kits/network/libnetservices/HttpAuthentication.cpp
380
tmpString.MoveInto(in, 0, 4);
src/kits/network/libnetservices/NetworkCookieJar.cpp
371
flattenedCookies.MoveInto(tempCookieLine, 0, endOfLine);
src/kits/network/libnetservices/NetworkCookieJar.cpp
383
tempCookieLine.MoveInto(tempString, 0, endOfField);
src/kits/network/libnetservices2/NetServicesMisc.cpp
192
tmpString.MoveInto(in, 0, 3);
src/tests/kits/support/StringRemoveTest.cpp
242
string2.MoveInto(string1, 3, 2);
src/tests/kits/support/StringRemoveTest.cpp
251
string2.MoveInto(string1, 0, 200);
src/tests/kits/support/StringRemoveTest.cpp
261
string1.MoveInto(dest, 3, 2);
src/tests/kits/support/StringRemoveTest.cpp
271
string1.MoveInto(dest, 0, 50);