Home
last modified time | relevance | path

Searched refs:mUsage (Results 1 – 4 of 4) sorted by relevance

/cts/tools/junit/src/com/android/cts/junit/
DSingleJUnitTestRunner.java27 private static String mUsage = "Usage: java -cp <classpath> SingleJUnitTestRunner" + field in SingleJUnitTestRunner
34 throw new IllegalArgumentException(mUsage); in main()
38 throw new IllegalArgumentException(mUsage); in main()
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/rs/
DAllocationInfo.java47 private final int mUsage; field in AllocationInfo
177 return new AllocationInfo(mElement, mSize, mUsage | usage); in addExtraUsage()
232 mUsage = usage; in AllocationInfo()
263 return mUsage; in getUsage()
359 ElementInfo.fromElement(mElement), mUsage); in toString()
400 return mType.equals(other.mType) && mUsage == other.mUsage; in equals()
414 return RenderScriptSingleton.getCache().getOrCreateTyped(mType, mUsage); in createAllocation()
DAllocationCache.java209 private final int mUsage; field in AllocationCache.AllocationKey
213 mUsage = usage; in AllocationKey()
218 return mType.hashCode() ^ mUsage; in hashCode()
226 return otherKey.mType.equals(mType) && otherKey.mUsage == otherKey.mUsage; in equals()
DScriptGraph.java71 private final int mUsage; field in ScriptGraph
209 private int mUsage; field in ScriptGraph.Builder
305 mUsage = usage | Allocation.USAGE_SCRIPT; in configureInput()
424 mUsage = builder.mUsage; in ScriptGraph()
441 AllocationInfo inputInfo = AllocationInfo.newInstance(mSize, mFormat, mUsage); in ScriptGraph()
567 return (mUsage & Allocation.USAGE_IO_INPUT) != 0; in isInputFromSurface()