HomeSort by relevance Sort by last modified time
    Searched full:copyfrom (Results 1 - 25 of 668) 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...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/attributes/
BlendingAttribute.java 71 public BlendingAttribute (final BlendingAttribute copyFrom) {
72 this(copyFrom == null ? true : copyFrom.blended, copyFrom == null ? GL20.GL_SRC_ALPHA : copyFrom.sourceFunction,
73 copyFrom == null ? GL20.GL_ONE_MINUS_SRC_ALPHA : copyFrom.destFunction, copyFrom == null ? 1.f : copyFrom.opacity);
CubemapAttribute.java 52 public CubemapAttribute (final CubemapAttribute copyFrom) {
53 this(copyFrom.type, copyFrom.textureDescription);
DirectionalLightsAttribute.java 28 public DirectionalLightsAttribute (final DirectionalLightsAttribute copyFrom) {
30 lights.addAll(copyFrom.lights);
PointLightsAttribute.java 28 public PointLightsAttribute (final PointLightsAttribute copyFrom) {
30 lights.addAll(copyFrom.lights);
SpotLightsAttribute.java 28 public SpotLightsAttribute (final SpotLightsAttribute copyFrom) {
30 lights.addAll(copyFrom.lights);
TextureAttribute.java 151 public TextureAttribute (final TextureAttribute copyFrom) {
152 this(copyFrom.type, copyFrom.textureDescription, copyFrom.offsetU, copyFrom.offsetV, copyFrom.scaleU, copyFrom.scaleV,
153 copyFrom.uvIndex);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/
Material.java 61 public Material (final Material copyFrom) {
62 this(copyFrom.id, copyFrom);
66 public Material (final String id, final Material copyFrom) {
68 for (Attribute attr : copyFrom)
  /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...]
SingleSourceForEachTest.java 59 testInputAlloc.copyFrom(testInputArray);
64 testInputAlloc2.copyFrom(testInputArray2);
89 baselineOutputAlloc.copyFrom(testInputArray);
90 testOutputAlloc.copyFrom(testInputArray);
103 baselineOutputAlloc.copyFrom(testInputArray);
104 testOutputAlloc.copyFrom(testInputArray);
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...]
  /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/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/environment/
SphericalHarmonics.java 37 public SphericalHarmonics (final float copyFrom[]) {
38 if (copyFrom.length != (9 * 3)) throw new GdxRuntimeException("Incorrect array size");
39 data = copyFrom.clone();
PointLight.java 41 public PointLight set (final PointLight copyFrom) {
42 return set(copyFrom.color, copyFrom.position, copyFrom.intensity);
SpotLight.java 67 public SpotLight set (final SpotLight copyFrom) {
68 return set(copyFrom.color, copyFrom.position, copyFrom.direction, copyFrom.intensity, copyFrom.cutoffAngle, copyFrom.exponent);
  /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...]
  /external/libgdx/backends/gdx-backend-moe/libs/
intel-moe-ios.jar 
  /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);

Completed in 344 milliseconds

1 2 3 4 5 6 7 8 91011>>