Home
last modified time | relevance | path

Searched defs:contextInfo (Results 1 – 25 of 112) sorted by relevance

12345

/aosp_15_r20/external/sdk-platform-java/gapic-generator-java/src/main/java/com/google/api/generator/engine/ast/
H A DClassDefinition.java213 String contextInfo = String.format("class definition of %s", name()); in performNullChecks() local
215 classDef.headerCommentStatements(), "header comments", contextInfo); in performNullChecks() local
216 NodeValidator.checkNoNullElements(classDef.annotations(), "annotations", contextInfo); in performNullChecks() local
219 classDef.implementsTypes(), "implemented types", contextInfo); in performNullChecks() local
220 NodeValidator.checkNoNullElements(classDef.statements(), "statements", contextInfo); in performNullChecks() local
222 NodeValidator.checkNoNullElements(classDef.methods(), "methods", contextInfo); in performNullChecks() local
223 NodeValidator.checkNoNullElements(classDef.nestedClasses(), "nested classes", contextInfo); in performNullChecks() local
H A DMethodDefinition.java378 String contextInfo = String.format("method definition of %s", name()); in performNullChecks() local
379 NodeValidator.checkNoNullElements(headerCommentStatements(), "header comments", contextInfo); in performNullChecks() local
380 NodeValidator.checkNoNullElements(annotations(), "annotations", contextInfo); in performNullChecks() local
381 NodeValidator.checkNoNullElements(throwsExceptions(), "declared exceptions", contextInfo); in performNullChecks() local
382 NodeValidator.checkNoNullElements(body(), "body", contextInfo); in performNullChecks() local
383 NodeValidator.checkNoNullElements(templateNames(), "template names", contextInfo); in performNullChecks() local
385 returnTemplateNames(), "return template names", contextInfo); in performNullChecks() local
H A DPackageInfoDefinition.java74 String contextInfo = String.format("package info for %s", packageInfo.pakkage()); in build() local
75 NodeValidator.checkNoNullElements(packageInfo.fileHeader(), "file header", contextInfo); in build() local
77 packageInfo.headerCommentStatements(), "header comments", contextInfo); in build() local
78 NodeValidator.checkNoNullElements(packageInfo.annotations(), "annotations", contextInfo); in build() local
H A DAnonymousClassExpr.java68 String contextInfo = in build() local
70 NodeValidator.checkNoNullElements(anonymousClassExpr.methods(), "methods", contextInfo); in build() local
71 NodeValidator.checkNoNullElements(anonymousClassExpr.statements(), "statements", contextInfo); in build() local
H A DVaporReference.java187 String contextInfo = String.format("vapor reference %s", name()); in build() local
188 NodeValidator.checkNoNullElements(generics(), "generics", contextInfo); in build() local
189 NodeValidator.checkNoNullElements(enclosingClassNames(), "enclosingClassNames", contextInfo); in build() local
/aosp_15_r20/external/deqp/framework/opengl/
H A DgluTexture.cpp130 Texture2D::Texture2D(const RenderContext &context, const ContextInfo &contextInfo, int numLevels, in Texture2D()
218 Texture2D *Texture2D::create(const RenderContext &context, const ContextInfo &contextInfo, const tc… in create()
282 Texture2D *Texture2D::create(const RenderContext &context, const ContextInfo &contextInfo, const tc… in create()
332 TextureCube::TextureCube(const RenderContext &context, const ContextInfo &contextInfo, int numLevel… in TextureCube()
451 TextureCube *TextureCube::create(const RenderContext &context, const ContextInfo &contextInfo, in create()
474 TextureCube *TextureCube::create(const RenderContext &context, const ContextInfo &contextInfo, in create()
572 Texture2DArray::Texture2DArray(const RenderContext &context, const ContextInfo &contextInfo, int nu… in Texture2DArray()
693 Texture3D::Texture3D(const RenderContext &context, const ContextInfo &contextInfo, int numLevels, in Texture3D()
H A DgluTextureUtil.cpp1476 static uint32_t getRenderableBitsES3(const ContextInfo &contextInfo, uint32_t internalFormat) in getRenderableBitsES3()
1555 bool isSizedFormatColorRenderable(const RenderContext &renderCtx, const ContextInfo &contextInfo, u… in isSizedFormatColorRenderable()
/aosp_15_r20/external/deqp/external/openglcts/modules/common/
H A DglcParallelShaderCompileTests.cpp80 const glu::ContextInfo &contextInfo = m_context.getContextInfo(); in iterate() local
170 const glu::ContextInfo &contextInfo = m_context.getContextInfo(); in iterate() local
233 const glu::ContextInfo &contextInfo = m_context.getContextInfo(); in iterate() local
/aosp_15_r20/external/skia/include/private/chromium/
H A DGrSurfaceCharacterization.h89 GrContextThreadSafeProxy* contextInfo() const { return fContextInfo.get(); } in contextInfo() function
127 GrSurfaceCharacterization(sk_sp<GrContextThreadSafeProxy> contextInfo, in GrSurfaceCharacterization()
160 void set(sk_sp<GrContextThreadSafeProxy> contextInfo, in set()
/aosp_15_r20/external/deqp/modules/glshared/
H A DglsShaderLibrary.cpp38 …tory(tcu::TestContext &testCtx, glu::RenderContext &renderCtx, const glu::ContextInfo &contextInfo) in CaseFactory()
66 const glu::ContextInfo &contextInfo) in ShaderLibrary()
/aosp_15_r20/external/skia/tools/testrunners/common/surface_manager/
H A DGaneshVulkanSurfaceManager.cpp20 sk_gpu_test::ContextInfo contextInfo, in GaneshVulkanSurfaceManager()
65 sk_gpu_test::ContextInfo contextInfo = in makeVulkanSurfaceManager() local
H A DGaneshGLSurfaceManager.cpp24 sk_gpu_test::ContextInfo contextInfo, in GaneshGLSurfaceManager()
69 sk_gpu_test::ContextInfo contextInfo = in makeGLESSurfaceManager() local
/aosp_15_r20/external/tink/java_src/src/test/java/com/google/crypto/tink/hybrid/subtle/
H A DRsaKemHybridDecryptTest.java154 public byte[] contextInfo; field in RsaKemHybridDecryptTest.RsaKemHybridTestVector
163 String contextInfo, in RsaKemHybridTestVector()
/aosp_15_r20/external/tink/testing/java_src/javatests/com/google/crypto/tink/testing/
H A DAsymmetricTestingServicesTest.java175 byte[] contextInfo) { in hybridEncrypt()
192 byte[] contextInfo) { in hybridDecrypt()
/aosp_15_r20/external/tink/java_src/src/main/java/com/google/crypto/tink/
H A DHybridDecrypt.java71 byte[] decrypt(final byte[] ciphertext, final byte[] contextInfo) throws GeneralSecurityException; in decrypt()
H A DHybridEncrypt.java71 byte[] encrypt(final byte[] plaintext, final byte[] contextInfo) throws GeneralSecurityException; in encrypt()
/aosp_15_r20/external/deqp/external/openglcts/modules/gles2/
H A Des2cTexture3DTests.cpp166 const glu::ContextInfo &contextInfo = m_context.getContextInfo(); in getSupportedCompressedFormats() local
1066 const glu::ContextInfo &contextInfo = m_context.getContextInfo(); in iterate() local
1655 const glu::ContextInfo &contextInfo = m_context.getContextInfo(); in iterate() local
1787 const glu::ContextInfo &contextInfo = m_context.getContextInfo(); in iterate() local
/aosp_15_r20/packages/modules/AdServices/adservices/libraries/cobalt/java/com/android/cobalt/crypto/
DHpkeEncrypt.java31 byte[] encrypt(byte[] publicKey, byte[] plainText, byte[] contextInfo); in encrypt()
/aosp_15_r20/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/topics/
DEncrypter.java29 byte[] encrypt(byte[] publicKey, byte[] plainText, byte[] contextInfo); in encrypt()
DHpkeEncrypter.java50 @NonNull byte[] publicKey, @NonNull byte[] plainText, @NonNull byte[] contextInfo) { in encrypt()
/aosp_15_r20/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/cobalt/
DHpkeEncryptImpl.java38 public byte[] encrypt(byte[] publicKey, byte[] plainText, byte[] contextInfo) { in encrypt()
/aosp_15_r20/external/skia/tests/
H A DSkbug12214.cpp22 DEF_GANESH_TEST_FOR_ALL_CONTEXTS(skbug12214, r, contextInfo, CtsEnforcement::kApiLevel_T) { in DEF_GANESH_TEST_FOR_ALL_CONTEXTS() argument
H A DSkbug5221.cpp37 DEF_GANESH_TEST_FOR_ALL_CONTEXTS(skbug5221_GPU, r, contextInfo, CtsEnforcement::kNever) { in DEF_GANESH_TEST_FOR_ALL_CONTEXTS() argument
/aosp_15_r20/packages/modules/AdServices/sdksandbox/framework/java/android/app/sdksandbox/sandboxactivity/
DSdkSandboxActivityAuthority.java98 ActivityContextInfo contextInfo = registry.getContextInfo(intent); in getActivityContextInfo() local
/aosp_15_r20/external/deqp/modules/gles31/
H A Dtes31TestPackage.cpp76 const glu::ContextInfo &contextInfo = m_context->getContextInfo(); in init() local

12345