Searched refs:Scope (Results 1 - 23 of 23) sorted by relevance

/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
H A DDataBinder.java19 import android.databinding.tool.processing.Scope;
51 Scope.defer(ex);
69 Scope.enter(layoutBinder);
82 Scope.defer(ex);
84 Scope.exit();
92 Scope.enter(layoutBinder);
99 Scope.defer(ex);
101 Scope.exit();
H A DLayoutBinder.java23 import android.databinding.tool.processing.Scope;
170 Scope.enter(this);
199 Scope.enter(targetBundle);
212 Scope.exit();
218 Scope.enter(bindingTarget.mBundle);
222 Scope.enter(bindingBundle.getValueLocation());
227 Scope.exit();
234 Scope.exit();
240 Scope.exit();
H A DBinding.java21 import android.databinding.tool.processing.Scope;
76 Scope.enter(getTarget());
77 Scope.enter(this);
83 Scope.exit();
84 Scope.exit();
H A DBindingTarget.java22 import android.databinding.tool.processing.Scope;
63 Scope.enter(expr);
71 Scope.exit();
179 Scope.enter(binding);
183 Scope.exit();
H A DInverseBinding.java23 import android.databinding.tool.processing.Scope;
83 Scope.enter(mTarget);
84 Scope.enter(this);
92 Scope.exit();
93 Scope.exit();
/frameworks/data-binding/extensions/library/
H A Dbuild.gradle19 import com.android.build.api.transform.QualifiedContent.Scope;
130 public Set<Scope> getScopes() {
131 def result = new HashSet<Scope>();
132 result.add(Scope.PROJECT);
136 public Set<Scope> getReferencedScopes() {
/frameworks/compile/slang/
H A Dslang_rs_object_ref_count.h50 class Scope { class in class:slang::RSObjectRefCount
58 explicit Scope(clang::CompoundStmt *CS) : mCS(CS) { function in class:slang::RSObjectRefCount::Scope
105 std::deque<Scope*> mScopeStack; // A deque used as a stack to store scopes, but also
118 inline Scope *getCurrentScope() {
H A Dslang_rs_object_ref_count.cpp1011 void RSObjectRefCount::Scope::InsertStmt(const clang::ASTContext &C,
1023 void RSObjectRefCount::Scope::ReplaceStmt(const clang::ASTContext &C,
1036 void RSObjectRefCount::Scope::ReplaceExpr(const clang::ASTContext& C,
1043 void RSObjectRefCount::Scope::ReplaceRSObjectAssignment(
1068 void RSObjectRefCount::Scope::AppendRSObjectInit(
1170 void RSObjectRefCount::Scope::InsertLocalVarDestructors() {
1235 clang::Stmt *RSObjectRefCount::Scope::ClearRSObject(
1514 Scope *S = new Scope(CS);
1544 for (const Scope*
[all...]
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DMethodCallExpr.java22 import android.databinding.tool.processing.Scope;
55 Scope.enter(this);
59 Scope.exit();
H A DFieldAccessExpr.java23 import android.databinding.tool.processing.Scope;
222 Scope.enter(this);
226 Scope.exit();
233 Scope.enter(this);
237 Scope.exit();
H A DExpr.java22 import android.databinding.tool.processing.Scope;
332 Scope.enter(this);
338 Scope.exit();
/frameworks/data-binding/gradlePlugin/src/main/java/android/databinding/tool/
H A DDataBindingExcludeGeneratedTask.java28 import android.databinding.tool.processing.Scope;
97 Scope.assertNoError();
/frameworks/data-binding/compiler/src/main/java/android/databinding/annotationprocessor/
H A DProcessDataBinding.java21 import android.databinding.tool.processing.Scope;
76 Scope.assertNoError();
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/
H A DDataBindingBuilder.java21 import android.databinding.tool.processing.Scope;
123 Scope.assertNoError();
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/processing/
H A DScope.java34 public class Scope { class
71 Scope.enter(scopeProviders[scopeIndex]);
74 Scope.exit();
H A DScopedException.java49 mScopedErrorReport = Scope.createReport();
50 mScopeLog = L.isDebugEnabled() ? Scope.produceScopeLog() : null;
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
H A DResourceBundle.java17 import android.databinding.tool.processing.Scope;
178 Scope.enter(bundle);
181 Scope.enter(target);
221 Scope.defer(ex);
223 Scope.exit();
227 Scope.exit();
235 Scope.registerError(String.format(
245 Scope.enter(bundle);
268 Scope.defer(ex);
270 Scope
[all...]
H A DLayoutFileParser.java21 import android.databinding.tool.processing.Scope;
78 Scope.enter(new FileScopeProvider() {
88 Scope.exit();
95 Scope.enter(new FileScopeProvider() {
129 Scope.exit();
/frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
H A DLayoutBinderWriter.kt41 enum class Scope {
50 val usedFieldNames = hashMapOf<Scope, MutableSet<String>>();
52 Scope.values().forEach { usedFieldNames[it] = hashSetOf<String>() }
58 val result = getUniqueName(name, Scope.FLAG, false)
63 fun getUniqueName(base : String, scope : Scope, isPublic : kotlin.Boolean) : String {
83 fun ExprModel.getUniqueFieldName(base : String, isPublic : kotlin.Boolean) : String = ext.getUniqueName(base, Scope.FIELD, isPublic)
84 fun ExprModel.getUniqueMethodName(base : String, isPublic : kotlin.Boolean) : String = ext.getUniqueName(base, Scope.METHOD, isPublic)
85 fun ExprModel.getConstructorParamName(base : String) : String = ext.getUniqueName(base, Scope.CONSTRUCTOR_PARAM, false)
170 if(expr.needsLocalField) "${expr.model.ext.getUniqueName(expr.readableName, Scope.EXECUTE_PENDING_METHOD, false)}"
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitcodeReader.cpp2640 MDNode *Scope = nullptr, *IA = nullptr; local
2641 if (ScopeID) Scope = cast<MDNode>(MDValueList.getValueFwdRef(ScopeID-1));
2643 LastLoc = DebugLoc::get(Line, Col, Scope, IA);
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitcodeReader.cpp2901 MDNode *Scope = nullptr, *IA = nullptr; local
2902 if (ScopeID) Scope = cast<MDNode>(MDValueList.getValueFwdRef(ScopeID-1));
2904 LastLoc = DebugLoc::get(Line, Col, Scope, IA);
/frameworks/base/
H A Dcompiled-classes-phone8037 org.json.JSONStringer$Scope
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 262 milliseconds