Home
last modified time | relevance | path

Searched defs:ExprModel (Results 1 – 2 of 2) sorted by relevance

/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
DExprModel.java35 public class ExprModel { class
/frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
DLayoutBinderWriter.kt73 val ExprModel.ext by Delegates.lazy { target : ExprModel -> in target() constant
77 fun ExprModel.getUniqueFieldName(base : String) : String = ext.getUniqueName(base, Scope.FIELD) in ExprModel() method
78 fun ExprModel.getUniqueMethodName(base : String) : String = ext.getUniqueName(base, Scope.METHOD) in ExprModel() method
79 fun ExprModel.getUniqueFlagName(base : String) : String = ext.getUniqueName(base, Scope.FLAG) in ExprModel() method
80 fun ExprModel.getConstructorParamName(base : String) : String = ext.getUniqueName(base, Scope.CONST… in ExprModel() method
82 fun ExprModel.localizeFlag(set : FlagSet, base : String) : FlagSet = ext.localizeFlag(set, base) in ExprModel() method