Home
last modified time | relevance | path

Searched refs:is_var (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/contrib/framework/python/framework/
Dcheckpoint_utils.py226 is_var = lambda x: isinstance(x, variables.Variable) function
227 if is_var(current_var_or_name) or (
229 and all(is_var(v) for v in current_var_or_name)):
244 if is_var(var):
/external/v8/src/runtime/
Druntime-scopes.cc47 Handle<Object> value, PropertyAttributes attr, bool is_var, in DeclareGlobal() argument
80 if (is_var) return ReadOnlyRoots(isolate).undefined_value(); in DeclareGlobal()
148 bool is_var = initial_value->IsUndefined(isolate); in DeclareGlobals()
150 DCHECK_EQ(1, BoolToInt(is_var) + BoolToInt(is_function)); in DeclareGlobals()
184 is_var, is_function, RedeclarationType::kSyntaxError, feedback_vector, in DeclareGlobals()
223 bool is_var = !is_function; in DeclareEvalHelper() local
224 DCHECK(!is_var || value->IsUndefined(isolate)); in DeclareEvalHelper()
257 value, NONE, is_var, is_function, in DeclareEvalHelper()
263 return DeclareGlobal(isolate, global, name, value, NONE, is_var, in DeclareEvalHelper()
269 return DeclareGlobal(isolate, global, name, value, NONE, is_var, in DeclareEvalHelper()
[all …]