HomeSort by relevance Sort by last modified time
    Searched defs:dataArray (Results 1 - 23 of 23) sorted by null

  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TextureGeneratorNoise.java 102 ArrayList<ByteBuffer> dataArray = new ArrayList<ByteBuffer>(1);
103 dataArray.add(BufferUtils.createByteBuffer(data));
104 return new Texture3D(new Image(format, width, height, depth, dataArray));
TextureGeneratorBlend.java 160 ArrayList<ByteBuffer> dataArray = new ArrayList<ByteBuffer>(1);
161 dataArray.add(BufferUtils.createByteBuffer(data));
162 return new Texture3D(new Image(format, width, height, depth, dataArray));
TextureGeneratorClouds.java 127 ArrayList<ByteBuffer> dataArray = new ArrayList<ByteBuffer>(1);
128 dataArray.add(BufferUtils.createByteBuffer(data));
129 return new Texture3D(new Image(format, width, height, depth, dataArray));
TextureGeneratorDistnoise.java 104 ArrayList<ByteBuffer> dataArray = new ArrayList<ByteBuffer>(1);
105 dataArray.add(BufferUtils.createByteBuffer(data));
106 return new Texture3D(new Image(format, width, height, depth, dataArray));
TextureGeneratorMagic.java 183 ArrayList<ByteBuffer> dataArray = new ArrayList<ByteBuffer>(1);
184 dataArray.add(BufferUtils.createByteBuffer(data));
185 return new Texture3D(new Image(Format.RGBA8, width, height, depth, dataArray));
TextureGeneratorMusgrave.java 111 ArrayList<ByteBuffer> dataArray = new ArrayList<ByteBuffer>(1);
112 dataArray.add(BufferUtils.createByteBuffer(data));
113 return new Texture3D(new Image(format, width, height, depth, dataArray));
TextureGeneratorStucci.java 121 ArrayList<ByteBuffer> dataArray = new ArrayList<ByteBuffer>(1);
122 dataArray.add(BufferUtils.createByteBuffer(data));
123 return new Texture3D(new Image(format, width, height, depth, dataArray));
TextureGeneratorMarble.java 101 ArrayList<ByteBuffer> dataArray = new ArrayList<ByteBuffer>(1);
102 dataArray.add(BufferUtils.createByteBuffer(data));
103 return new Texture3D(new Image(format, width, height, depth, dataArray));
TextureGeneratorVoronoi.java 157 ArrayList<ByteBuffer> dataArray = new ArrayList<ByteBuffer>(1);
158 dataArray.add(BufferUtils.createByteBuffer(data));
159 return new Texture3D(new Image(format, width, height, depth, dataArray));
TextureGeneratorWood.java 117 ArrayList<ByteBuffer> dataArray = new ArrayList<ByteBuffer>(1);
118 dataArray.add(BufferUtils.createByteBuffer(data));
119 return new Texture3D(new Image(format, width, height, depth, dataArray));
TextureGenerator.java 105 ColorBandData[] dataArray = colorBand.data;
107 if(dataArray.length==1) {//special case; use only one color for all types of colorband interpolation
109 result[i][0] = dataArray[0].r;
110 result[i][1] = dataArray[0].g;
111 result[i][2] = dataArray[0].b;
112 result[i][3] = dataArray[0].a;
116 ColorBandData currentData = dataArray[0];
117 ColorBandData nextData = dataArray[0];
128 currentData = dataArray[currentCursor++];
129 if(currentCursor < dataArray.length)
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/
TextureBlenderAWT.java 69 ArrayList<ByteBuffer> dataArray = new ArrayList<ByteBuffer>(1);
70 dataArray.add(newData);
71 return new Texture3D(new Image(Format.RGBA8, width, height, depth, dataArray));
TextureBlenderDDS.java 91 ArrayList<ByteBuffer> dataArray = new ArrayList<ByteBuffer>(1);
92 dataArray.add(newData);
93 return new Texture3D(new Image(format, width, height, depth, dataArray));
TextureBlenderLuminance.java 60 ArrayList<ByteBuffer> dataArray = new ArrayList<ByteBuffer>(1);
61 dataArray.add(newData);
62 return new Texture3D(new Image(Format.RGBA8, width, height, depth, dataArray));
  /dalvik/vm/
Ddm.cpp 44 ArrayObject* dataArray = NULL;
62 dataArray = dvmAllocPrimitiveArray('B', dataLen, ALLOC_DEFAULT);
63 if (dataArray == NULL) {
68 memcpy(dataArray->contents, buf, dataLen);
74 type = get4BE((u1*)dataArray->contents + 0);
75 length = get4BE((u1*)dataArray->contents + 4);
87 type, dataArray, offset, length);
150 dvmReleaseTrackedAlloc((Object*) dataArray, self);
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
BinaryImporter.java 72 private byte[] dataArray;
240 dataArray = baos.toByteArray();
248 logger.log(Level.INFO, "Data Size: {0}", dataArray.length);
250 dataArray = null;
300 data[j] = dataArray[j+offset];
325 int dataLength = ByteUtils.convertIntFromBytes(dataArray, loc);
336 cap.setContent(dataArray, loc, loc+dataLength);
  /frameworks/base/drm/jni/
android_drm_DrmManagerClient.cpp 273 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(strlen(value)));
275 env->SetByteArrayRegion(dataArray.get(), 0, strlen(value), (jbyte*)value);
277 keyString.get(), dataArray.get());
474 jbyteArray dataArray = NULL;
477 dataArray = env->NewByteArray(length);
479 dataArray, 0, length, (jbyte*) pDrmInfoStatus->drmBuffer->data);
487 jobject processedData = env->NewObject(clazz, constructorId, dataArray,
548 jbyteArray dataArray = env->NewByteArray(length);
549 env->SetByteArrayRegion(dataArray, 0, length, (jbyte*)pDrmInfo->getData().data);
554 mInfoType, dataArray, env->NewStringUTF(pDrmInfo->getMimeType().string()))
    [all...]
  /frameworks/opt/vcard/java/com/android/vcard/
VCardEntry.java 525 final String[] dataArray = new String[ADDR_MAX_DATA_SIZE];
539 dataArray[i] = addressElement;
545 dataArray[i++] = null;
548 return new PostalData(dataArray[0], dataArray[1], dataArray[2], dataArray[3],
549 dataArray[4], dataArray[5], dataArray[6], type, label, isPrimary, vcardType)
    [all...]
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 638 milliseconds