Searched refs:m_context (Results 101 - 125 of 408) sorted by relevance

1234567891011>>

/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DAttributeIterator.java57 ? m_cdtm.getFirstAttribute(m_context)
H A DChildTestIterator.java84 ? m_traverser.first(m_context)
85 : m_traverser.next(m_context, m_lastFetched);
90 // ? m_traverser.first(m_context, m_extendedTypeID)
91 // : m_traverser.next(m_context, m_lastFetched,
H A DOneStepIteratorForward.java141 ? m_traverser.first(m_context)
142 : m_traverser.next(m_context, m_lastFetched);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptState.cpp32 , m_context(m_isolate, context)
38 m_context.setWeak(this, &weakCallback);
45 ASSERT(m_context.isEmpty());
50 ASSERT(!m_context.isEmpty());
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementMicrotaskResolutionStep.h64 RefPtrWillBeMember<CustomElementRegistrationContext> m_context; member in class:blink::CustomElementMicrotaskResolutionStep
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DFetchRequestData.cpp64 request->m_context = ConnectContext;
81 request->m_context = m_context;
97 , m_context(NullContext)
/external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
H A DExtensions3DUtil.h35 WebGraphicsContext3D* m_context; member in class:blink::Extensions3DUtil
/external/deqp/framework/platform/ios/
H A DtcuIOSPlatform.mm119 , m_context (DE_NULL)
124 m_context = [[EAGLContext alloc] initWithAPI:eaglApi];
125 if (!m_context)
130 if (![EAGLContext setCurrentContext:m_context])
142 if ([EAGLContext currentContext] == m_context)
145 [m_context release];
152 if ([EAGLContext currentContext] == m_context)
155 [m_context release];
/external/deqp/framework/platform/null/
H A DtcuNullRenderContext.hpp70 Context* m_context; member in class:tcu::null::RenderContext
/external/deqp/modules/gles31/functional/
H A Des31fShaderStateQueryTests.cpp88 const bool textureArraySupported = m_context.getContextInfo().isExtensionSupported("GL_OES_texture_storage_multisample_2d_array");
108 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
109 glu::ShaderProgram program (m_context.getRenderContext(), glu::ProgramSources() << glu::VertexSource(vertexSource) << glu::FragmentSource(fragmentSource));
171 addChild(new SamplerTypeCase(m_context, "sampler_type", "Sampler type cases"));
H A Des31fShaderTextureSizeTests.cpp152 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
162 if (m_isArrayType && !m_context.getContextInfo().isExtensionSupported("GL_OES_texture_storage_multisample_2d_array"))
164 if (m_context.getRenderTarget().getWidth() < 1 || m_context.getRenderTarget().getHeight() < 1)
171 m_shader = new glu::ShaderProgram(m_context.getRenderContext(), glu::ProgramSources() << glu::VertexSource(s_positionVertexShaderSource) << glu::FragmentSource(genFragmentSource()));
223 m_context.getRenderContext().getFunctions().deleteTextures(1, &m_texture);
229 m_context.getRenderContext().getFunctions().deleteBuffers(1, &m_vbo);
377 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
397 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
410 const glw::Functions& gl = m_context
[all...]
H A Des31fTessellationGeometryInteractionTests.cpp159 if (!m_context.getContextInfo().isExtensionSupported("GL_EXT_tessellation_shader") ||
160 !m_context.getContextInfo().isExtensionSupported("GL_EXT_geometry_shader"))
163 if (m_context.getRenderTarget().getWidth() < RENDER_SIZE ||
164 m_context.getRenderTarget().getHeight() < RENDER_SIZE)
187 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
200 m_context.getRenderContext().getFunctions().deleteBuffers(1, &m_patchBuffer);
209 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
251 const glu::ShaderProgram program (m_context.getRenderContext(), sources);
252 const glu::VertexArray vao (m_context.getRenderContext());
289 glu::readPixels(m_context
[all...]
H A Des31fUniformBlockTests.cpp213 createBlockBasicTypeCases(layoutGroup, m_context, typeName, parentType, layoutFlags[layoutFlagNdx].flags);
218 createBlockBasicTypeCases(layoutGroup, m_context, (string(matrixFlags[matFlagNdx].name) + "_" + typeName).c_str(),
246 createBlockBasicTypeCases(layoutGroup, m_context, typeName, parentType, layoutFlags[layoutFlagNdx].flags);
251 createBlockBasicTypeCases(layoutGroup, m_context, (string(matrixFlags[matFlagNdx].name) + "_" + typeName).c_str(),
281 modeGroup->addChild(new Block2LevelStructArrayCase(m_context, (baseName + "_vertex").c_str(), "", baseFlags|DECLARE_VERTEX, bufferModes[modeNdx].mode, isArray ? 3 : 0));
282 modeGroup->addChild(new Block2LevelStructArrayCase(m_context, (baseName + "_fragment").c_str(), "", baseFlags|DECLARE_FRAGMENT, bufferModes[modeNdx].mode, isArray ? 3 : 0));
285 modeGroup->addChild(new Block2LevelStructArrayCase(m_context, (baseName + "_both").c_str(), "", baseFlags|DECLARE_VERTEX|DECLARE_FRAGMENT, bufferModes[modeNdx].mode, isArray ? 3 : 0));
304 createRandomCaseGroup(randomGroup, m_context, "basic_type_arrays", "Arrays, per-block buffers", UniformBlockCase::BUFFERMODE_PER_BLOCK, basicTypeArrays, 25, 1150);
305 createRandomCaseGroup(randomGroup, m_context, "all_per_block_buffers", "All random features, per-block buffers", UniformBlockCase::BUFFERMODE_PER_BLOCK, allFeatures, 50, 11200);
306 createRandomCaseGroup(randomGroup, m_context, "all_shared_buffe
[all...]
H A Des31fTextureMultisampleTests.cpp191 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
196 if (m_context.getRenderTarget().getWidth() < m_canvasSize || m_context.getRenderTarget().getHeight() < m_canvasSize)
287 m_context.getRenderContext().getFunctions().deleteBuffers(1, &m_vboID);
293 m_context.getRenderContext().getFunctions().deleteVertexArrays(1, &m_vaoID);
299 m_context.getRenderContext().getFunctions().deleteTextures(1, &m_texID);
342 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
343 const glu::ShaderProgram program (m_context.getRenderContext(), glu::ProgramSources()
426 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
428 m_samplerProgram = new glu::ShaderProgram(m_context
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fFlushFinishTests.cpp175 m_program = new glu::ShaderProgram(m_context.getRenderContext(),
219 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
221 const int viewportW = de::min<int>(m_context.getRenderTarget().getWidth(), MAX_VIEWPORT_SIZE);
222 const int viewportH = de::min<int>(m_context.getRenderTarget().getHeight(), MAX_VIEWPORT_SIZE);
246 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
258 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
519 m_context.getRenderContext().getFunctions().flush();
540 m_context.getRenderContext().getFunctions().flush();
562 m_context.getRenderContext().getFunctions().finish();
583 m_context
[all...]
H A Des2fFragOpInteractionTests.cpp79 basicGroup->addChild(new FragOpInteractionCase(m_testCtx, m_context.getRenderContext(), m_context.getContextInfo(), de::toString(ndx).c_str(), params));
H A Des2fShaderInvarianceTests.cpp173 if (m_context.getRenderTarget().getWidth() < m_renderSize ||
174 m_context.getRenderTarget().getHeight() < m_renderSize)
182 m_shader0 = new glu::ShaderProgram(m_context.getRenderContext(), glu::ProgramSources() << glu::VertexSource(vertexShaders.vertexShaderSource0) << glu::FragmentSource(vertexShaders.fragmentShaderSource0));
189 m_shader1 = new glu::ShaderProgram(m_context.getRenderContext(), glu::ProgramSources() << glu::VertexSource(vertexShaders.vertexShaderSource1) << glu::FragmentSource(vertexShaders.fragmentShaderSource1));
209 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
251 m_context.getRenderContext().getFunctions().deleteBuffers(1, &m_arrayBuf);
258 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
259 const bool depthBufferExists = m_context.getRenderTarget().getDepthBits() != 0;
295 glu::readPixels(m_context.getRenderContext(), 0, 0, resultSurface.getAccess());
340 glu::readPixels(m_context
[all...]
/external/deqp/modules/gles2/performance/
H A Des2pTextureUploadTests.cpp126 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
142 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
177 m_program = new glu::ShaderProgram(m_context.getRenderContext(), glu::makeVtxFragSources(vertexShaderSource, fragmentShaderSource));
314 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
333 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
410 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
464 GLU_EXPECT_NO_ERROR(m_context.getRenderContext().getFunctions().getError(), "finish");
488 TestCaseGroup* uploadCall = new TestCaseGroup(m_context, "upload", "Texture upload");
489 TestCaseGroup* uploadAndDraw = new TestCaseGroup(m_context, "upload_draw_swap", "Texture upload, draw & buffer swap");
529 { 16, new TestCaseGroup(m_context, "1
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGTextLayoutAttributes.cpp30 : m_context(context)
61 fprintf(stderr, "context: %p\n", m_context);
/external/deqp/framework/opengl/
H A DgluContextInfo.hpp99 const std::vector<std::string>& getExtensions (void) const { return m_extensions.getValue(m_context); }
107 const RenderContext& m_context; member in class:glu::ContextInfo
H A DgluFboRenderContext.cpp124 : m_context (context)
142 : m_context (DE_NULL)
154 m_context = factory.createContext(nativeRenderConfig, cmdLine);
159 delete m_context;
167 delete m_context;
173 m_context->getFunctions().finish();
180 const glw::Functions& gl = m_context->getFunctions();
263 const glw::Functions& gl = m_context->getFunctions();
/external/deqp/modules/gles3/functional/
H A Des3fFragOpInteractionTests.cpp79 basicGroup->addChild(new FragOpInteractionCase(m_testCtx, m_context.getRenderContext(), m_context.getContextInfo(), de::toString(ndx).c_str(), params));
H A Des3fShaderInvarianceTests.cpp173 if (m_context.getRenderTarget().getWidth() < m_renderSize ||
174 m_context.getRenderTarget().getHeight() < m_renderSize)
182 m_shader0 = new glu::ShaderProgram(m_context.getRenderContext(), glu::ProgramSources() << glu::VertexSource(vertexShaders.vertexShaderSource0) << glu::FragmentSource(vertexShaders.fragmentShaderSource0));
189 m_shader1 = new glu::ShaderProgram(m_context.getRenderContext(), glu::ProgramSources() << glu::VertexSource(vertexShaders.vertexShaderSource1) << glu::FragmentSource(vertexShaders.fragmentShaderSource1));
209 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
251 m_context.getRenderContext().getFunctions().deleteBuffers(1, &m_arrayBuf);
258 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
259 const bool depthBufferExists = m_context.getRenderTarget().getDepthBits() != 0;
295 glu::readPixels(m_context.getRenderContext(), 0, 0, resultSurface.getAccess());
340 glu::readPixels(m_context
[all...]
H A Des3fFragDepthTests.cpp126 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
128 const tcu::RenderTarget& renderTarget = m_context.getRenderContext().getRenderTarget();
148 glu::ShaderProgram basicQuadProgram(m_context.getRenderContext(), glu::makeVtxFragSources(s_vertexShaderSrc, s_defaultFragmentShaderSrc));
177 glu::draw(m_context.getRenderContext(), basicQuadProgram.getProgram(), 1, &posBinding,
183 glu::draw(m_context.getRenderContext(), basicQuadProgram.getProgram(), 1, &posBinding,
192 glu::ShaderProgram program(m_context.getRenderContext(), glu::makeVtxFragSources(s_vertexShaderSrc, m_fragSrc.c_str()));
218 gls::setupDefaultUniforms(m_context.getRenderContext(), program.getProgram());
226 glu::draw(m_context.getRenderContext(), program.getProgram(), DE_LENGTH_OF_ARRAY(vertexArrays), &vertexArrays[0],
233 glu::readPixels(m_context.getRenderContext(), viewportX, viewportY, renderedFrame.getAccess());
297 const glw::Functions& gl = m_context
[all...]
/external/deqp/modules/gles31/stress/
H A Des31sDrawTests.cpp149 m_context.getRenderContext().getFunctions().deleteBuffers(1, &m_dataBufferID);
154 m_context.getRenderContext().getFunctions().deleteBuffers(1, &m_indexBufferID);
159 m_context.getRenderContext().getFunctions().deleteBuffers(1, &m_cmdBufferID);
164 m_context.getRenderContext().getFunctions().deleteBuffers(1, &m_colorBufferID);
169 m_context.getRenderContext().getFunctions().deleteVertexArrays(1, &m_vao);
181 glu::CallLogWrapper gl (m_context.getRenderContext().getFunctions(), m_testCtx.getLog());
182 glu::ShaderProgram program (m_context.getRenderContext(), glu::ProgramSources() << glu::VertexSource(s_colorVertexShaderSource) << glu::FragmentSource(s_colorFragmentShaderSource));
541 this->addChild(new gls::DrawTest(m_testCtx, m_context.getRenderContext(), spec, de::toString(insertedCount).c_str(), spec.getDesc().c_str()));
573 unalignedGroup->addChild(new RandomGroup(m_context, "random", "random draw commands."));
578 drawArraysGroup->addChild(new InvalidDrawCase(m_context, "data_over_bounds_with_coun
[all...]

Completed in 349 milliseconds

1234567891011>>