Home
last modified time | relevance | path

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

1234567891011

/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/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()
/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 ()()
/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-core/src/main/java/com/github/javaparser/ast/stmt/
DForEachStmt.java106 public VariableDeclarationExpr getVariable() { in getVariable() method in ForEachStmt
163 return getVariable().getVariable(0); in getVariableDeclarator()
178 …return getVariable().getModifiers().isNonEmpty() && getVariable().getModifiers().get(0).getKeyword… in hasFinalVariable()
/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/printer/lexicalpreservation/transformations/ast/body/
DFieldDeclarationTransformationsTest.java73 it.getVariable(0).setType("Xyz"); in changingTypes()
75 it.getVariable(1).setType("Xyz"); in changingTypes()
82 it.getVariable(0).setType("Xyz"); in changingNonePrimitiveTypes()
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/contexts/
DForEachStatementContext.java43 if (wrappedNode.getVariable().getVariables().size() != 1) { in solveSymbol()
46 VariableDeclarator variableDeclarator = wrappedNode.getVariable().getVariables().get(0); in solveSymbol()
67 return wrappedNode.getVariable().getVariables(); in localVariablesExposedToChild()
/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/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/printer/lexicalpreservation/
DTransformationsTest.java55 cu.getClassByName("A").get().getFieldByName("a").get().getVariable(0).setInitializer("10"); in example2()
62 …cu.getClassByName("A").get().getFieldByName("a").get().getVariable(0).setInitializer((Expression) … in example3()
69 …cu.getClassByName("A").get().getFieldByName("a").get().getVariable(0).setInitializer(new NullLiter… in example5()
76 … cu.getClassByName("A").get().getFieldByName("a").get().getVariable(0).setName("someOtherName"); in example6()
83 …cu.getClassByName("A").get().getFieldByName("a").get().getVariable(0).setType(new ArrayType(Primit… in example7()
/external/swiftshader/src/Pipeline/
DPixelProgram.cpp151 routine.getVariable(it->second.Id)[it->second.FirstComponent] = As<Float4>(frontFacing); in applyShader()
166 routine.getVariable(it->second.Id)[it->second.FirstComponent] = As<Float4>(inputSampleMask); in applyShader()
170 routine.getVariable(it->second.Id)[it->second.FirstComponent + i] = Float4(0); in applyShader()
176 routine.getVariable(it->second.Id)[it->second.FirstComponent] = in applyShader()
183 routine.getVariable(it->second.Id)[it->second.FirstComponent + 0] = in applyShader()
185 routine.getVariable(it->second.Id)[it->second.FirstComponent + 1] = in applyShader()
227 …auto outputSampleMask = As<SIMD::Int>(routine.getVariable(it->second.Id)[it->second.FirstComponent… in applyShader()
238 …oDepth = Min(Max(routine.getVariable(it->second.Id)[it->second.FirstComponent], Float4(0.0f)), Flo… in applyShader()
/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/ast/
DAncestorDescendantTests.java65 Expression subNode = superNode.getVariable(0).getInitializer().get(); // 42 in nodeInSameFileIsDescendantOfAncestor()
93 Expression subNodeA = superNodeA.getVariable(0).getInitializer().get(); // 42 in nodesInTwoDifferentFilesAreNotDescendantOrAncestorOfEachOther()
101 Expression subNodeB = superNodeB.getVariable(0).getInitializer().get(); // 42 in nodesInTwoDifferentFilesAreNotDescendantOrAncestorOfEachOther()
/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/ast/type/
DArrayTypeTest.java44 ArrayType arrayType1 = fieldDeclaration.getVariable(0).getType().asArrayType(); in getFieldDeclarationWithArrays()
66 ArrayType arrayType1 = variableDeclarationExpr.getVariable(0).getType().asArrayType(); in getVariableDeclarationWithArrays()
123 …variableDeclarationExpr.getVariable(0).setType(new ArrayType(new ArrayType(PrimitiveType.intType()… in setVariableDeclarationWithArrays()
130 …fieldDeclaration.getVariable(0).setType(new ArrayType(new ArrayType(parseClassOrInterfaceType("Blo… in setFieldDeclarationWithArrays()
DTypeTest.java46 assertEquals("List<long>", decl.getVariable(0).getType().asString()); in primitiveTypeArgumentLenientValidator()
50 return parseVariableDeclarationExpr(s).getVariable(0).getType().asString(); in typeAsString()
/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/ast/nodeTypes/
DNodeWithVariablesTest.java55 declaration.getVariable(1).setType(String.class); in getCommonTypeFailsOnDodgySetterUsage()
90 declaration.getVariable(1).setType(String.class); in getElementTypeFailsOnDodgySetterUsage()
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-core/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/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/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DLiveDebugValues.cpp384 dbgs() << ", \"" << Var.getVariable()->getName() << "\", " << *Expr in dump()
637 auto MapIt = OverlappingFragments.find({Var.getVariable(), ThisFragment}); in erase()
643 DoErase({Var.getVariable(), FragmentHolder, Var.getInlinedAt()}); in erase()
694 Out << " Var: " << VL.Var.getVariable()->getName(); in printVarLocInMBB()
831 if (!VarLocIDs[ID].Var.getVariable()->isParameter()) in emitEntryValues()
1096 << VarLocIDs[ID].Var.getVariable()->getName() << ")\n"); in transferSpillOrRestoreInst()
1101 << VarLocIDs[ID].Var.getVariable()->getName() << ")\n"); in transferSpillOrRestoreInst()
1221 auto SeenIt = SeenFragments.find(MIVar.getVariable()); in accumulateFragmentMap()
1225 SeenFragments.insert({MIVar.getVariable(), OneFragment}); in accumulateFragmentMap()
1227 OverlappingFragments.insert({{MIVar.getVariable(), ThisFragment}, {}}); in accumulateFragmentMap()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DDwarfDebug.h169 const DILocalVariable *getVariable() const { in getVariable() function
182 StringRef getName() const { return getVariable()->getName(); } in getName()
192 if (getVariable()->isParameter()) in getTag()
200 if (getVariable()->isArtificial()) in isArtificial()
208 if (getVariable()->isObjectPointer()) in isObjectPointer()
/external/llvm-project/llvm/lib/CodeGen/LiveDebugValues/
DVarLocBasedImpl.cpp531 Out << ", \"" << Var.getVariable()->getName() << "\", " << *Expr << ", "; in dump()
856 auto MapIt = OverlappingFragments.find({Var.getVariable(), ThisFragment}); in erase()
862 DoErase({Var.getVariable(), FragmentHolder, Var.getInlinedAt()}); in erase()
966 Out << " Var: " << VL.Var.getVariable()->getName(); in printVarLocInMBB()
1110 if (!VL.Var.getVariable()->isParameter()) in emitEntryValues()
1414 << VL.Var.getVariable()->getName() << ")\n"); in transferSpillOrRestoreInst()
1422 << VL.Var.getVariable()->getName() << ")\n"); in transferSpillOrRestoreInst()
1547 auto SeenIt = SeenFragments.find(MIVar.getVariable()); in accumulateFragmentMap()
1551 SeenFragments.insert({MIVar.getVariable(), OneFragment}); in accumulateFragmentMap()
1553 OverlappingFragments.insert({{MIVar.getVariable(), ThisFragment}, {}}); in accumulateFragmentMap()
[all …]
/external/llvm-project/llvm/lib/CodeGen/AsmPrinter/
DDwarfDebug.h167 const DILocalVariable *getVariable() const { in getVariable() function
180 StringRef getName() const { return getVariable()->getName(); } in getName()
190 if (getVariable()->isParameter()) in getTag()
198 if (getVariable()->isArtificial()) in isArtificial()
206 if (getVariable()->isObjectPointer()) in isObjectPointer()

1234567891011