Searched defs:copy (Results 26 - 50 of 84) sorted by relevance

1234

/frameworks/base/libs/hwui/
H A DGradientCache.h6 * You may obtain a copy of the License at
42 copy(colors, positions, count);
46 copy(entry.colors.get(), entry.positions.get(), entry.count);
51 copy(entry.colors.get(), entry.positions.get(), entry.count);
74 void copy(uint32_t* colors, float* positions, uint32_t count) { function in struct:android::uirenderer::GradientCacheEntry
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/services/
H A DFileOperations.java6 * You may obtain a copy of the License at
76 return FileOperations.copy(activity, srcDocs, stack);
97 return FileOperations.copy(activity, srcDocs, stack);
119 public static String copy( method in class:FileOperations
122 if (DEBUG) Log.d(TAG, "Initiating 'copy' operation id: " + jobId);
139 * @param srcDocs A list of src files to copy.
208 * @param srcDocs A list of src files to copy.
/frameworks/base/telephony/java/android/telephony/
H A DCellIdentityCdma.java6 * You may obtain a copy of the License at
93 CellIdentityCdma copy() { method in class:CellIdentityCdma
H A DCellIdentityGsm.java6 * You may obtain a copy of the License at
99 CellIdentityGsm copy() { method in class:CellIdentityGsm
H A DCellIdentityLte.java6 * You may obtain a copy of the License at
101 CellIdentityLte copy() { method in class:CellIdentityLte
H A DCellIdentityWcdma.java6 * You may obtain a copy of the License at
100 CellIdentityWcdma copy() { method in class:CellIdentityWcdma
H A DCellSignalStrengthGsm.java6 * You may obtain a copy of the License at
110 public CellSignalStrengthGsm copy() { method in class:CellSignalStrengthGsm
H A DCellSignalStrengthWcdma.java6 * You may obtain a copy of the License at
92 public CellSignalStrengthWcdma copy() { method in class:CellSignalStrengthWcdma
H A DCellSignalStrengthCdma.java6 * You may obtain a copy of the License at
101 public CellSignalStrengthCdma copy() { method in class:CellSignalStrengthCdma
H A DCellSignalStrengthLte.java6 * You may obtain a copy of the License at
121 public CellSignalStrengthLte copy() { method in class:CellSignalStrengthLte
/frameworks/base/tools/fonts/
H A Dfontchain_lint.py4 import copy namespace
112 emoji_map = copy.copy(get_best_cmap(font))
/frameworks/base/tools/preload/
H A DMemoryUsage.java6 * You may obtain a copy of the License at
240 copy(err, System.err);
274 private static void copy(InputStream in, OutputStream out) { method in class:MemoryUsage
/frameworks/native/libs/input/tests/
H A DInputEvent_test.cpp6 * You may obtain a copy of the License at
450 MotionEvent copy; local
451 copy.copyFrom(&event, true /*keepHistory*/);
460 MotionEvent copy; local
461 copy.copyFrom(&event, false /*keepHistory*/);
463 ASSERT_EQ(event.getPointerCount(), copy.getPointerCount());
464 ASSERT_EQ(0U, copy.getHistorySize());
466 ASSERT_EQ(event.getPointerId(0), copy.getPointerId(0));
467 ASSERT_EQ(event.getPointerId(1), copy.getPointerId(1));
469 ASSERT_EQ(event.getEventTime(), copy
[all...]
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DEncodedStringValue.java7 * You may obtain a copy of the License at
264 public static EncodedStringValue copy(EncodedStringValue value) { method in class:EncodedStringValue
/frameworks/av/cmds/stagefright/
H A DSimplePlayer.cpp6 * You may obtain a copy of the License at
617 size_t copy = info->mSize; local
618 if (copy > numBytesAvailableToWrite) {
619 copy = numBytesAvailableToWrite;
622 if (copy == 0) {
629 buffer->base() + info->mOffset, copy);
631 CHECK_EQ(nbytes, (ssize_t)copy);
H A Dstream.cpp6 * You may obtain a copy of the License at
227 size_t copy = size; local
228 if (copy + mCurrentBufferOffset > mem->size()) {
229 copy = mem->size() - mCurrentBufferOffset;
232 memcpy((uint8_t *)mem->pointer() + mCurrentBufferOffset, data, copy);
233 mCurrentBufferOffset += copy;
240 data = (const uint8_t *)data + copy;
241 size -= copy;
243 totalWritten += copy;
/frameworks/av/media/libnbaio/
H A DNBLog.cpp6 * You may obtain a copy of the License at
188 // The Entry could have a method copyTo(ptr, offset, size) to optimize the copy.
305 // make a copy to avoid race condition with writer
306 uint8_t *copy = new uint8_t[avail]; local
307 // copy first part of circular buffer up until the wraparound point
308 memcpy(copy, &mShared->mBuffer[front], read);
311 // copy second part of circular buffer starting at beginning
312 memcpy(&copy[read], mShared->mBuffer, remaining);
324 length = copy[i - 1];
325 if (length + 3 > i || copy[
[all...]
/frameworks/av/media/libstagefright/
H A DAudioPlayer.cpp6 * You may obtain a copy of the License at
585 size_t copy = size_remaining; local
586 if (copy > mInputBuffer->range_length()) {
587 copy = mInputBuffer->range_length();
592 copy);
594 mInputBuffer->set_range(mInputBuffer->range_offset() + copy,
595 mInputBuffer->range_length() - copy);
597 size_done += copy;
598 size_remaining -= copy;
/frameworks/av/media/libstagefright/codecs/aacenc/
H A DAACEncoder.cpp6 * You may obtain a copy of the License at
269 size_t copy = (nSamples - mNumInputSamples) * sizeof(int16_t); local
271 if (copy > mInputBuffer->range_length()) {
272 copy = mInputBuffer->range_length();
278 copy);
281 mInputBuffer->range_offset() + copy,
282 mInputBuffer->range_length() - copy);
288 mNumInputSamples += copy / sizeof(int16_t);
H A DSoftAACEncoder.cpp6 * You may obtain a copy of the License at
465 size_t copy = numBytesPerInputFrame - mInputSize; local
466 if (copy > inHeader->nFilledLen) {
467 copy = inHeader->nFilledLen;
478 memcpy((uint8_t *)mInputFrame + mInputSize, inData, copy);
479 mInputSize += copy;
481 inHeader->nOffset += copy;
482 inHeader->nFilledLen -= copy;
487 (copy * 1000000ll / mSampleRate)
H A DSoftAACEncoder2.cpp6 * You may obtain a copy of the License at
553 size_t copy = numBytesPerInputFrame - mInputSize; local
554 if (copy > inHeader->nFilledLen) {
555 copy = inHeader->nFilledLen;
566 memcpy((uint8_t *)mInputFrame + mInputSize, inData, copy);
567 mInputSize += copy;
569 inHeader->nOffset += copy;
570 inHeader->nFilledLen -= copy;
575 (copy * 1000000ll / mSampleRate)
/frameworks/av/media/libstagefright/codecs/amrwbenc/
H A DSoftAMRWBEncoder.cpp6 * You may obtain a copy of the License at
376 size_t copy = numBytesPerInputFrame - mInputSize; local
377 if (copy > inHeader->nFilledLen) {
378 copy = inHeader->nFilledLen;
385 memcpy((uint8_t *)mInputFrame + mInputSize, inData, copy);
386 mInputSize += copy;
388 inHeader->nOffset += copy;
389 inHeader->nFilledLen -= copy;
394 (copy * 1000000ll / kSampleRate) / sizeof(int16_t);
/frameworks/base/core/java/android/content/res/
H A DGradientColor.java6 * You may obtain a copy of the License at
96 // NOTE: they need to be copied in the copy constructor!
127 private GradientColor(GradientColor copy) { argument
128 if (copy != null) {
129 mChangingConfigurations = copy.mChangingConfigurations;
130 mDefaultColor = copy.mDefaultColor;
131 mShader = copy.mShader;
132 mGradientType = copy.mGradientType;
133 mCenterX = copy.mCenterX;
134 mCenterY = copy
[all...]
/frameworks/base/tools/aapt2/util/
H A DUtil.cpp6 * You may obtain a copy of the License at
458 std::unique_ptr<uint8_t[]> copy(const BigBuffer& buffer) { function in namespace:aapt::util
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DAndroidCamera2Settings.java6 * You may obtain a copy of the License at
147 public CameraSettings copy() { method in class:AndroidCamera2Settings

Completed in 311 milliseconds

1234