Home
last modified time | relevance | path

Searched refs:VariableScope (Results 1 – 14 of 14) sorted by relevance

/external/deqp/framework/randomshaders/
DrsgVariableManager.hpp60 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;
DrsgVariableManager.cpp101 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()
DrsgShader.hpp103 VariableScope& getGlobalScope (void) { return m_globalScope; } in getGlobalScope()
120 VariableScope m_globalScope;
DrsgStatement.hpp106 VariableScope m_scope;
DrsgShaderGenerator.cpp176 VariableScope& globalVariableScope = shader.getGlobalScope(); in generate()
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.-variable-scope.pbtxt1 path: "tensorflow.VariableScope"
3 is_instance: "<class \'tensorflow.python.ops.variable_scope.VariableScope\'>"
Dtensorflow.pbtxt288 name: "VariableScope"
/external/tensorflow/tensorflow/python/ops/
Dvariable_scope.py1011 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/
Dspecs_ops.py193 variable_scope.VariableScope):
/external/tensorflow/tensorflow/python/layers/
Dbase.py234 if isinstance(name, vs.VariableScope):
/external/tensorflow/tensorflow/contrib/framework/python/ops/
Dvariables.py378 if isinstance(scope, variable_scope.VariableScope):
/external/tensorflow/tensorflow/contrib/gan/python/
Dtrain_test.py427 variable_scope.VariableScope)
428 self.assertTrue(model.generator_scope, variable_scope.VariableScope)
/external/tensorflow/tensorflow/contrib/eager/python/
Dnetwork.py171 if isinstance(name, variable_scope.VariableScope):
/external/tensorflow/tensorflow/contrib/cudnn_rnn/python/ops/
Dcudnn_rnn_ops.py693 scope_name = scope.name if isinstance(scope, vs.VariableScope) else scope