HomeSort by relevance Sort by last modified time
    Searched full:copyfrom (Results 1 - 25 of 627) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyDrawParams.java 56 private KeyDrawParams(@Nonnull final KeyDrawParams copyFrom) {
57 mTypeface = copyFrom.mTypeface;
59 mLetterSize = copyFrom.mLetterSize;
60 mLabelSize = copyFrom.mLabelSize;
61 mLargeLetterSize = copyFrom.mLargeLetterSize;
62 mHintLetterSize = copyFrom.mHintLetterSize;
63 mShiftedLetterHintSize = copyFrom.mShiftedLetterHintSize;
64 mHintLabelSize = copyFrom.mHintLabelSize;
65 mPreviewTextSize = copyFrom.mPreviewTextSize;
67 mTextColor = copyFrom.mTextColor
    [all...]
  /external/clang/test/CodeGenCXX/
casts.cpp 6 void copyFrom(const A &src);
12 void A::copyFrom(const A &src) {
  /cts/tests/tests/rsblas/src/android/renderscript/cts/
IntrinsicBLAS.java 323 matrixAS.copyFrom(mBLASData.L2_sGEMV_A_mn);
324 vectorXS.copyFrom(mBLASData.L2_sGEMV_x_n1);
325 vectorYS.copyFrom(mBLASData.L2_sGEMV_y_m1);
330 vectorYRef.copyFrom(mBLASData.L2_sGEMV_o_N);
336 vectorYS.copyFrom(mBLASData.L2_sGEMV_y_m1);
340 vectorYRef.copyFrom(mBLASData.L2_sGEMV_o_T);
344 vectorXS.copyFrom(mBLASData.L2_sGEMV_x_n1);
346 vectorYRef.copyFrom(mBLASData.L2_sGEMV_o_H);
357 vectorXS.copyFrom(mBLASData.L2_sGEMV_x_n2);
358 vectorYS.copyFrom(mBLASData.L2_sGEMV_y_m2)
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
KernelInputTest.java 73 ain.copyFrom(new byte[]{ (byte) 6 });
86 ain.copyFrom(new byte[]{ (byte) 127, (byte) 3 });
99 ain.copyFrom(new byte[]{ (byte) 127, (byte) 3, (byte) 4, 0 });
112 ain.copyFrom(new byte[]{ (byte) 127, (byte) 3, (byte) 4, (byte) 7 });
125 ain.copyFrom(new double[]{ (double) 6 });
138 ain.copyFrom(new double[]{ (double) 127, (double) 3 });
151 ain.copyFrom(new double[]{ (double) 127, (double) 3, (double) 4, 0 });
164 ain.copyFrom(new double[]{ (double) 127, (double) 3, (double) 4, (double) 7 });
177 ain.copyFrom(new float[]{ (float) 6 });
190 ain.copyFrom(new float[]{ (float) 127, (float) 3 })
    [all...]
RSBaseCompute.java 135 alloc.copyFrom(inArray);
254 minAlloc.copyFrom(minArray);
255 maxAlloc.copyFrom(maxArray);
269 minAlloc.copyFrom(minArray);
270 maxAlloc.copyFrom(maxArray);
285 minAlloc.copyFrom(minArray);
286 maxAlloc.copyFrom(maxArray);
299 minAlloc.copyFrom(minArray);
300 maxAlloc.copyFrom(maxArray);
313 minAlloc.copyFrom(minArray)
    [all...]
VLoadTest.java 104 outAlloc.copyFrom(a2);
115 outAlloc.copyFrom(a2);
126 outAlloc.copyFrom(a2);
137 outAlloc.copyFrom(a2);
148 outAlloc.copyFrom(a2);
159 outAlloc.copyFrom(a2);
165 inAlloc.copyFrom(t);
174 inAlloc.copyFrom(t);
183 inAlloc.copyFrom(t);
192 inAlloc.copyFrom(t)
    [all...]
rsAllocationCopyTest.java 42 aIn.copyFrom(inArray);
43 aOut.copyFrom(outArray);
89 aIn.copyFrom(inArray);
90 aOut.copyFrom(outArray);
136 aIn.copyFrom(inArray);
137 aOut.copyFrom(outArray);
183 aIn.copyFrom(inArray);
184 aOut.copyFrom(outArray);
231 aIn.copyFrom(inArray);
232 aOut.copyFrom(outArray)
    [all...]
SingleSourceForEachTest.java 59 testInputAlloc.copyFrom(testInputArray);
64 testInputAlloc2.copyFrom(testInputArray2);
97 baselineOutputAlloc.copyFrom(testInputArray);
98 testOutputAlloc.copyFrom(testInputArray);
YuvTest.java 66 ay.copyFrom(by);
67 au.copyFrom(bu);
68 av.copyFrom(bv);
98 ta.copyFrom(tmp);
142 ta.copyFrom(tmp);
188 ta.copyFrom(tmp);
233 ta.copyFrom(tmp);
273 ta.copyFrom(tmp);
  /frameworks/base/core/tests/coretests/src/android/os/
MessageQueueTest.java 173 newMsg.copyFrom(msg);
176 "newMsg.isInUse is true should be false after copyFrom"));
180 "newMsg.flags is %d should be 0 after copyFrom", newMsg.flags)));
184 "newMsg.what is %d should be %d after copyFrom", newMsg.what, 1)));
188 "newMsg.arg1 is %d should be %d after copyFrom", msg.arg1, 456)));
192 "newMsg.arg2 is %d should be %d after copyFrom", msg.arg2, 789)));
196 "newMsg.obj should be 'this' after copyFrom"));
200 "newMsg.replyTo should be null after copyFrom"));
204 "newMsg.data should NOT be mBundle after copyFrom"));
209 " mBundle.getString(\"key\") which is %s after copyFrom",
    [all...]
  /external/protobuf/java/src/test/java/com/google/protobuf/
