Searched refs:computeUniqueKey (Results 1 - 18 of 18) sorted by relevance

/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DArgListExpr.java39 protected String computeUniqueKey() { method in class:ArgListExpr
40 return "ArgList[" + mId + "]" + super.computeUniqueKey();
H A DCastExpr.java47 protected String computeUniqueKey() { method in class:CastExpr
48 return join(mType, getCastExpr().computeUniqueKey());
H A DComparisonExpr.java32 protected String computeUniqueKey() { method in class:ComparisonExpr
33 return join(mOp, super.computeUniqueKey());
H A DInstanceOfExpr.java34 protected String computeUniqueKey() { method in class:InstanceOfExpr
35 return join("instanceof", super.computeUniqueKey(), mTypeStr);
H A DBracketExpr.java60 protected String computeUniqueKey() { method in class:BracketExpr
61 return join(getTarget().computeUniqueKey(), "$", getArg().computeUniqueKey(), "$");
H A DIdentifierExpr.java48 protected String computeUniqueKey() { method in class:IdentifierExpr
49 return join(mName, super.computeUniqueKey());
H A DTernaryExpr.java44 protected String computeUniqueKey() { method in class:TernaryExpr
45 return "?:" + super.computeUniqueKey();
H A DBitShiftExpr.java32 protected String computeUniqueKey() { method in class:BitShiftExpr
H A DMathExpr.java32 protected String computeUniqueKey() { method in class:MathExpr
H A DSymbolExpr.java45 protected String computeUniqueKey() { method in class:SymbolExpr
H A DUnaryExpr.java32 protected String computeUniqueKey() { method in class:UnaryExpr
H A DMethodCallExpr.java114 protected String computeUniqueKey() { method in class:MethodCallExpr
115 return join(getTarget().computeUniqueKey(), mName,
116 super.computeUniqueKey());
H A DFieldAccessExpr.java187 protected String computeUniqueKey() { method in class:FieldAccessExpr
189 return join(mName, "..", super.computeUniqueKey());
191 return join(mName, ".", super.computeUniqueKey());
H A DExpr.java367 mUniqueKey = computeUniqueKey();
369 "if there are no children, you must override computeUniqueKey");
371 "if there are no children, you must override computeUniqueKey");
376 protected String computeUniqueKey() { method in class:Expr
H A DResourceExpr.java122 protected String computeUniqueKey() { method in class:ResourceExpr
/frameworks/data-binding/compiler/src/test/java/android/databinding/tool/expr/
H A DExprTest.java53 protected String computeUniqueKey() { method in class:ExprTest.DummyExpr
54 return mKey + super.computeUniqueKey();
H A DExprModelTest.java70 protected String computeUniqueKey() { method in class:ExprModelTest.DummyExpr
71 return mKey + super.computeUniqueKey();
/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 162 milliseconds