/external/testng/src/main/java/org/testng/mustache/ |
D | VariableChunk.java | 5 private String m_variable; field in VariableChunk 9 m_variable = variable; in VariableChunk() 14 String result = m_model.resolveValueToString(m_variable); in compose() 21 return "[VariableChunk " + m_variable + " model:" + m_model + "]"; in toString()
|
/external/deqp/framework/randomshaders/ |
D | rsgStatement.cpp | 248 : m_variable (DE_NULL) in DeclarationStatement() 269 m_variable = variable; in DeclarationStatement() 275 switch (m_variable->getStorage()) in DeclarationStatement() 303 bool isConst = m_variable->getStorage() == Variable::STORAGE_CONST; in DeclarationStatement() 335 m_variable->tokenizeDeclaration(state, str); in tokenize() 351 execCtx.getValue(m_variable) = m_expression->getValue().value(); in execute() 537 : m_variable (variable) in AssignStatement() 543 : m_variable (variable) in AssignStatement() 558 str << Token(m_variable->getName()) << Token::EQUAL; in tokenize() 566 assignMasked(execCtx.getValue(m_variable), m_valueExpr->getValue(), execCtx.getExecutionMask()); in execute()
|
D | rsgShader.hpp | 70 const Variable* getVariable (void) const { return m_variable; } in getVariable() 71 …ConstValueRangeAccess getValueRange (void) const { return ConstValueRangeAccess(m_variable->getT… in getValueRange() 72 …ValueRangeAccess getValueRange (void) { return ValueRangeAccess(m_variable->getType(), &m_min… in getValueRange() 75 const Variable* m_variable; member in rsg::ShaderInput
|
D | rsgVariableValue.hpp | 348 …VariableValue (const Variable* variable) : m_variable(variable), m_storage(m_variable->getType())… in VariableValue() 351 const Variable* getVariable (void) const { return m_variable; } in getVariable() 352 ValueAccess getValue (void) { return m_storage.getValue(m_variable->getType()); } in getValue() 353 ConstValueAccess getValue (void) const { return m_storage.getValue(m_variable->getType()); } in getValue() 359 const VariableType& getType (void) const { return m_variable->getType(); } in getType() 361 const Variable* m_variable; member in rsg::VariableValue
|
D | rsgVariableValue.cpp | 270 : m_variable(other.m_variable) in VariableValue() 271 , m_storage(other.m_variable->getType()) in VariableValue() 278 m_variable = other.m_variable; in operator =()
|
D | rsgStatement.hpp | 84 const Variable* m_variable; member in rsg::DeclarationStatement 149 const Variable* m_variable; member in rsg::AssignStatement
|
D | rsgExpression.hpp | 74 …atorState& state, TokenStream& str) const { DE_UNREF(state); str << Token(m_variable->getName()); } in tokenize() 81 VariableAccess (void) : m_variable(DE_NULL) {} in VariableAccess() 83 const Variable* m_variable; member in rsg::VariableAccess
|
D | rsgExpression.cpp | 1122 m_variable = allocateNewVariable(state, newVarRange.asAccess()); in VariableRead() 1127 …m_variable = state.getRandom().choose<const ValueEntry*>(state.getVariableManager().getBegin(filte… in VariableRead() 1141 m_variable = allocateNewVariable(state, valueRange); in VariableRead() 1158 m_variable = entry->getVariable(); in VariableRead() 1161 ValueRange intersection(m_variable->getType()); in VariableRead() 1163 state.getVariableManager().setValue(m_variable, intersection.asAccess()); in VariableRead() 1170 m_variable = variable; in VariableRead() 1204 m_variable = state.getVariableManager().allocate(valueRange.getType()); in VariableWrite() 1212 m_variable = entry->getVariable(); in VariableWrite() 1215 DE_ASSERT(m_variable); in VariableWrite() [all …]
|
D | rsgVariableManager.cpp | 96 : m_variable (variable) in ValueEntry() 179 : m_variable(variable) in CompareEntryVariable() 185 return entry->getVariable() == m_variable; in operator ==() 189 const Variable* m_variable; member in rsg::CompareEntryVariable
|
D | rsgVariableManager.hpp | 49 const Variable* getVariable (void) const { return m_variable; } in getVariable() 55 const Variable* m_variable; member in rsg::ValueEntry
|
D | rsgShader.cpp | 59 : m_variable (variable) in ShaderInput()
|
/external/tensorflow/tensorflow/python/tpu/ |
D | tpu_embedding.py | 922 for host_id, table_variable, m_variable, v_variable in (zip( 929 momenta=m_variable, 945 for host_id, table_variable, m_variable, v_variable in (zip( 956 state_ops.assign(m_variable, retrieved_m),
|
/external/deqp/modules/glshared/ |
D | glsBuiltinPrecisionTests.cpp | 742 : m_variable (variable) in VariableStatement() 750 os << glu::declare(getVarTypeOf<T>(), m_variable->getName()); in doPrint() 752 os << m_variable->getName(); in doPrint() 760 ctx.env.bind(*m_variable, m_value->evaluate(ctx)); in doExecute() 762 ctx.env.lookup(*m_variable) = m_value->evaluate(ctx); in doExecute() 770 VariableP<T> m_variable; member in deqp::gls::BuiltinPrecisionTests::VariableStatement
|
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/ |
D | vktShaderBuiltinPrecisionTests.cpp | 1045 : m_variable (variable) in VariableStatement() 1053 os << glu::declare(getVarTypeOf<T>(), m_variable->getName()); in doPrint() 1055 os << m_variable->getName(); in doPrint() 1064 ctx.env.bind(*m_variable, m_value->evaluate(ctx)); in doExecute() 1066 ctx.env.lookup(*m_variable) = m_value->evaluate(ctx); in doExecute() 1077 ctx.env.bind(*m_variable, m_value->fails(ctx)); in doFail() 1079 ctx.env.lookup(*m_variable) = m_value->fails(ctx); in doFail() 1082 VariableP<T> m_variable; member in vkt::shaderexecutor::VariableStatement
|