Home
last modified time | relevance | path

Searched refs:getVariable (Results 1 – 25 of 204) sorted by relevance

123456789

/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/javasymbolsolver_0_6_0/expected_output/java-symbol-solver-core/
Dcom_github_javaparser_symbolsolver_javaparsermodel_contexts_ForechStatementContext.txt1 …Line 41) wrappedNode.getVariable().getVariables().size() ==> com.github.javaparser.ast.NodeList.si…
2 …Line 41) wrappedNode.getVariable().getVariables() ==> com.github.javaparser.ast.expr.VariableDecla…
3 Line 41) wrappedNode.getVariable() ==> com.github.javaparser.ast.stmt.ForeachStmt.getVariable()
4 …Line 44) wrappedNode.getVariable().getVariables().get(0) ==> com.github.javaparser.ast.NodeList.ge…
5 …Line 44) wrappedNode.getVariable().getVariables() ==> com.github.javaparser.ast.expr.VariableDecla…
6 Line 44) wrappedNode.getVariable() ==> com.github.javaparser.ast.stmt.ForeachStmt.getVariable()
Dcom_github_javaparser_symbolsolver_javaparsermodel_JavaParserFactory.txt23 Line 112) foreachStmt.getVariable() ==> com.github.javaparser.ast.stmt.ForeachStmt.getVariable()
/external/deqp/framework/randomshaders/
DrsgShaderGenerator.cpp86 if (deStringEqual(entry->getVariable()->getName(), name)) in findByName()
101 const Variable* outVar = entry->getVariable(); in genVertexPassthrough()
120 createAssignment(shader.getMain().getBody(), entry->getVariable(), inVar); in genVertexPassthrough()
130 …Variable* inColorVariable = state.getVariableManager().allocate(fragColorEntry->getVariable()->get… in genFragmentPassthrough()
133 createAssignment(shader.getMain().getBody(), fragColorEntry->getVariable(), inColorVariable); in genFragmentPassthrough()
166 if (!(*i)->getVariable()->getType().isSampler()) // Samplers are assigned at program-level. in fillUndefinedShaderInputs()
197 …e.getVariableManager().allocate(input->getVariable()->getType(), Variable::STORAGE_SHADER_OUT, inp… in generate()
DrsgProgramGenerator.cpp78 if ((*i)->getVariable()->getType().isSampler()) in generate()
84 if ((*i)->getVariable()->getType().isSampler()) in generate()
92 if (input->getVariable()->getType().isSampler()) in generate()
DrsgProgramExecutor.cpp230 execCtx.getValue(uniformIter->getVariable()) = uniformIter->getValue().value(); in execute()
241 ExecValueAccess access = execCtx.getValue(input->getVariable()); in execute()
283 execCtx.getValue(i->getVariable()) = i->getValue().value(); in execute()
317 ExecValueAccess access = execCtx.getValue(input->getVariable()); in execute()
318 const VariableType& type = input->getVariable()->getType(); in execute()
319 const VaryingStorage* src = varyingStore.getStorage(type, input->getVariable()->getName()); in execute()
DrsgVariableManager.hpp49 const Variable* getVariable (void) const { return m_variable; } in getVariable() function in rsg::ValueEntry
304 switch (entry->getVariable()->getStorage()) in operator ()()
327 return entry->getVariable()->getStorage() == Storage; in operator ()()
DrsgVariableManager.cpp185 return entry->getVariable() == m_variable; in operator ==()
448 oldValues[(*valueIter)->getVariable()] = *valueIter; in popValueScope()
461 const Variable* var = entry->getVariable(); in popValueScope()
496 const Variable* var = oldEntry->getVariable(); in popValueScope()
/external/deqp/modules/glshared/
DglsRandomShaderProgram.cpp78 …sglr::pdec::VertexAttribute(vertexInput->getVariable()->getName(), mapToGenericVecType(vertexInput… in generateProgramDeclaration()
84 …decl << sglr::pdec::VertexToFragmentVarying(mapToGenericVecType(fragInput->getVariable()->getType(… in generateProgramDeclaration()
90 …decl << sglr::pdec::Uniform(uniform->getVariable()->getName(), mapToBasicType(uniform->getVariable in generateProgramDeclaration()
148 …const rsg::Variable* vertexOutput = findShaderOutputByName(vertexShader, fragInput->getVariable()-… in RandomShaderProgram()
161 const rsg::Variable* uniformVar = m_unifiedUniforms[uniformNdx]->getVariable(); in refreshUniforms()
183 const rsg::Variable* attribVar = m_vertexShader.getInputs()[attribNdx]->getVariable(); in shadeVertices()
262 const rsg::Variable* var = m_fragmentShader.getInputs()[varNdx]->getVariable(); in shadeFragments()
DglsRandomShaderCase.cpp80 , m_vertices (input->getVariable()->getType().getNumElements() * numVertices) in VertexArray()
161 int numComponents = input->getVariable()->getType().getNumElements(); in init()
163 bool isPosition = string(input->getVariable()->getName()) == "dEQP_Position"; in init()
165 TCU_CHECK(input->getVariable()->getType().getBaseType() == rsg::VariableType::TYPE_FLOAT); in init()
224 const rsg::VariableType& type = uniformIter->getVariable()->getType(); in init()
246 if ((*it)->getVariable()->getType().isSampler()) in getNumSamplerUniforms()
507 …GLint location = glGetUniformLocation(program.getProgram(), uniformIter->getVariable()->getName()); in iterate()
509 …log << tcu::TestLog::Message << "uniform[" << location << "]: " << uniformIter->getVariable()->get… in iterate()
DglsRandomShaderCase.hpp52 const char* getName (void) const { return m_input->getVariable()->getName(); } in getName()
53 …int getNumComponents (void) const { return m_input->getVariable()->getType().getNumElements(… in getNumComponents()
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/printer/lexicalpreservation/
DTransformationsTest.java46 cu.getClassByName("A").get().getFieldByName("a").get().getVariable(0).setInitializer("10"); in example2()
53 …cu.getClassByName("A").get().getFieldByName("a").get().getVariable(0).setInitializer((Expression) … in example3()
60 …cu.getClassByName("A").get().getFieldByName("a").get().getVariable(0).setInitializer(new NullLiter… in example5()
67 … cu.getClassByName("A").get().getFieldByName("a").get().getVariable(0).setName("someOtherName"); in example6()
74 …cu.getClassByName("A").get().getFieldByName("a").get().getVariable(0).setType(new ArrayType(Primit… in example7()
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/analysis/
DDepthFirstAdapter.java227 if(node.getVariable() != null) in caseASetCommand()
229 node.getVariable().apply(this); in caseASetCommand()
256 if(node.getVariable() != null) in caseANameCommand()
258 node.getVariable().apply(this); in caseANameCommand()
339 if(node.getVariable() != null) in caseAWithCommand()
341 node.getVariable().apply(this); in caseAWithCommand()
372 if(node.getVariable() != null) in caseALoopToCommand()
374 node.getVariable().apply(this); in caseALoopToCommand()
405 if(node.getVariable() != null) in caseALoopCommand()
407 node.getVariable().apply(this); in caseALoopCommand()
[all …]
DReversedDepthFirstAdapter.java228 if(node.getVariable() != null) in caseASetCommand()
230 node.getVariable().apply(this); in caseASetCommand()
253 if(node.getVariable() != null) in caseANameCommand()
255 node.getVariable().apply(this); in caseANameCommand()
344 if(node.getVariable() != null) in caseAWithCommand()
346 node.getVariable().apply(this); in caseAWithCommand()
377 if(node.getVariable() != null) in caseALoopToCommand()
379 node.getVariable().apply(this); in caseALoopToCommand()
414 if(node.getVariable() != null) in caseALoopCommand()
416 node.getVariable().apply(this); in caseALoopCommand()
[all …]
/external/swiftshader/third_party/LLVM/lib/VMCore/
DDebugInfoProbe.cpp81 Node = DDI->getVariable(); in initialize()
84 Node = DVI->getVariable(); in initialize()
132 Node = DDI->getVariable(); in finalize()
135 Node = DVI->getVariable(); in finalize()
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/printer/lexicalpreservation/transformations/ast/body/
DFieldDeclarationTransformationsTest.java71 it.getVariable(0).setType("Xyz"); in changingTypes()
73 it.getVariable(1).setType("Xyz"); in changingTypes()
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/type/
DArrayTypeTest.java47 ArrayType arrayType1 = fieldDeclaration.getVariable(0).getType().asArrayType(); in getFieldDeclarationWithArrays()
69 ArrayType arrayType1 = variableDeclarationExpr.getVariable(0).getType().asArrayType(); in getVariableDeclarationWithArrays()
126 …variableDeclarationExpr.getVariable(0).setType(new ArrayType(new ArrayType(PrimitiveType.intType()… in setVariableDeclarationWithArrays()
133 …fieldDeclaration.getVariable(0).setType(new ArrayType(new ArrayType(parseClassOrInterfaceType("Blo… in setFieldDeclarationWithArrays()
DTypeTest.java45 assertEquals("List<long>", decl.getVariable(0).getType().asString()); in primitiveTypeArgumentLenientValidator()
49 return parseVariableDeclarationExpr(s).getVariable(0).getType().asString(); in typeAsString()
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/nodeTypes/
DNodeWithVariablesTest.java53 declaration.getVariable(1).setType(String.class); in getCommonTypeFailsOnDodgySetterUsage()
84 declaration.getVariable(1).setType(String.class); in getElementTypeFailsOnDodgySetterUsage()
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
DTemplateInterpreter.java206 String variableName = variableLocator.getVariableName(node.getVariable()); in caseASetCommand()
231 String variableName = variableLocator.getVariableName(node.getVariable()); in caseANameCommand()
294 String withVar = variableLocator.getVariableName(node.getVariable()); in caseAWithCommand()
324 loop(node.getVariable(), 0, end, 1, node.getCommand()); in caseALoopToCommand()
341 loop(node.getVariable(), start, end, 1, node.getCommand()); in caseALoopCommand()
365 loop(node.getVariable(), start, end, incr, node.getCommand()); in caseALoopIncCommand()
381 each(node.getVariable(), variableValue.getName(), parent, node.getCommand()); in caseAEachCommand()
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/contexts/
DForechStatementContext.java41 if (wrappedNode.getVariable().getVariables().size() != 1) { in solveSymbol()
44 VariableDeclarator variableDeclarator = wrappedNode.getVariable().getVariables().get(0); in solveSymbol()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Transforms/Utils/
DCloning.cpp534 EXPECT_EQ(OldIntrin->getVariable(), NewIntrin->getVariable()); in TEST_F()
538 cast<DISubprogram>(OldIntrin->getVariable()->getScope())); in TEST_F()
541 cast<DISubprogram>(NewIntrin->getVariable()->getScope())); in TEST_F()
550 cast<DISubprogram>(OldIntrin->getVariable()->getScope())); in TEST_F()
553 cast<DISubprogram>(NewIntrin->getVariable()->getScope())); in TEST_F()
669 DIGlobalVariable *GV = GVExpr->getVariable(); in TEST_F()
700 DIGlobalVariable *GV = GVExpr->getVariable(); in TEST_F()
/external/swiftshader/third_party/LLVM/tools/llvm-dis/
Dllvm-dis.cpp92 DIVariable Var(DDI->getVariable()); in printInfoComment()
101 DIVariable Var(DVI->getVariable()); in printInfoComment()
/external/llvm/lib/CodeGen/AsmPrinter/
DDwarfFile.cpp147 const DILocalVariable *DV = Var->getVariable(); in addScopeVariable()
159 unsigned CurNum = (*I)->getVariable()->getArg(); in addScopeVariable()
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
DTemplateTranslator.java267 .translate(node.getVariable()), true))); in caseASetCommand()
287 callFindVariable(variableTranslator.translate(node.getVariable()), false); in caseANameCommand()
316 writeEach(node.getVariable(), parent, node.getCommand()); in caseAEachCommand()
349 JavaExpression itemKey = variableTranslator.translate(node.getVariable()); in caseAWithCommand()
379 writeLoop(node.getVariable(), start, end, incr, node.getCommand()); in caseALoopToCommand()
392 writeLoop(node.getVariable(), start, end, incr, node.getCommand()); in caseALoopCommand()
406 writeLoop(node.getVariable(), start, end, incr, node.getCommand()); in caseALoopIncCommand()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-dis/
Dllvm-dis.cpp111 OS << " [debug variable = " << DDI->getVariable()->getName() << "]"; in printInfoComment()
118 OS << " [debug variable = " << DVI->getVariable()->getName() << "]"; in printInfoComment()

123456789