ByteStringTest.java 92 ByteString substring = ByteString.copyFrom(bytes).substring(500);
99 ByteString byteString = ByteString.copyFrom(bytes, 500, 200);
100 assertTrue("copyFrom sub-range must contain the expected bytes",
106 ByteString byteString = ByteString.copyFrom(bytes);
107 assertTrue("copyFrom must contain the expected bytes",
116 ByteString byteString = ByteString.copyFrom(byteBuffer, 200);
117 assertTrue("copyFrom byteBuffer sub-range must contain the expected bytes",
126 ByteString byteString = ByteString.copyFrom(byteBuffer);
127 assertTrue("copyFrom byteBuffer sub-range must contain the expected bytes",
133 ByteString byteString = ByteString.copyFrom(testString, UTF_16)
    [all...]
  /external/giflib/
gifalloc.c 323 GifMakeSavedImage(GifFileType *GifFile, const SavedImage *CopyFrom)
337 if (CopyFrom != NULL) {
338 memcpy((char *)sp, CopyFrom, sizeof(SavedImage));
349 CopyFrom->ImageDesc.ColorMap->ColorCount,
350 CopyFrom->ImageDesc.ColorMap->Colors);
359 CopyFrom->ImageDesc.Height *
360 CopyFrom->ImageDesc.Width);
365 memcpy(sp->RasterBits, CopyFrom->RasterBits,
366 sizeof(GifPixelType) * CopyFrom->ImageDesc.Height *
367 CopyFrom->ImageDesc.Width)
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
WindowManager_LayoutParamsTest.java 97 mLayoutParams.copyFrom(params));
108 mLayoutParams.copyFrom(params));
126 mLayoutParams.copyFrom(params));
135 mLayoutParams.copyFrom(params));
142 mLayoutParams.copyFrom(params));
149 mLayoutParams.copyFrom(params));
156 mLayoutParams.copyFrom(params));
163 mLayoutParams.copyFrom(params));
218 assertEquals(0, out.copyFrom(mLayoutParams));
  /external/google-breakpad/src/processor/
