Home
last modified time | relevance | path

Searched refs:toCopy (Results 1 – 3 of 3) sorted by relevance

/external/icu4c/common/
Dloclikely.cpp312 const int32_t toCopy = in createTagStringWithAlternates() local
322 toCopy); in createTagStringWithAlternates()
324 capacityRemaining -= toCopy; in createTagStringWithAlternates()
343 const int32_t toCopy = in createTagStringWithAlternates() local
349 toCopy); in createTagStringWithAlternates()
/external/webkit/Source/WebCore/platform/network/qt/
DQNetworkReplyHandler.cpp122 const qint64 toCopy = qMin<qint64>(available, element.m_data.size() - m_currentDelta); in readData() local
123 memcpy(destination+copied, element.m_data.data()+m_currentDelta, toCopy); in readData()
124 m_currentDelta += toCopy; in readData()
125 copied += toCopy; in readData()
/external/llvm/examples/ExceptionDemo/
DExceptionDemo.cpp1543 OurCppRunException (const OurCppRunException &toCopy) : in OurCppRunException() argument
1544 std::runtime_error(toCopy) {} in OurCppRunException()
1546 OurCppRunException &operator = (const OurCppRunException &toCopy) { in operator =() argument
1548 std::runtime_error::operator=(toCopy))); in operator =()