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

  /cts/tools/junit/src/com/android/cts/junit/
SingleJUnitTestRunner.java 27 private static String mUsage = "Usage: java -cp <classpath> SingleJUnitTestRunner" +
34 throw new IllegalArgumentException(mUsage);
38 throw new IllegalArgumentException(mUsage);
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/rs/
AllocationInfo.java 47 private final int mUsage;
177 return new AllocationInfo(mElement, mSize, mUsage | usage);
232 mUsage = usage;
263 return mUsage;
359 ElementInfo.fromElement(mElement), mUsage);
400 return mType.equals(other.mType) && mUsage == other.mUsage;
414 return RenderScriptSingleton.getCache().getOrCreateTyped(mType, mUsage);
AllocationCache.java 209 private final int mUsage;
213 mUsage = usage;
218 return mType.hashCode() ^ mUsage;
226 return otherKey.mType.equals(mType) && otherKey.mUsage == otherKey.mUsage;
ScriptGraph.java 71 private final int mUsage;
209 private int mUsage;
305 mUsage = usage | Allocation.USAGE_SCRIPT;
424 mUsage = builder.mUsage;
441 AllocationInfo inputInfo = AllocationInfo.newInstance(mSize, mFormat, mUsage);
567 return (mUsage & Allocation.USAGE_IO_INPUT) != 0;
  /external/chromium_org/third_party/angle/src/libGLESv2/
Buffer.h 42 GLenum getUsage() const { return mUsage; }
62 GLenum mUsage;
Buffer.cpp 21 mUsage(GL_DYNAMIC_DRAW),
45 mUsage = usage;
Texture.cpp 53 mUsage(GL_NONE),
71 mUsage = usage;
87 return mUsage;
Texture.h 93 GLenum mUsage;
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
Buffer11.cpp 81 BufferUsage getUsage() const { return mUsage; }
83 bool isMappable() const { return (mUsage == BUFFER_USAGE_STAGING || mUsage == BUFFER_USAGE_PIXEL_PACK); }
99 const BufferUsage mUsage;
621 mUsage(usage),
698 fillBufferDesc(&bufferDesc, mRenderer, mUsage, size);
784 ASSERT(mUsage == BUFFER_USAGE_STAGING);
819 ASSERT(mUsage == BUFFER_USAGE_STAGING);
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
TextureD3D.h 40 virtual void setUsage(GLenum usage) { mUsage = usage; }
70 GLenum mUsage;
154 virtual void setUsage(GLenum usage) { mUsage = usage; }
TextureD3D.cpp 36 mUsage(GL_NONE),
458 bool renderTarget = IsRenderTargetUsage(mUsage);
604 bool createRenderTarget = (renderTarget || IsRenderTargetUsage(mUsage));
944 bool renderTarget = IsRenderTargetUsage(mUsage);
    [all...]

Completed in 102 milliseconds