HomeSort by relevance Sort by last modified time
    Searched refs:usages (Results 1 - 25 of 54) sorted by null

1 2 3

  /dalvik/dx/tests/118-find-usages/
run 21 dx --find-usages foo.dex "Ljava/io/StreamTokenizer;" nval
24 dx --find-usages foo.dex "Ljava/util/ArrayList;" remove
27 dx --find-usages foo.dex "Ljava/util/Collection;" remove
30 dx --find-usages foo.dex "Ljava/lang/String;" valueOf
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
ExtendedKeyUsage.java 108 * @param usages an array of KeyPurposeIds.
111 KeyPurposeId[] usages)
115 for (int i = 0; i != usages.length; i++)
117 v.add(usages[i]);
118 this.usageTable.put(usages[i], usages[i]);
128 Vector usages)
131 Enumeration e = usages.elements();
157 * Returns all extended key usages.
KeyUsage.java 80 * @param usages combination of usage flags.
83 public boolean hasUsages(int usages)
85 return (bitString.intValue() & usages) == usages;
  /frameworks/rs/cpp/
Script.cpp 57 void Script::FieldBase::init(sp<RS> rs, uint32_t dimx, uint32_t usages) {
58 mAllocation = Allocation::createSized(rs, mElement, dimx, RS_ALLOCATION_USAGE_SCRIPT | usages);
  /external/deqp/modules/gles2/functional/
es2fBufferObjectQueryTests.cpp 220 const GLenum usages[] = local
227 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(usages); ++ndx)
229 glBufferData(m_bufferTarget, 16, DE_NULL, usages[ndx]);
232 m_verifier->verifyInteger(m_testCtx, m_bufferTarget, GL_BUFFER_USAGE, usages[ndx]);
es2fDrawTests.cpp 574 static const gls::DrawTestSpec::Usage usages[] = local
580 const UniformWeightArray<DE_LENGTH_OF_ARRAY(usages)> usageWeights;
621 attribSpec.usage = random.chooseWeighted<gls::DrawTestSpec::Usage> (DE_ARRAY_BEGIN(usages), DE_ARRAY_END(usages), usageWeights.weights);
es2fVertexArrayTest.cpp 61 : TestCaseGroup(context, "usages", "Single vertex atribute, usage")
72 Array::Usage usages[] = {Array::USAGE_STATIC_DRAW, Array::USAGE_STREAM_DRAW, Array::USAGE_DYNAMIC_DRAW}; local
83 for (int usageNdx = 0; usageNdx < DE_LENGTH_OF_ARRAY(usages); usageNdx++)
91 usages[usageNdx],
  /external/deqp/modules/gles2/stress/
es2sVertexArrayTests.cpp 62 : TestCaseGroup(context, "usages", "Single vertex atribute, usage")
73 Array::Usage usages[] = {Array::USAGE_STATIC_DRAW, Array::USAGE_STREAM_DRAW, Array::USAGE_DYNAMIC_DRAW}; local
84 for (int usageNdx = 0; usageNdx < DE_LENGTH_OF_ARRAY(usages); usageNdx++)
92 usages[usageNdx],
es2sDrawTests.cpp 288 gls::DrawTestSpec::Usage usages[] = local
294 const UniformWeightArray<DE_LENGTH_OF_ARRAY(usages)> usageWeights;
335 attribSpec.usage = random.chooseWeighted<gls::DrawTestSpec::Usage> (DE_ARRAY_BEGIN(usages), DE_ARRAY_END(usages), usageWeights.weights);
  /frameworks/rs/
