Home
last modified time | relevance | path

Searched refs:Scope (Results 1 – 25 of 28) sorted by relevance

12

/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
DDataBinder.java19 import android.databinding.tool.processing.Scope;
51 Scope.defer(ex); in DataBinder()
69 Scope.enter(layoutBinder); in writerBaseClasses()
82 Scope.defer(ex); in writerBaseClasses()
84 Scope.exit(); in writerBaseClasses()
92 Scope.enter(layoutBinder); in writeBinders()
99 Scope.defer(ex); in writeBinders()
101 Scope.exit(); in writeBinders()
DLayoutBinder.java23 import android.databinding.tool.processing.Scope;
170 Scope.enter(this); in LayoutBinder()
199 Scope.enter(targetBundle); in LayoutBinder()
212 Scope.exit(); in LayoutBinder()
218 Scope.enter(bindingTarget.mBundle); in LayoutBinder()
222 Scope.enter(bindingBundle.getValueLocation()); in LayoutBinder()
227 Scope.exit(); in LayoutBinder()
234 Scope.exit(); in LayoutBinder()
240 Scope.exit(); in LayoutBinder()
DInverseBinding.java23 import android.databinding.tool.processing.Scope;
83 Scope.enter(mTarget); in getGetterCall()
84 Scope.enter(this); in getGetterCall()
92 Scope.exit(); in getGetterCall()
93 Scope.exit(); in getGetterCall()
DBindingTarget.java22 import android.databinding.tool.processing.Scope;
63 Scope.enter(expr); in addBinding()
71 Scope.exit(); in addBinding()
179 Scope.enter(binding); in resolveMultiSetters()
183 Scope.exit(); in resolveMultiSetters()
DBinding.java21 import android.databinding.tool.processing.Scope;
76 Scope.enter(getTarget()); in getSetterCall()
77 Scope.enter(this); in getSetterCall()
83 Scope.exit(); in getSetterCall()
84 Scope.exit(); in getSetterCall()
/frameworks/compile/slang/
Dslang_rs_object_ref_count.h50 class Scope {
58 explicit Scope(clang::CompoundStmt *CS) : mCS(CS) { in Scope() function
105 std::deque<Scope*> mScopeStack; // A deque used as a stack to store scopes, but also
118 inline Scope *getCurrentScope() { in getCurrentScope()
Dslang_rs_object_ref_count.cpp1011 void RSObjectRefCount::Scope::InsertStmt(const clang::ASTContext &C, in InsertStmt()
1023 void RSObjectRefCount::Scope::ReplaceStmt(const clang::ASTContext &C, in ReplaceStmt()
1036 void RSObjectRefCount::Scope::ReplaceExpr(const clang::ASTContext& C, in ReplaceExpr()
1043 void RSObjectRefCount::Scope::ReplaceRSObjectAssignment( in ReplaceRSObjectAssignment()
1068 void RSObjectRefCount::Scope::AppendRSObjectInit( in AppendRSObjectInit()
1170 void RSObjectRefCount::Scope::InsertLocalVarDestructors() { in InsertLocalVarDestructors()
1235 clang::Stmt *RSObjectRefCount::Scope::ClearRSObject( in ClearRSObject()
1514 Scope *S = new Scope(CS); in VisitCompoundStmt()
1544 for (const Scope* S : mScopeStack) { in VisitReturnStmt()
1619 clang::Stmt *RSClearObjectCall = Scope::ClearRSObject(VD, FD); in CreateStaticGlobalDtor()
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
DResourceBundle.java17 import android.databinding.tool.processing.Scope;
178 Scope.enter(bundle); in validateMultiResLayouts()
181 Scope.enter(target); in validateMultiResLayouts()
221 Scope.defer(ex); in validateMultiResLayouts()
223 Scope.exit(); in validateMultiResLayouts()
227 Scope.exit(); in validateMultiResLayouts()
235 Scope.registerError(String.format( in validateMultiResLayouts()
245 Scope.enter(bundle); in validateMultiResLayouts()
268 Scope.defer(ex); in validateMultiResLayouts()
270 Scope.exit(); in validateMultiResLayouts()
[all …]
DLayoutFileParser.java21 import android.databinding.tool.processing.Scope;
78 Scope.enter(new FileScopeProvider() { in parseXml()
88 Scope.exit(); in parseXml()
95 Scope.enter(new FileScopeProvider() { in parseOriginalXml()
129 Scope.exit(); in parseOriginalXml()
/frameworks/data-binding/extensions/library/
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/data-binding/compiler/src/main/java/android/databinding/tool/expr/
DMethodCallExpr.java22 import android.databinding.tool.processing.Scope;
55 Scope.enter(this); in updateExpr()
59 Scope.exit(); in updateExpr()
DFieldAccessExpr.java23 import android.databinding.tool.processing.Scope;
222 Scope.enter(this); in getBrName()
226 Scope.exit(); in getBrName()
233 Scope.enter(this); in updateExpr()
237 Scope.exit(); in updateExpr()
DExpr.java22 import android.databinding.tool.processing.Scope;
332 Scope.enter(this); in getResolvedType()
338 Scope.exit(); in getResolvedType()
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/processing/
DScope.java34 public class Scope { class
71 Scope.enter(scopeProviders[scopeIndex]); in registerErrorInternal()
74 Scope.exit(); in registerErrorInternal()
DScopedException.java49 mScopedErrorReport = Scope.createReport(); in ScopedException()
50 mScopeLog = L.isDebugEnabled() ? Scope.produceScopeLog() : null; in ScopedException()
/frameworks/data-binding/gradlePlugin/src/main/java/android/databinding/tool/
DDataBindingExcludeGeneratedTask.java28 import android.databinding.tool.processing.Scope;
97 Scope.assertNoError(); in excludeGenerated()
/frameworks/data-binding/compiler/src/main/java/android/databinding/annotationprocessor/
DProcessDataBinding.java21 import android.databinding.tool.processing.Scope;
76 Scope.assertNoError(); in process()
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/
DDataBindingBuilder.java21 import android.databinding.tool.processing.Scope;
123 Scope.assertNoError(); in getJarExcludeList()
/frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
DLayoutBinderWriter.kt41 enum class Scope { class
50 val usedFieldNames = hashMapOf<Scope, MutableSet<String>>();
52 Scope.values().forEach { usedFieldNames[it] = hashSetOf<String>() } in <lambda>()
58 val result = getUniqueName(name, Scope.FLAG, false) in localizeFlag()
63 fun getUniqueName(base : String, scope : Scope, isPublic : kotlin.Boolean) : String { in getUniqueName()
83 …base : String, isPublic : kotlin.Boolean) : String = ext.getUniqueName(base, Scope.FIELD, isPublic) in ExprModel()
84 …ase : String, isPublic : kotlin.Boolean) : String = ext.getUniqueName(base, Scope.METHOD, isPublic) in ExprModel()
85 fun ExprModel.getConstructorParamName(base : String) : String = ext.getUniqueName(base, Scope.CONST… in ExprModel()
/frameworks/base/docs/html-intl/intl/zh-cn/training/wearables/apps/
Dcreating-app-china.jd149 com.google.android.gms.common.api.Scope...)"> {@code addApiIfAvailable()}</a> 方法以连接到必需的 API。在触发 <a …
/frameworks/base/docs/html/training/wearables/data-layer/
Daccessing.jd69 …api.Api.ApiOptions.NotRequiredOptions>, com.google.android.gms.common.api.Scope...)">{@code addApi…
/frameworks/base/docs/html/training/wearables/apps/
Dcreating-app-china.jd146 com.google.android.gms.common.api.Scope...)"> {@code addApiIfAvailable()}</a> method of
/frameworks/base/docs/html/training/articles/
Duser-data-ids.jd22 <li><a href="#scope">Scope</a></li>
432 <h3 id="scope">Scope</h3>
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
DBitcodeReader.cpp2640 MDNode *Scope = nullptr, *IA = nullptr; in ParseFunctionBody() local
2641 if (ScopeID) Scope = cast<MDNode>(MDValueList.getValueFwdRef(ScopeID-1)); in ParseFunctionBody()
2643 LastLoc = DebugLoc::get(Line, Col, Scope, IA); in ParseFunctionBody()
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
DBitcodeReader.cpp2901 MDNode *Scope = nullptr, *IA = nullptr; in ParseFunctionBody() local
2902 if (ScopeID) Scope = cast<MDNode>(MDValueList.getValueFwdRef(ScopeID-1)); in ParseFunctionBody()
2904 LastLoc = DebugLoc::get(Line, Col, Scope, IA); in ParseFunctionBody()

12