fast_source_line_resolver_types.h 57 void CopyFrom(const Line *line_ptr) {
59 CopyFrom(raw);
63 void CopyFrom(const char *raw) {
75 void CopyFrom(const Function *func_ptr) {
77 CopyFrom(raw);
81 void CopyFrom(const char *raw) {
98 void CopyFrom(const PublicSymbol *public_symbol_ptr) {
100 CopyFrom(raw);
104 void CopyFrom(const char *raw) {
  /cts/tests/tests/telephony/src/android/telephony/cts/
ServiceStateTest.java 69 mockServiceState.copyFrom(serviceState);
86 protected void copyFrom(ServiceState s) {
87 super.copyFrom(s);
  /external/webrtc/webrtc/modules/audio_processing/beamformer/
matrix.h 80 CopyFrom(data, num_rows, num_columns);
88 void CopyFrom(const Matrix& other) {
89 CopyFrom(&other.data_[0], other.num_rows_, other.num_columns_);
93 void CopyFrom(const T* const data, size_t num_rows, size_t num_columns) {
158 CopyFrom(operand);
174 CopyFrom(lhs);
190 CopyFrom(lhs);
206 CopyFrom(lhs);
222 CopyFrom(lhs);
235 CopyFrom(operand)
    [all...]
  /external/skia/src/animator/
SkDisplayTypes.cpp 118 SkDisplayString::SkDisplayString(SkString& copyFrom) : value(copyFrom) {
187 SkDisplayArray::SkDisplayArray(SkTypedArray& copyFrom) : values(copyFrom) {
  /frameworks/compile/slang/tests/P_reduce_general_accumulator/
ScriptC_reduce_general_accumulator.java.expect 89 ain1.copyFrom(in1);
122 ain1.copyFrom(in1);
155 ain1.copyFrom(in1);
188 ain1.copyFrom(in1);
221 ain1.copyFrom(in1);
254 ain1.copyFrom(in1);
287 ain1.copyFrom(in1);
320 ain1.copyFrom(in1);
353 ain1.copyFrom(in1);
386 ain1.copyFrom(in1)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/
Parameter.java 32 public void copyFrom(Parameter src);
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_check_dims.java 43 AFailed.copyFrom(mFailedArr);
56 mA.copyFrom(mData);
  /cts/tests/tests/rscpp/src/android/cts/rscpp/
RSYuvTest.java 71 ay.copyFrom(by);
72 au.copyFrom(bu);
73 av.copyFrom(bv);
99 ta.copyFrom(tmp);
138 ta.copyFrom(tmp);
175 ta.copyFrom(tmp);
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-tuple.h 218 tuple& operator=(const tuple& t) { return CopyFrom(t); }
222 return CopyFrom(t);
228 tuple& CopyFrom(const GTEST_1_TUPLE_(U)& t) {
253 tuple& operator=(const tuple& t) { return CopyFrom(t); }
257 return CopyFrom(t);
269 tuple& CopyFrom(const GTEST_2_TUPLE_(U)& t) {
294 tuple& operator=(const tuple& t) { return CopyFrom(t); }
298 return CopyFrom(t);
304 tuple& CopyFrom(const GTEST_3_TUPLE_(U)& t) {
333 tuple& operator=(const tuple& t) { return CopyFrom(t);
    [all...]
  /external/gtest/include/gtest/internal/
gtest-tuple.h 218 tuple& operator=(const tuple& t) { return CopyFrom(t); }
222 return CopyFrom(t);
228 tuple& CopyFrom(const GTEST_1_TUPLE_(U)& t) {
253 tuple& operator=(const tuple& t) { return CopyFrom(t); }
257 return CopyFrom(t);
269 tuple& CopyFrom(const GTEST_2_TUPLE_(U)& t) {
294 tuple& operator=(const tuple& t) { return CopyFrom(t); }
298 return CopyFrom(t);
304 tuple& CopyFrom(const GTEST_3_TUPLE_(U)& t) {
333 tuple& operator=(const tuple& t) { return CopyFrom(t);
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-tuple.h 196 tuple& operator=(const tuple& t) { return CopyFrom(t); }
200 return CopyFrom(t);
206 tuple& CopyFrom(const GTEST_1_TUPLE_(U)& t) {
231 tuple& operator=(const tuple& t) { return CopyFrom(t); }
235 return CopyFrom(t);
247 tuple& CopyFrom(const GTEST_2_TUPLE_(U)& t) {
272 tuple& operator=(const tuple& t) { return CopyFrom(t); }
276 return CopyFrom(t);
282 tuple& CopyFrom(const GTEST_3_TUPLE_(U)& t) {
311 tuple& operator=(const tuple& t) { return CopyFrom(t);
    [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-tuple.h 196 tuple& operator=(const tuple& t) { return CopyFrom(t); }
200 return CopyFrom(t);
206 tuple& CopyFrom(const GTEST_1_TUPLE_(U)& t) {
231 tuple& operator=(const tuple& t) { return CopyFrom(t); }
235 return CopyFrom(t);
247 tuple& CopyFrom(const GTEST_2_TUPLE_(U)& t) {
272 tuple& operator=(const tuple& t) { return CopyFrom(t); }
276 return CopyFrom(t);
282 tuple& CopyFrom(const GTEST_3_TUPLE_(U)& t) {
311 tuple& operator=(const tuple& t) { return CopyFrom(t);
    [all...]

Completed in 1703 milliseconds

1 2 3 4 5 6 7 8 91011>>