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()
DBinding.java21 import android.databinding.tool.processing.Scope;
62 Scope.enter(getTarget()); in getSetterCall()
63 Scope.enter(this); in getSetterCall()
69 Scope.exit(); in getSetterCall()
70 Scope.exit(); in getSetterCall()
DLayoutBinder.java26 import android.databinding.tool.processing.Scope;
169 Scope.enter(this); in LayoutBinder()
188 Scope.enter(targetBundle); in LayoutBinder()
197 Scope.exit(); in LayoutBinder()
203 Scope.exit(); in LayoutBinder()
DBindingTarget.java21 import android.databinding.tool.processing.Scope;
132 Scope.enter(binding); in resolveMultiSetters()
136 Scope.exit(); in resolveMultiSetters()
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/writer/
DComponentWriter.java37 android.databinding.tool.processing.Scope.enter(layoutBinder); in ComponentWriter()
40 android.databinding.tool.processing.Scope.enter(target); in ComponentWriter()
43 android.databinding.tool.processing.Scope.enter(binding); in ComponentWriter()
59 android.databinding.tool.processing.Scope.defer(ex); in ComponentWriter()
61 android.databinding.tool.processing.Scope.exit(); in ComponentWriter()
65 android.databinding.tool.processing.Scope.exit(); in ComponentWriter()
69 android.databinding.tool.processing.Scope.exit(); in ComponentWriter()
/frameworks/compile/slang/
Dslang_rs_object_ref_count.h47 class Scope {
53 explicit Scope(clang::CompoundStmt *CS) : mCS(CS) { in Scope() function
74 std::stack<Scope*> mScopeStack;
82 inline Scope *getCurrentScope() { in getCurrentScope()
Dslang_rs_object_ref_count.cpp1108 void RSObjectRefCount::Scope::ReplaceRSObjectAssignment( in ReplaceRSObjectAssignment()
1133 void RSObjectRefCount::Scope::AppendRSObjectInit( in AppendRSObjectInit()
1235 void RSObjectRefCount::Scope::InsertLocalVarDestructors() { in InsertLocalVarDestructors()
1258 clang::Stmt *RSObjectRefCount::Scope::ClearRSObject( in ClearRSObject()
1478 Scope *S = new Scope(CS); in VisitCompoundStmt()
1545 clang::Stmt *RSClearObjectCall = Scope::ClearRSObject(VD, FD); in CreateStaticGlobalDtor()
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
DResourceBundle.java19 import android.databinding.tool.processing.Scope;
161 Scope.enter(bundle); in validateMultiResLayouts()
164 Scope.enter(target); in validateMultiResLayouts()
204 Scope.defer(ex); in validateMultiResLayouts()
206 Scope.exit(); in validateMultiResLayouts()
210 Scope.exit(); in validateMultiResLayouts()
218 Scope.registerError(String.format( in validateMultiResLayouts()
228 Scope.enter(bundle); in validateMultiResLayouts()
251 Scope.defer(ex); in validateMultiResLayouts()
253 Scope.exit(); in validateMultiResLayouts()
[all …]
DLayoutFileParser.java32 import android.databinding.tool.processing.Scope;
74 Scope.enter(new FileScopeProvider() { in parseXml()
89 Scope.exit(); in parseXml()
96 Scope.enter(new FileScopeProvider() { in parseXml()
128 Scope.exit(); in parseXml()
/frameworks/data-binding/gradlePlugin/src/main/java/android/databinding/tool/
DDataBindingExportInfoTask.java21 import android.databinding.tool.processing.Scope;
39 Scope.assertNoError(); in exportInfo()
DDataBindingProcessLayoutsTask.java18 import android.databinding.tool.processing.Scope;
51 Scope.assertNoError(); in processResources()
DDataBindingExcludeGeneratedTask.java28 import android.databinding.tool.processing.Scope;
96 Scope.assertNoError(); in excludeGenerated()
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
DMethodCallExpr.java19 import android.databinding.tool.processing.Scope;
55 Scope.enter(this); in updateExpr()
59 Scope.exit(); in updateExpr()
DFieldAccessExpr.java19 import android.databinding.tool.processing.Scope;
201 Scope.enter(this); in updateExpr()
205 Scope.exit(); in updateExpr()
DExpr.java22 import android.databinding.tool.processing.Scope;
310 Scope.enter(this); in getResolvedType()
316 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.java44 mScopedErrorReport = Scope.createReport(); in ScopedException()
45 mScopeLog = L.isDebugEnabled() ? Scope.produceScopeLog() : null; in ScopedException()
/frameworks/data-binding/compiler/src/main/java/android/databinding/annotationprocessor/
DProcessDataBinding.java21 import android.databinding.tool.processing.Scope;
72 Scope.assertNoError(); in process()
/frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
DLayoutBinderWriter.kt39 enum class Scope { class
48 val usedFieldNames = hashMapOf<Scope, MutableSet<String>>();
50 Scope.values().forEach { usedFieldNames[it] = hashSetOf<String>() } in <lambda>()
56 val result = getUniqueName(name, Scope.FLAG) in localizeFlag()
61 fun getUniqueName(base : String, scope : Scope) : String { in getUniqueName()
77 fun ExprModel.getUniqueFieldName(base : String) : String = ext.getUniqueName(base, Scope.FIELD) in ExprModel()
78 fun ExprModel.getUniqueMethodName(base : String) : String = ext.getUniqueName(base, Scope.METHOD) in ExprModel()
79 fun ExprModel.getUniqueFlagName(base : String) : String = ext.getUniqueName(base, Scope.FLAG) in ExprModel()
80 fun ExprModel.getConstructorParamName(base : String) : String = ext.getUniqueName(base, Scope.CONST… in ExprModel()
/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/tools/help/
Dlint.jd22 The <em>Specify Inspections Scope</em> dialog appears so you can specify the desired inspection
/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.cpp2902 MDNode *Scope = nullptr, *IA = nullptr; in ParseFunctionBody() local
2903 if (ScopeID) Scope = cast<MDNode>(MDValueList.getValueFwdRef(ScopeID-1)); in ParseFunctionBody()
2905 LastLoc = DebugLoc::get(Line, Col, Scope, IA); in ParseFunctionBody()
/frameworks/base/docs/html/tools/debugging/
Dimproving-w-lint.jd94 choose <strong>Analyze &gt; Inspect Code</strong>. The <em>Specify Inspections Scope</em> dialog
/frameworks/base/docs/html/sdk/installing/
Dcreate-project.jd305 <li>Use the <strong>Scope</strong> drop-down to select how the dependency will be applied.</li>

12