Home
last modified time | relevance | path

Searched refs:LayoutBinder (Results 1 – 8 of 8) sorted by relevance

/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
DDataBinder.java36 List<LayoutBinder> mLayoutBinders = new ArrayList<LayoutBinder>();
49 mLayoutBinders.add(new LayoutBinder(bundle)); in DataBinder()
56 public List<LayoutBinder> getLayoutBinders() { in getLayoutBinders()
61 for (LayoutBinder layoutBinder : mLayoutBinders) { in sealModels()
67 for (LayoutBinder layoutBinder : mLayoutBinders) { in writerBaseClasses()
90 for (LayoutBinder layoutBinder : mLayoutBinders) { in writeBinders()
DLayoutBinder.java45 public class LayoutBinder implements FileScopeProvider { class
168 public LayoutBinder(ResourceBundle.LayoutFileBundle layoutBundle) { in LayoutBinder() method in LayoutBinder
DCompilerChef.java122 for (LayoutBinder layoutBinder : mDataBinder.mLayoutBinders) { in addBRVariables()
/frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
DDataBinderWriter.kt16 import android.databinding.tool.LayoutBinder
19 val layoutBinders : List<LayoutBinder>, val minSdk : kotlin.Int) {
DLayoutBinderWriter.kt18 import android.databinding.tool.LayoutBinder in <lambda>()
209 val LayoutBinder.requiredComponent by lazyProp { layoutBinder: LayoutBinder -> in layoutBinder() constant
266 class LayoutBinderWriter(val layoutBinder : LayoutBinder) {
/frameworks/data-binding/compiler/src/test/java/android/databinding/tool/expr/
DExprTest.java19 import android.databinding.tool.LayoutBinder;
107 LayoutBinder lb = new MockLayoutBinder(); in testBasicInvalidationFlag()
122 LayoutBinder lb = new MockLayoutBinder(); in testCannotBeInvalidated()
DExprModelTest.java21 import android.databinding.tool.LayoutBinder;
976 private <T extends Expr> T parse(LayoutBinder binder, String input, Class<T> klass) { in parse()
/frameworks/data-binding/compiler/src/test/java/android/databinding/tool/
DMockLayoutBinder.java22 public class MockLayoutBinder extends LayoutBinder {