/frameworks/minikin/tests/unittest/ |
D | FontTest.cpp | 31 Font copied(font); in TEST() local 32 EXPECT_EQ(font.typeface(), copied.typeface()); in TEST() 33 EXPECT_EQ(font.style(), copied.style()); in TEST() 34 EXPECT_EQ(font.baseFont(), copied.baseFont()); in TEST() 37 Font copied = font; in TEST() local 38 EXPECT_EQ(font.typeface(), copied.typeface()); in TEST() 39 EXPECT_EQ(font.style(), copied.style()); in TEST() 40 EXPECT_EQ(font.baseFont(), copied.baseFont()); in TEST()
|
/frameworks/base/core/tests/coretests/src/android/text/ |
D | SpannedStringNoCopyTest.java | 44 final SpannedString copied = new SpannedString(first); in testCopyConstructor_copyNoCopySpans_SpannableStringInternalImpl() local 45 final Object[] spans = copied.getSpans(0, copied.length(), Object.class); in testCopyConstructor_copyNoCopySpans_SpannableStringInternalImpl() 58 final SpannedString copied = new SpannedString(first, true /* ignoreNoCopySpan */); in testCopyConstructor_doesNotCopyNoCopySpans_SpannableStringInternalImpl() local 59 final Object[] spans = copied.getSpans(0, copied.length(), Object.class); in testCopyConstructor_doesNotCopyNoCopySpans_SpannableStringInternalImpl() 76 final SpannedString copied = new SpannedString(new CustomSpanned(first)); in testCopyConstructor_copyNoCopySpans_OtherSpannedImpl() local 77 final Object[] spans = copied.getSpans(0, copied.length(), Object.class); in testCopyConstructor_copyNoCopySpans_OtherSpannedImpl() 90 final SpannedString copied = new SpannedString( in testCopyConstructor_doesNotCopyNoCopySpans_OtherSpannedImpl() local 92 final Object[] spans = copied.getSpans(0, copied.length(), Object.class); in testCopyConstructor_doesNotCopyNoCopySpans_OtherSpannedImpl()
|
D | SpannableStringNoCopyTest.java | 44 final SpannedString copied = new SpannedString(first); in testCopyConstructor_copyNoCopySpans_SpannableStringInternalImpl() local 45 final Object[] spans = copied.getSpans(0, copied.length(), Object.class); in testCopyConstructor_copyNoCopySpans_SpannableStringInternalImpl() 58 final SpannedString copied = new SpannedString(first, true /* ignoreNoCopySpan */); in testCopyConstructor_doesNotCopyNoCopySpans_SpannableStringInternalImpl() local 59 final Object[] spans = copied.getSpans(0, copied.length(), Object.class); in testCopyConstructor_doesNotCopyNoCopySpans_SpannableStringInternalImpl() 76 final SpannedString copied = new SpannedString(new CustomSpannable(first)); in testCopyConstructor_copyNoCopySpans_OtherSpannableImpl() local 77 final Object[] spans = copied.getSpans(0, copied.length(), Object.class); in testCopyConstructor_copyNoCopySpans_OtherSpannableImpl() 90 final SpannedString copied = new SpannedString( in testCopyConstructor_doesNotCopyNoCopySpans_OtherSpannableImpl() local 92 final Object[] spans = copied.getSpans(0, copied.length(), Object.class); in testCopyConstructor_doesNotCopyNoCopySpans_OtherSpannableImpl()
|
/frameworks/layoutlib/create/src/com/android/tools/layoutlib/create/ |
D | RefactorClassAdapter.java | 77 boolean copied = false; in renameFrame() 83 if (!copied) { in renameFrame() 85 copied = true; in renameFrame()
|
/frameworks/av/media/libstagefright/ |
D | SkipCutBuffer.cpp | 87 size_t copied = read(dst, buffer->size()); in submit() local 88 buffer->set_range(0, copied); in submit() 120 size_t copied = read(dst, buffer->capacity()); in submitInternal() local 121 buffer->setRange(0, copied); in submitInternal()
|
/frameworks/av/media/codec2/sfplugin/ |
D | SkipCutBuffer.cpp | 87 size_t copied = read(dst, buffer->size()); in submit() local 88 buffer->set_range(0, copied); in submit() 120 size_t copied = read(dst, buffer->capacity()); in submitInternal() local 121 buffer->setRange(0, copied); in submitInternal()
|
/frameworks/base/core/tests/coretests/src/android/service/euicc/ |
D | EuiccProfileInfoTest.java | 150 EuiccProfileInfo copied = new EuiccProfileInfo.Builder(p).build(); in testBuilder_BasedOnAnotherProfile() local 152 assertEquals(p, copied); in testBuilder_BasedOnAnotherProfile() 153 assertEquals(p.hashCode(), copied.hashCode()); in testBuilder_BasedOnAnotherProfile() 174 EuiccProfileInfo copied = new EuiccProfileInfo.Builder(p).build(); in testBuilder_BasedOnAnotherProfileWithEmptyAccessRules() local 176 assertEquals(null, copied.getUiccAccessRules()); in testBuilder_BasedOnAnotherProfileWithEmptyAccessRules()
|
/frameworks/base/core/jni/ |
D | eventlog_helper.h | 110 jsize copied = 0, num = env->GetArrayLength(value); in writeEventArray() local 111 for (; copied < num && copied < 255; ++copied) { in writeEventArray() 113 ScopedLocalRef<jobject> item(env, env->GetObjectArrayElement(value, copied)); in writeEventArray()
|
/frameworks/layoutlib/create/tests/mock_data/mock_android/data/ |
D | dataFile | 1 A simple data file that should be copied to the output jar unchanged.
|
D | anotherDataFile | 1 A simple data file that should *not* be copied to the output jar.
|
/frameworks/compile/slang/tests/F_struct_array_copy/ |
D | stderr.txt.expect | 1 struct_array_copy.rscript:35:8: error: Arrays of RS object types within structures cannot be copied
|
/frameworks/base/test-base/src/junit/ |
D | README.android | 9 These are copied here to ensure that the android.test.runner target remains
|
/frameworks/base/test-runner/src/junit/ |
D | README.android | 9 These are copied here to ensure that the android.test.runner target remains
|
/frameworks/native/vulkan/libvulkan/ |
D | api.cpp | 1234 uint32_t copied = std::min(*pPropertyCount, count); in EnumerateInstanceLayerProperties() local 1235 for (uint32_t i = 0; i < copied; i++) in EnumerateInstanceLayerProperties() 1237 *pPropertyCount = copied; in EnumerateInstanceLayerProperties() 1239 return (copied == count) ? VK_SUCCESS : VK_INCOMPLETE; in EnumerateInstanceLayerProperties() 1287 uint32_t copied = std::min(*pPropertyCount, count); in EnumerateDeviceLayerProperties() local 1288 for (uint32_t i = 0; i < copied; i++) in EnumerateDeviceLayerProperties() 1290 *pPropertyCount = copied; in EnumerateDeviceLayerProperties() 1292 return (copied == count) ? VK_SUCCESS : VK_INCOMPLETE; in EnumerateDeviceLayerProperties()
|
/frameworks/rs/script_api/ |
D | rs_allocation_data.spec | 25 <li>Multiple cells can be copied using the rsAllocationCopy* and
|
/frameworks/av/media/libstagefright/filters/ |
D | saturation.rscript | 36 // convert to uchar, copied from rsPackColorTo8888
|
/frameworks/av/media/bufferpool/2.0/ |
D | AccessorImpl.cpp | 791 std::map<uint32_t, const std::weak_ptr<Accessor::Impl>> copied; in invalidatorThread() local 799 copied.insert(accessors.begin(), accessors.end()); in invalidatorThread() 802 for (auto it = copied.begin(); it != copied.end(); ++it) { in invalidatorThread()
|
/frameworks/base/startop/view_compiler/ |
D | README.md | 37 copied over to the device by TradeFed when running tests.
|
/frameworks/native/opengl/specs/ |
D | EGL_ANDROID_presentation_time.txt | 91 or copied to a native pixmap then the presentation time of the surface at
|
/frameworks/rs/script_api/include/ |
D | rs_allocation_data.rsh | 27 * - Multiple cells can be copied using the rsAllocationCopy* and 59 * dstOff: Offset in the destination of the first cell to be copied into. 61 * count: Number of cells to be copied. 63 * srcOff: Offset in the source of the first cell to be copied. 76 * (width * heigth) cells are copied. 139 * x: X offset in the allocation of the first cell to be copied from. 140 * y: Y offset in the allocation of the first cell to be copied from. 141 * z: Z offset in the allocation of the first cell to be copied from. 619 * x: X offset in the allocation of the first cell to be copied into. 620 * y: Y offset in the allocation of the first cell to be copied into. [all …]
|
D | rs_object_info.rsh | 308 * Returns: Number of characters copied, excluding the null terminator.
|
/frameworks/ml/nn/tools/api/ |
D | README.md | 41 Every line of the template file is copied verbatim to the output file *unless*
|
/frameworks/base/tools/aapt2/ |
D | readme.md | 90 by AAPT2, just copied, so incremental building gets slower if they are included early on.
|
/frameworks/compile/slang/ |
D | README.rst | 213 // copyNow: If true, it will be copied to the *index*\-th entry
|
/frameworks/av/media/libaaudio/ |
D | Doxyfile | 1083 # other source files which should be copied to the HTML output directory. Note 1084 # that these files will be copied to the base HTML output directory. Use the 1087 # files will be copied as-is; there are no commands or markers available. 1322 # to be copied into the plugins directory of eclipse. The name of the directory 1632 # other source files which should be copied to the LATEX_OUTPUT output 1633 # directory. Note that the files will be copied as-is; there are no commands or
|