HomeSort by relevance Sort by last modified time
    Searched refs:sourceData (Results 1 - 16 of 16) sorted by null

  /frameworks/base/tools/aapt/tests/
CrunchCache_test.cpp 33 KeyedVector<String8, time_t> sourceData;
35 sourceData.add(String8("res/drawable/hello.png"),3);
37 sourceData.add(String8("res/drawable/world.png"),5);
39 sourceData.add(String8("res/drawable-cool/hello.png"),3);
49 data.add(source,sourceData);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
TexImageTransform.java 250 private byte[] addAlphaChannel(byte[] sourceData, int width, int height) {
251 assert sourceData.length == 3 * width * height; // should have R, G & B channels
255 for (int src = 0, dst = 0; src < sourceData.length; src += 3, dst += 4) {
256 data[dst + 0] = sourceData[src + 0]; // copy R byte
257 data[dst + 1] = sourceData[src + 1]; // copy G byte
258 data[dst + 2] = sourceData[src + 2]; // copy B byte
265 private byte[] addRGBChannels(byte[] sourceData, int width, int height) {
266 assert sourceData.length == width * height; // should have a single alpha channel
270 for (int src = 0, dst = 0; src < sourceData.length; src++, dst += 4) {
272 data[dst + 3] = sourceData[src]; // copy over alph
    [all...]
  /external/webkit/Source/WebCore/platform/audio/
AudioArray.h 55 void copyToRange(T* sourceData, unsigned start, unsigned end)
62 memcpy(this->data() + start, sourceData, sizeof(T) * (end - start));
  /libcore/support/src/test/java/tests/security/
MessageDigestTest.java 34 private InputStream sourceData;
43 this.sourceData = getSourceData();
64 sourceData.close();
65 sourceData = null;
107 while ((read = sourceData.read(buf)) != -1) {
110 sourceData.close();
130 while ((val = sourceData.read()) != -1) {
133 sourceData.close();
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext3D.cpp 904 static void doUnpackingAndPacking(const SourceType* sourceData,
914 const SourceType* endPointer = sourceData + numElements;
916 while (sourceData < endPointer)
    [all...]
GraphicsContext3D.h     [all...]
  /external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
TextureAtlas.java 281 ByteBuffer sourceData = source.getData(0);
290 image[i] = sourceData.get(j); //a
291 image[i + 1] = sourceData.get(j + 1); //b
292 image[i + 2] = sourceData.get(j + 2); //g
293 image[i + 3] = sourceData.get(j + 3); //r
297 image[i + 1] = sourceData.get(j); //b
298 image[i + 2] = sourceData.get(j + 1); //g
299 image[i + 3] = sourceData.get(j + 2); //r
303 image[i + 1] = sourceData.get(j + 2); //b
304 image[i + 2] = sourceData.get(j + 1); //
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
Matrix2fTest.java 200 float[] sourceData = {
205 rotated[0] = rotate[0] * sourceData[0] + rotate[1] * sourceData[2];
206 rotated[1] = rotate[0] * sourceData[1] + rotate[1] * sourceData[3];
207 rotated[2] = rotate[2] * sourceData[0] + rotate[3] * sourceData[2];
208 rotated[3] = rotate[2] * sourceData[1] + rotate[3] * sourceData[3];
209 m = new Matrix2f(sourceData);
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorStyleSheet.cpp 56 typedef Vector<RefPtr<WebCore::CSSRuleSourceData> > SourceData;
63 SourceData* sourceData() const { return m_sourceData.get(); }
64 void setSourceData(PassOwnPtr<SourceData> sourceData);
74 OwnPtr<SourceData> m_sourceData;
90 void ParsedStyleSheet::setSourceData(PassOwnPtr<SourceData> sourceData)
92 m_sourceData = sourceData;
168 RefPtr<CSSRuleSourceData> sourceData = m_parentStyleSheet ? m_parentStyleSheet->ruleSourceDataFor(m_style.get()) : 0
    [all...]
InspectorStyleSheet.h 100 InspectorStyleProperty(CSSPropertySourceData sourceData, bool hasSource, bool disabled)
101 : sourceData(sourceData)
109 unsigned start = sourceData.range.start;
110 unsigned end = sourceData.range.end;
118 CSSPropertySourceData sourceData;
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/core/
VoicemailImpl.java 132 public Builder setSourceData(String sourceData) {
133 mBuilderSourceData = sourceData;
VoicemailProviderHelpers.java 160 public Voicemail findVoicemailBySourceData(String sourceData) {
164 DbQueryUtils.getEqualityClause(Voicemails.SOURCE_DATA, sourceData),
167 logger.w("Expected 1 voicemail matching sourceData " + sourceData + ", got " +
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TextureHelper.java 267 ByteBuffer sourceData = image.getData(0);
270 sourcePixel.fromImage(image.getFormat(), sourceData, i);
273 sourcePixel.fromImage(image.getFormat(), sourceData, i);
  /external/icu4c/test/cintltst/
nucnvtst.c     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 

Completed in 1192 milliseconds