/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/ |
LayoutBinder.java | 23 import android.databinding.tool.processing.Scope; 170 Scope.enter(this); 199 Scope.enter(targetBundle); 212 Scope.exit(); 218 Scope.enter(bindingTarget.mBundle); 223 Scope.enter(bindingBundle.getValueLocation()); 233 Scope.exit(); 242 Scope.exit(); 248 Scope.exit();
|
/build/soong/androidmk/parser/ |
scope.go | 21 type Scope interface { 28 type scope struct { type 31 parent Scope 34 func (s *scope) Get(name string) string { 46 func (s *scope) Set(name, value string) { 50 func (s *scope) Call(name string, args []string) string { 58 func (s *scope) SetFunc(name string, f func([]string) string) { 62 func NewScope(parent Scope) Scope { 63 return &scope{ [all...] |
/external/llvm/include/llvm/IR/ |
DebugInfo.h | 36 /// \brief Find subprogram that is enclosing this scope. 37 DISubprogram *getDISubprogram(const MDNode *Scope); 78 void processScope(DIScope *Scope); 83 bool addScope(DIScope *Scope);
|
/external/v8/src/parsing/ |
parameter-initializer-rewriter.cc | 20 Rewriter(uintptr_t stack_limit, Expression* initializer, Scope* param_scope) 37 Scope* param_scope_; 41 function_literal->scope()->ReplaceOuterScope(param_scope_); 50 // scope on its scope chain. 58 // the class scope on their scope chain. 70 // Ensure that temporaries we find are already in the correct scope. 72 proxy->var()->scope() == param_scope_->GetClosureScope()); 78 if (stmt->scope() != nullptr [all...] |
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/ |
CallbackExprModel.java | 20 import android.databinding.tool.processing.Scope; 107 Scope.enter(added); 114 Scope.exit();
|
/frameworks/support/slices/view/src/main/java/androidx/slice/widget/ |
EventInfo.java | 33 @RestrictTo(RestrictTo.Scope.LIBRARY) 78 @RestrictTo(RestrictTo.Scope.LIBRARY) 113 @RestrictTo(RestrictTo.Scope.LIBRARY)
|
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/ |
DebugInfo.h | 36 /// \brief Find subprogram that is enclosing this scope. 37 DISubprogram *getDISubprogram(const MDNode *Scope); 90 void processScope(DIScope *Scope); 95 bool addScope(DIScope *Scope);
|
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/ |
DebugInfo.h | 36 /// \brief Find subprogram that is enclosing this scope. 37 DISubprogram *getDISubprogram(const MDNode *Scope); 90 void processScope(DIScope *Scope); 95 bool addScope(DIScope *Scope);
|
/external/tensorflow/tensorflow/core/grappler/optimizers/ |
arithmetic_optimizer_test.cc | 66 tensorflow::Scope s = tensorflow::Scope::NewRootScope(); 94 tensorflow::Scope s = tensorflow::Scope::NewRootScope(); 127 tensorflow::Scope s = tensorflow::Scope::NewRootScope(); 164 tensorflow::Scope s = tensorflow::Scope::NewRootScope(); 188 tensorflow::Scope s = tensorflow::Scope::NewRootScope() [all...] |
memory_optimizer_test.cc | 36 tensorflow::Scope s = tensorflow::Scope::NewRootScope(); 74 tensorflow::Scope s = tensorflow::Scope::NewRootScope(); 101 tensorflow::Scope s = tensorflow::Scope::NewRootScope(); 133 tensorflow::Scope s = tensorflow::Scope::NewRootScope(); 222 tensorflow::Scope s = tensorflow::Scope::NewRootScope() [all...] |
/external/pdfium/fxjs/ |
cjs_publicmethods_embeddertest.cpp | 23 v8::Isolate::Scope isolate_scope(isolate()); 25 v8::Context::Scope context_scope(GetV8Context()); 103 v8::Isolate::Scope isolate_scope(isolate()); 105 v8::Context::Scope context_scope(GetV8Context());
|
/external/pdfium/testing/ |
js_embedder_test.cpp | 23 v8::Isolate::Scope isolate_scope(m_pIsolate);
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
DebugLoc.h | 74 /// Create a new DebugLoc at the specified line/col and scope/inline. This 77 /// If \c !Scope, returns a default-constructed \a DebugLoc. 80 static DebugLoc get(unsigned Line, unsigned Col, const MDNode *Scope, 88 /// \brief Get the fully inlined-at scope for a DebugLoc. 90 /// Gets the inlined-at scope for a DebugLoc. 95 /// Walk up the scope chain of given debug loc and find line number info
|
/external/tensorflow/tensorflow/cc/framework/ |
grad_op_registry.h | 22 #include "tensorflow/cc/framework/scope.h" 29 /// 'op' (returned in 'grad_outputs') using 'scope' and 'grad_inputs'. 30 typedef Status (*GradFunc)(const Scope& scope, const Operation& op,
|
/external/tensorflow/tensorflow/core/kernels/fuzzing/ |
string_split_fuzz.cc | 23 void BuildGraph(const Scope& scope) override { 25 tensorflow::ops::Placeholder(scope.WithOpName("input1"), DT_STRING); 27 tensorflow::ops::Placeholder(scope.WithOpName("input2"), DT_STRING); 28 std::ignore = tensorflow::ops::StringSplit(scope.WithOpName("output"),
|
/external/tensorflow/tensorflow/tools/graph_transforms/ |
fake_quantize_training_test.cc | 39 auto root = tensorflow::Scope::DisabledShapeInferenceScope();
|
/external/v8/src/ast/ |
variables.cc | 17 Variable::Variable(Scope* scope, const AstRawString* name, VariableMode mode, 20 : scope_(scope),
|
variables.h | 21 Variable(Scope* scope, const AstRawString* name, VariableMode mode, 26 // in an outer scope about which we don't know anything (it may not 27 // be the script scope). scope() is NULL in that case. Currently the 28 // scope is only used to follow the context chain length. 29 Scope* scope() const { return scope_; } function in class:v8::internal::final 31 // This is for adjusting the scope of temporaries used when desugaring 33 void set_scope(Scope* scope) { scope_ = scope; [all...] |
/frameworks/compile/slang/ |
slang_rs_object_ref_count.h | 48 // out of scope. 51 class Scope { 55 std::list<clang::VarDecl*> mRSO; // Declared RS objects in this scope (but 59 explicit Scope(clang::CompoundStmt *CS) : mCS(CS) { 76 // current scope. At each statement that exits the current scope -- e.g., 77 // a return, break, or continue statement in the current or a nested scope 79 // current scope before that point. 82 // Also note this function is called for every nested scope. As a result, for a 106 std::deque<Scope*> mScopeStack; // A deque used as a stack to store scopes, but als [all...] |
/frameworks/support/browser/src/main/java/androidx/browser/browseractions/ |
BrowserActionsFallbackMenuView.java | 19 import static androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP;
|
/frameworks/support/compat/src/main/java/androidx/core/app/ |
ServiceCompat.java | 19 import static androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP;
|
/frameworks/support/compat/src/main/java/androidx/core/os/ |
LocaleListInterface.java | 19 import static androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP;
|
/frameworks/support/compat/src/main/java/androidx/core/util/ |
DebugUtils.java | 19 import static androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP;
|
LogWriter.java | 19 import static androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP;
|
/frameworks/support/compat/src/main/java/androidx/core/view/ |
DragAndDropPermissionsCompat.java | 19 import static androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP;
|