rsAllocation.cpp 30 Allocation::Allocation(Context *rsc, const Type *type, uint32_t usages,
36 mHal.state.usageFlags = usages;
63 Allocation * Allocation::createAllocation(Context *rsc, const Type *type, uint32_t usages,
75 if (usages & RS_ALLOCATION_USAGE_OEM) {
77 a = new (allocMem) Allocation(rsc, type, usages, mc, nullptr);
84 a = new (allocMem) Allocation(rsc, type, usages, mc, ptr);
721 uint32_t usages, uintptr_t ptr) {
722 Allocation * alloc = Allocation::createAllocation(rsc, static_cast<Type *>(vtype), usages, mipmaps, (void*)ptr);
732 const void *data, size_t sizeBytes, uint32_t usages) {
735 RsAllocation vTexAlloc = rsi_AllocationCreateTyped(rsc, vtype, mipmaps, usages, 0)
    [all...]
rsAllocation.h 111 static Allocation * createAllocation(Context *rsc, const Type *, uint32_t usages,
229 Allocation(Context *rsc, const Type *, uint32_t usages, RsAllocationMipmapControl mc, void *ptr);
rs.spec 60 param uint32_t usages
70 param uint32_t usages
79 param uint32_t usages
  /external/deqp/modules/gles3/stress/
es3sVertexArrayTests.cpp 128 : TestCaseGroup(context, "usages", "Single vertex atribute, usage")
139 Array::Usage usages[] = { Array::USAGE_STATIC_DRAW, Array::USAGE_STREAM_DRAW, Array::USAGE_DYNAMIC_DRAW, Array::USAGE_STATIC_COPY, Array::USAGE_STREAM_COPY, Array::USAGE_DYNAMIC_COPY, Array::USAGE_STATIC_READ, Array::USAGE_STREAM_READ, Array::USAGE_DYNAMIC_READ }; local
140 for (int usageNdx = 0; usageNdx < DE_LENGTH_OF_ARRAY(usages); usageNdx++)
142 addChild(new SingleVertexArrayUsageGroup(m_context, usages[usageNdx]));
es3sDrawTests.cpp 501 gls::DrawTestSpec::Usage usages[] = local
513 const UniformWeightArray<DE_LENGTH_OF_ARRAY(usages)> usageWeights;
549 attribSpec.usage = random.chooseWeighted<gls::DrawTestSpec::Usage> (DE_ARRAY_BEGIN(usages), DE_ARRAY_END(usages), usageWeights.weights);
  /external/deqp/modules/gles3/functional/
es3fBufferObjectQueryTests.cpp 309 const GLenum usages[] = local
318 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(usages); ++ndx)
320 glBufferData(m_bufferTarget, 16, DE_NULL, usages[ndx]);
323 m_verifier->verifyInteger(m_testCtx, m_bufferTarget, GL_BUFFER_USAGE, usages[ndx]);
es3fVertexArrayTest.cpp 125 : TestCaseGroup(context, "usages", "Single vertex atribute, usage")
136 Array::Usage usages[] = { Array::USAGE_STATIC_DRAW, Array::USAGE_STREAM_DRAW, Array::USAGE_DYNAMIC_DRAW, Array::USAGE_STATIC_COPY, Array::USAGE_STREAM_COPY, Array::USAGE_DYNAMIC_COPY, Array::USAGE_STATIC_READ, Array::USAGE_STREAM_READ, Array::USAGE_DYNAMIC_READ }; local
137 for (int usageNdx = 0; usageNdx < DE_LENGTH_OF_ARRAY(usages); usageNdx++)
139 addChild(new SingleVertexArrayUsageGroup(m_context, usages[usageNdx]));
    [all...]
es3fDrawTests.cpp 995 static const gls::DrawTestSpec::Usage usages[] = local
    [all...]
  /external/deqp/modules/gles31/stress/
es31sDrawTests.cpp 421 gls::DrawTestSpec::Usage usages[] =
433 const UniformWeightArray<DE_LENGTH_OF_ARRAY(usages)> usageWeights;
483 attribSpec.usage = random.chooseWeighted<gls::DrawTestSpec::Usage> (DE_ARRAY_BEGIN(usages), DE_ARRAY_END(usages), usageWeights.weights);
  /frameworks/base/rs/java/android/renderscript/
Script.java 448 protected void init(RenderScript rs, int dimx, int usages) {
451 Allocation.USAGE_SCRIPT | usages);
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Script.java 434 protected void init(RenderScript rs, int dimx, int usages) {
435 mAllocation = Allocation.createSized(rs, mElement, dimx, Allocation.USAGE_SCRIPT | usages);
  /external/deqp/modules/gles3/performance/
es3pBufferDataUploadTests.cpp 2007 static const deUint32 usages[] = local
    [all...]
  /frameworks/rs/api/
rs_object_types.spec 114 These values are ORed together to specify which usages or memory spaces are
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestInfo.java 606 * by peeking at the usages of the R.layout.name field corresponding to the layout and
626 * by peeking at the usages of the R.layout.name field corresponding to the layout and
731 * for all usages of Activity#setContentView(int), and for each match it looks up the
767 final Map<String, String> usages = new HashMap<String, String>(); local
768 mUsages = usages;
787 usages.put(matcher.group(1), fqcn);
    [all...]
  /external/deqp/modules/glshared/
glsVertexArrayTests.cpp 128 static const char* usages[] = local
144 return de::getSizedArrayElement<Array::USAGE_LAST>(usages, (int)usage);
642 static const GLenum usages[] = local
658 return de::getSizedArrayElement<Array::USAGE_LAST>(usages, (int)usage);
    [all...]
  /external/deqp/modules/gles31/functional/
es31fDrawTests.cpp     [all...]

Completed in 1698 milliseconds

1 2 3