Searched refs:VariableScope (Results 1 – 14 of 14) sorted by relevance
/external/deqp/framework/randomshaders/ |
D | rsgVariableManager.hpp | 60 class VariableScope class 63 VariableScope (void); 64 ~VariableScope (void); 76 VariableScope (const VariableScope& other); 77 VariableScope& operator= (const VariableScope& other); 222 void pushVariableScope (VariableScope& scope); 241 VariableScope& getCurVariableScope (void) { return *m_variableScopeStack.back(); } in getCurVariableScope() 242 const VariableScope& getCurVariableScope (void) const { return *m_variableScopeStack.back(); } in getCurVariableScope() 247 std::vector<VariableScope*> m_variableScopeStack;
|
D | rsgVariableManager.cpp | 101 VariableScope::VariableScope (void) in VariableScope() function in rsg::VariableScope 105 VariableScope::~VariableScope (void) in ~VariableScope() 114 Variable* VariableScope::allocate (const VariableType& type, Variable::Storage storage, const char*… in allocate() 129 void VariableScope::declare (Variable* variable) in declare() 135 void VariableScope::removeLive (const Variable* variable) in removeLive() 244 VariableScope& varScope = getCurVariableScope(); in allocate() 387 void VariableManager::pushVariableScope (VariableScope& scope) in pushVariableScope() 398 VariableScope& curScope = getCurVariableScope(); in popVariableScope() 404 VariableScope& parentScope = *m_variableScopeStack[m_variableScopeStack.size()-2]; in popVariableScope()
|
D | rsgShader.hpp | 103 VariableScope& getGlobalScope (void) { return m_globalScope; } in getGlobalScope() 120 VariableScope m_globalScope;
|
D | rsgStatement.hpp | 106 VariableScope m_scope;
|
D | rsgShaderGenerator.cpp | 176 VariableScope& globalVariableScope = shader.getGlobalScope(); in generate()
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.-variable-scope.pbtxt | 1 path: "tensorflow.VariableScope" 3 is_instance: "<class \'tensorflow.python.ops.variable_scope.VariableScope\'>"
|
D | tensorflow.pbtxt | 288 name: "VariableScope"
|
/external/tensorflow/tensorflow/python/ops/ |
D | variable_scope.py | 1011 class VariableScope(object): class 1330 self.current_scope = VariableScope(False) 1838 if isinstance(self._name_or_scope, VariableScope): 1845 variable_scope_object = VariableScope( 1886 if isinstance(self._name_or_scope, VariableScope): 1904 variable_scope_object = VariableScope( 1938 if isinstance(self._name_or_scope, VariableScope): 2262 (VariableScope,) + six.string_types):
|
/external/tensorflow/tensorflow/contrib/specs/python/ |
D | specs_ops.py | 193 variable_scope.VariableScope):
|
/external/tensorflow/tensorflow/python/layers/ |
D | base.py | 234 if isinstance(name, vs.VariableScope):
|
/external/tensorflow/tensorflow/contrib/framework/python/ops/ |
D | variables.py | 378 if isinstance(scope, variable_scope.VariableScope):
|
/external/tensorflow/tensorflow/contrib/gan/python/ |
D | train_test.py | 427 variable_scope.VariableScope) 428 self.assertTrue(model.generator_scope, variable_scope.VariableScope)
|
/external/tensorflow/tensorflow/contrib/eager/python/ |
D | network.py | 171 if isinstance(name, variable_scope.VariableScope):
|
/external/tensorflow/tensorflow/contrib/cudnn_rnn/python/ops/ |
D | cudnn_rnn_ops.py | 693 scope_name = scope.name if isinstance(scope, vs.VariableScope) else scope
|