Home
last modified time | relevance | path

Searched refs:copied (Results 1 – 12 of 12) sorted by relevance

/cts/tests/inputmethod/src/android/view/inputmethod/cts/
DExtractedTextRequestTest.java82 final ExtractedTextRequest copied = cloneViaParcel(original); in testWriteToParcel() local
83 assertTestInstance(copied); in testWriteToParcel()
DExtractedTextTest.java133 final ExtractedText copied = cloneViaParcel(original); in testWriteToParcel() local
134 assertTestInstance(copied); in testWriteToParcel()
/cts/tests/tests/text/src/android/text/cts/
DSpannableStringTest.java229 SpannableString copied = new SpannableString(original); in testCopyConstructorDoesNotEnforceParagraphStyleConstraint() local
230 AlignmentSpan.Standard[] copiedSpans = copied.getSpans(0, copied.length(), in testCopyConstructorDoesNotEnforceParagraphStyleConstraint()
238 copied = new SpannableString(transformed); in testCopyConstructorDoesNotEnforceParagraphStyleConstraint()
239 copiedSpans = copied.getSpans(0, copied.length(), AlignmentSpan.Standard.class); in testCopyConstructorDoesNotEnforceParagraphStyleConstraint()
DSpannableStringBuilderSpanTest.java600 SpannableStringBuilder copied = new SpannableStringBuilder(original); in testCopyConstructorDoesNotEnforceParagraphStyleConstraint() local
601 AlignmentSpan.Standard[] copiedSpans = copied.getSpans(0, copied.length(), in testCopyConstructorDoesNotEnforceParagraphStyleConstraint()
609 copied = new SpannableStringBuilder(transformed); in testCopyConstructorDoesNotEnforceParagraphStyleConstraint()
610 copiedSpans = copied.getSpans(0, copied.length(), AlignmentSpan.Standard.class); in testCopyConstructorDoesNotEnforceParagraphStyleConstraint()
/cts/tests/tests/widget/src/android/widget/cts/
DTextViewPrecomputedTextTest.java165 final TextPaint copied = new TextPaint((new TextView(getContext())).getPaint()); in hasVarFont() local
166 return copied.setFontVariationSettings("'wght' 400") in hasVarFont()
167 && copied.setFontVariationSettings("'wdth' 100"); in hasVarFont()
/cts/tests/tests/telephony/current/src/android/telephony/euicc/cts/
DEuiccProfileInfoTest.java153 EuiccProfileInfo copied = new EuiccProfileInfo.Builder(p).build(); in testBuilder_BasedOnAnotherProfile() local
155 assertEquals(p, copied); in testBuilder_BasedOnAnotherProfile()
156 assertEquals(p.hashCode(), copied.hashCode()); in testBuilder_BasedOnAnotherProfile()
/cts/tests/tests/media/libaudiojni/
Daudio-record-native.cpp322 size_t copied; in read() local
344 copied = osize - size; in read()
346 return copied; in read()
355 copied += blob->mOffset; in read()
357 return copied; in read()
/cts/tests/tests/identity/
DAndroid.bp48 // The comment below is not particularly accurate, but it's copied from other
/cts/tests/tests/keystore/
DAndroid.bp67 // The comment below is not particularly accurate, but it's copied from other
/cts/tests/tests/media/src/android/media/cts/
DMediaExtractorTest.java731 int copied = 0; in readAt() local
746 copied += tocopy; in readAt()
754 if (copied == 0) { in readAt()
755 copied = -1; // signal end of file in readAt()
757 return copied; in readAt()
DVideoDecoderPerfTest.java165 ByteBuffer copied = ByteBuffer.allocate(sampleSize); in doDecode() local
166 copied.put(tmpBuf); in doDecode()
172 mSamplesInMemory.addLast(Pair.create(copied, presentationOffset)); in doDecode()
/cts/tests/video/src/android/video/cts/
DVideoEncoderDecoderTest.java1105 ByteBuffer copied = ByteBuffer.allocate(l); in dequeueOutputBufferEncoder() local
1106 output.get(copied.array(), 0, l); in dequeueOutputBufferEncoder()
1109 mEncodedOutputBuffer.addLast(Pair.create(copied, savedInfo)); in dequeueOutputBufferEncoder()